>>>>> "Charles" == Charles E Campbell <[EMAIL PROTECTED]> writes:
Charles> Thus saith Akim Demaille:
>> Thanks, but it is config.log that we need.
Charles> OK, I'll send that uuencoded and gzipped....
Well, according to the logs, something is rotten on your architecture:
you can't include both sys/types.h and inttypes.h. Does it fail to
compile? If not, what is the problem?
configure:6405: cc -c -g -I/usr/local/include conftest.c >&5
cfe: Error: /usr/include/inttypes.h, line 61: redeclaration of 'int8_t'; previou
s declaration at line 211 in file '/usr/include/sys/types.h'
typedef signed char int8_t;
------- ----------- ^
cfe: Error: /usr/include/inttypes.h, line 63: redeclaration of 'int16_t'; previo
us declaration at line 212 in file '/usr/include/sys/types.h'
typedef signed short int16_t;
------- ------------ ^
cfe: Error: /usr/include/inttypes.h, line 65: redeclaration of 'int32_t'; previo
us declaration at line 213 in file '/usr/include/sys/types.h'
typedef signed int int32_t;
------- ---------- ^
configure:6408: $? = 1
configure: failed program was:
#line 6390 "configure"
#include "confdefs.h"
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#if STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
# if HAVE_STDLIB_H
# include <stdlib.h>
# endif
#endif
#if HAVE_STRING_H
# if !STDC_HEADERS && HAVE_MEMORY_H
# include <memory.h>
# endif
# include <string.h>
#else
# if HAVE_STRINGS_H
# include <strings.h>
# endif
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#endif
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
int
main ()
{
if ((mode_t *) 0)
return 0;
if (sizeof (mode_t))
return 0;
;
return 0;
}