From: Sam S. <sd...@gn...> - 2007-11-11 01:39:38
|
Hi Michael, alas, I cannot get cvs to work on heron: $ cvs up ? ffcall/build-aux/.new.config.sub cvs [update aborted]: writing ffcall/build-aux/config.sub: No such file or directory so I am afraid we are up to a "debug by proxy" session. :-( > * Michael Abshoff <Zvpunry.Nofubss@sfzngu.zngurzngvx.hav-qbegzhaq.qr> [2007-11-09 22:50:30 +0100]: > > rm -f streq.h > ln -s gllib/streq.h streq.h > rm -f cjk.h > ln -s gllib/uniwidth/cjk.h cjk.h > rm -f uniwidth.h > ln -s gllib/uniwidth.h uniwidth.h > rm -f unitypes.h > ln -s gllib/unitypes.h unitypes.h > rm -f uniname.h > ln -s gllib/uniname.h uniname.h > rm -f uninames.h > ln -s gllib/uniname/uninames.h uninames.h > gcc -g -O2 -W -Wswitch -Wcomment -Wpointer-arith -Wimplicit -Wreturn-type > -Wmissing-declarations -Wno-sign-compare -O2 -fno-schedule-insns -fno-gcse > -DUNIX_BINARY_DISTRIB -DUNICODE -DDYNAMIC_FFI -DNO_GETTEXT -DNO_SIGSEGV > -I. -c charstrg.c > In file included from charstrg.d:8: > lispbibl.d:8967: warning: volatile register variables don't work as you > might wish > lispbibl.d:9100: warning: register used for two global register variables > In file included from charstrg.d:8: > lispbibl.d:11447: warning: register used for two global register variables > lispbibl.d:11466: warning: register used for two global register variables > lispbibl.d:11672: warning: register used for two global register variables > In file included from uniwidth.h:20, > from charstrg.d:378: > unitypes.h:21:20: stdint.h: No such file or directory > make: *** [charstrg.o] Error 1 1. is configure happy with the system-supplied stdint.h? $ grep stdint build/config.cache does it say something like gl_cv_header_working_stdint_h=${gl_cv_header_working_stdint_h=yes} ?? 2. does it create a build/gllib/stdint.h from src/gllib/stdint.in.h? $ ls -l build/gllib/ 3. does the appended patch fix the problem? > Solaris 10 does have a working sdtint.h where? I guess gnulib is not happy with it... -- Sam Steingold (http://sds.podval.org/) on Fedora release 7 (Moonshine) http://pmw.org.il http://jihadwatch.org http://mideasttruth.com http://israelunderattack.slide.com http://camera.org Apathy Club meeting this Friday. If you want to come, you're not invited. Index: makemake.in =================================================================== RCS file: /cvsroot/clisp/clisp/src/makemake.in,v retrieving revision 1.699 diff -u -w -p -u -b -w -i -B -r1.699 makemake.in --- makemake.in 7 Nov 2007 15:20:54 -0000 1.699 +++ makemake.in 11 Nov 2007 01:39:09 -0000 @@ -631,6 +631,8 @@ case $# in ;; esac +CFLAGS=${CFLAGS}' -Igllib' + if [ "${with_gmalloc}" = yes ]; then GMALLOC=gmalloc; else GMALLOC=""; fi if [ $CROSS = true ] ; then @@ -1956,7 +1958,7 @@ echol "X_LIBS = ${X_LIBS}" X_LIBS="\$(X_LIBS)" if [ "${with_dynamic_modules}" != no ]; then echol 'MODULE_CPPFLAGS = $(CPPFLAGS)' - echol 'MODULE_CFLAGS = $(CFLAGS) -Igllib '"${XCC_PICFLAG}" + echol 'MODULE_CFLAGS = $(CFLAGS) '"${XCC_PICFLAG}" echol 'MODULE_CLFLAGS = $(CLFLAGS) '"${XCC_DLOPENABLE_EXE_FLAG}" MODULE_CPPFLAGS_VAR='MODULE_CPPFLAGS' MODULE_CFLAGS_VAR='MODULE_CFLAGS' Diffs between working revision and workfile end here. |