StS wrote: > > I keep getting this error when trying the fink selfupdate... [] > checking for ANSI C header files... no > checking for working const... yes > checking for inline... inline > checking for off_t... no > checking for size_t... no > checking for working alloca.h... no > checking for alloca... yes > checking for unistd.h... no > checking for getpagesize... yes > checking for working mmap... no
You are definitely getting too many "no"s here. When I try it, I get "yes"s. In order to find out what's wrong, you should have a close look at the config.log file. It should contain error messages for compiling little programs in each of these cases. The "ANSI C header" test, for example, tries to compile a program that only includes some standard headers: #line 7674 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> #include <string.h> #include <float.h> Your config.log must contain some error message here. Since you also have an error message later on about stdio.h not found, one gets the impression that something with your /usr/include directory is not as it should be, maybe an incomplete installation of the dev tools. But this is hard to guess without further information. -- Martin _______________________________________________________________ Have big pipes? SourceForge.net is looking for download mirrors. We supply the hardware. You get the recognition. Email Us: [EMAIL PROTECTED] _______________________________________________ Fink-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-users
