Here is the output when I run make after running ./configure --prefix=/usr
Code:
Making all in .
make[1]: Entering directory `/src/libtool-1.5.6'
CONFIG_FILES=libtoolize CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating libtoolize
config.status: executing depfiles commands
chmod +x libtoolize
make[1]: Leaving directory `/src/libtool-1.5.6'
Making all in libltdl
make[1]: Entering directory `/src/libtool-1.5.6/libltdl'
make all-am
make[2]: Entering directory `/src/libtool-1.5.6/libltdl'
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -c -o ltdl.lo ltdl.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -c ltdl.c -fPIC -DPIC -o .libs/ltdl.o
In file included from ltdl.c:29:
config.h:163:28: missing terminating " character
In file included from ltdl.c:29:
config.h:164: error: parse error before ':' token
config.h:168: error: syntax error at '#' token
config.h:168:23: missing terminating " character
In file included from ltdl.c:33:
/usr/include/unistd.h:312: error: parse error before "size_t"
/usr/include/unistd.h:318: error: parse error before "size_t"
/usr/include/unistd.h:448: error: parse error before "size_t"
The rest is mostly parse errors. Do we know what's going on here? Somethings is misconfigured with my system.
navyblue77