On jeudi, mars 28, 2002, at 05:28 , Gaetano Vitale wrote: > [localhost:~/scratch/dillo-0.6.4] gvitale% /usr/bin/gnumake > /usr/bin/gnumake all-recursive > Making all in doc > gnumake[2]: Nothing to be done for `all'. > Making all in src > Making all in IO > cc -DHAVE_CONFIG_H -I. -I. -I../.. -I/sw/include/gtk-1.2 > -I/sw/include/glib-1.2 -I/sw/lib/glib/include -I/usr/X11R6/include > -g -O2 -D_REENTRANT -Wall -Waggregate-return -c proto.c > proto.c:1317: bad macro argument list > cpp-precomp: warning: errors during smart preprocessing, retrying > in basic mode
This happens because somehow the option -no-cpp-precomp got omitted from the compiler flags list. So your src/IO/Makefile is bad(*), and this indicates that configure did not run correctly. Did you start from scratch, i.e. "fink rebuild dillo", after you removed the bad make? (*) If you run "grep CPPFLAGS src/IO/Makefile", you should see the 2 lines CPPFLAGS = -no-cpp-precomp -I/sw/include COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -- Martin _______________________________________________ Fink-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-users
