I'm a little surprised that the config.h files generated using different versions of autoconf don't contain the same #defines!
Appended are the differences. Are they important.? Angus Let the config.h generated by autoconf-2.13 be config.h-213 Let the config.h generated by autoconf-2.52 be config.h-252 $ grep "#define" config.h-213 | sort > config.h-213-sort $ grep "#define" config.h-252 | sort > config.h-252-sort $ $ wc -l config.h-213-sort config.h-252-sort 78 config.h-213-sort 76 config.h-252-sort $ diff -u config.h-213-sort config.h-252-sort --- config.h-213-sort Tue Dec 17 14:48:00 2002 +++ config.h-252-sort Tue Dec 17 14:47:13 2002 @@ -1,5 +1,3 @@ - * #define BOOST_NO_LIMITS - * #define BOOST_NO_STRINGSTREAM #define DEVEL_VERSION 1 #define ENABLE_ASSERTIONS 1 #define ENABLE_NLS 1 @@ -27,6 +25,7 @@ #define HAVE_LOCALE_H 1 #define HAVE_MALLOC_H 1 #define HAVE_MEMMOVE 1 +#define HAVE_MEMORY_H 1 #define HAVE_MEMSET 1 #define HAVE_MKFIFO 1 #define HAVE_MKSTEMP 1 @@ -50,12 +49,13 @@ #define HAVE_STRTOUL 1 #define HAVE_SYS_PARAM_H 1 #define HAVE_SYS_SELECT_H 1 +#define HAVE_SYS_SOCKET_H 1 +#define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_TSEARCH 1 #define HAVE_UNISTD_H 1 #define HAVE_X11_FLIMAGE_H 1 -#define HAVE_XOPENIM 1 #define ICONV_CONST #define MODERN_STL_STREAMS 1 #define PACKAGE "lyx-1.3.0cvs" @@ -74,5 +74,3 @@ #define XPM_H_LOCATION <xpm.h> #define _CONFIG_H #define inline __inline -#define memmove(a, b, c) bcopy(b, a, c) -#define strchr(a,b) index(a,b) $