Hi! I just tried to compile the libggi2d with the 20000303-snapshot. I get this error: gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -g -O2 -D_REENTRANT -D_THREAD_SAFE -g -Wall -Wp,-MD,.deps/main.pp -c -fPIC -DPIC main.c -o main.lo main.c:38: `GGI2DCONFFILE' undeclared here (not in a function) main.c:39: `GGI2DTAGLEN' undeclared here (not in a function) main.c:39: initializer element is not constant make[2]: *** [main.lo] Error 1 make[2]: Leaving directory `/home/programmer/ggi/20000303/degas/lib/libggi2d/ggi2d' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/programmer/ggi/20000303/degas/lib/libggi2d' make: *** [all-recursive-am] Error 2 I have attached a patch, which fixes that. Anyone here to commit the patch to CVS, please? Christoph Egger E-Mail: [EMAIL PROTECTED]
--- ggi2d/main.c.old Fri Mar 3 16:00:41 2000 +++ ggi2d/main.c Fri Mar 3 15:59:44 2000 @@ -25,6 +25,7 @@ #include <stdarg.h> #include "internal.h" +#include "config.h" /* * Initalize the strutures for the library
