From: >> G-L. / <st...@wi...> - 2003-08-21 12:22:12
|
What _does_ seem to be broken here is the two calls for AC_EGREP_CPP to detect which gcc version is installed. The defines in the test and everything are okay, yet both tests fail and return no. (Possibly also the reason why STDC_HEADERS isn't defined? It won't compile unless I set that manually in config.h) Then there's a second error while compiling: In file included from sysdeps.h:36, from ../main.cpp:21: /usr/include/sys/types.h:117: syntax error before `;' token Which comes down to this piece of code in types.h: #ifdef __USE_BSD # ifndef __daddr_t_defined typedef __daddr_t daddr_t; typedef __caddr_t caddr_t; // <- 117 # define __daddr_t_defined # endif #endif I don't see anything really wrong in the code unless caddr_t is already defined. I was wondering if this could be another configure problem though, if one of the #ifdef's should actually be failing there? Autoconf 2.57, automake 1.7.5, m4 1.4, glibc 2.3.2, gcc 3.2.3, Gentoo linux 1.4.3.10. Michael Sliczniak wrote: > Hi all, > > Regarding the cvs commit with the following log message: > > Check for readline headers in the headers check section as otherwise, and > I don't exactly know why, AC_HEADER_STDC would fail with newer autoconf > versions. > > In the patch I send for Darwin real mode I moved the check earlier in > the configure.ac file. This corrected the problem. This is a good idea > anyway since other autoconf built-in tests use the results of > AC_HEADER_STDC so it is a good idea to be sure to do that early on > before other things that compile or run the preprocessor as part of > the test. > > mzs > > > > ------------------------------------------------------- > This SF.net email is sponsored by Dice.com. > Did you know that Dice has over 25,000 tech jobs available today? From > careers in IT to Engineering to Tech Sales, Dice has tech jobs from the > best hiring companies. http://www.dice.com/index.epl?rel_code=104 > _______________________________________________ > basilisk-devel mailing list > bas...@li... > https://lists.sourceforge.net/lists/listinfo/basilisk-devel -- > > G-LiTe / <st...@wi...> -- |