I checked out gstalker; the resultant source tree does not include stocks.h
Bere's what happens when I try to build:
[summer@possum gstalker]$ ./configure --silent
creating cache ./config.cache
updating cache ./config.cache
creating libtool
loading cache ./config.cache
updating cache ./config.cache
creating ./config.status
creating Makefile
creating macros/Makefile
creating src/Makefile
creating po/Makefile.in
creating intl/Makefile
creating config.h
[summer@possum gstalker]$ make
cd . \
&& CONFIG_FILES=Makefile CONFIG_HEADERS= /bin/sh ./config.status
creating Makefile
make all-recursive
make[1]: Entering directory `/tmp/gstalker'
Making all in macros
make[2]: Entering directory `/tmp/gstalker/macros'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/tmp/gstalker/macros'
Making all in po
make[2]: Entering directory `/tmp/gstalker/po'
rm -f cat-id-tbl.tmp
sed -f ../intl/po2tbl.sed ./gstalker.pot \
| sed -e "s/@PACKAGE NAME@/gstalker/" > cat-id-tbl.tmp
if cmp -s cat-id-tbl.tmp ./cat-id-tbl.c; then \
rm cat-id-tbl.tmp; \
else \
echo cat-id-tbl.c changed; \
rm -f ./cat-id-tbl.c; \
mv cat-id-tbl.tmp ./cat-id-tbl.c; \
fi
cd . && rm -f stamp-cat-id && echo timestamp > stamp-cat-id
make[2]: Leaving directory `/tmp/gstalker/po'
Making all in intl
make[2]: Entering directory `/tmp/gstalker/intl'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/tmp/gstalker/intl'
Making all in src
make[2]: Entering directory `/tmp/gstalker/src'
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I/usr/local/include -I/usr/include -DNEED_GNOMESUPPORT_H -I/usr/lib/gnome-libs/include -I/usr/lib/glib/include -I/usr/X11R6/include -DG_LOG_DOMAIN=\"gstalker\" -DGNOMELOCALEDIR=\""/usr/local/share/locale"\" -I../intl -I../intl -g -O2 -Wall -Wunused -c main.c
In file included from main.c:22:
gstalker.h:39: stocks.h: No such file or directory
make[2]: *** [main.o] Error 1
make[2]: Leaving directory `/tmp/gstalker/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/gstalker'
make: *** [all-recursive-am] Error 2
[summer@possum gstalker]$
Cheers
summer@os2.ami.com.au
See also bug #116455 It's the same problem, read the README file.
Or put this line in the configure.in file.
AC_CHECK_HEADER(stocks.h,,AC_MSG_ERROR([*** LIBSTOCKS support not installed - please install first ***]))
Have a nice day,
Erik