Hello,
The "./configure" script complaint about a compiler something.
So I changed a "cpp" into "cpp0".
Could some tell me and/or the list if it a good modification?
Geert
P.S.
Does this list have a mailarchive?
--
stappers@mir:/usr/src/nilo
$ ./configure
loading cache ./config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking how to run the C preprocessor... (cached) cc -E
checking for stdlib.h... (cached) yes
checking for stdarg.h... (cached) yes
checking for varargs.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for cc... (cached) cc
checking whether the Gcc compiler (cc ) actually works... configure:
error: gcc is a non-working cross compiler
stappers@mir:/usr/src/nilo
$ cat ffff
--- ./configure 2001/11/17 20:48:21 1.1
+++ ./configure 2001/11/17 21:06:50
@@ -1103,7 +1103,7 @@
if test x"${ac_cv_prog_gcc}" = xyes ; then
gccfiles=`echo $libgccpath | sed -e 's:libgcc.a::'`
- if test -f ${gccfiles}/specs -a -f ${gccfiles}/cpp -a -f
${gccfiles}/cc1; then
+ if test -f ${gccfiles}/specs -a -f ${gccfiles}/cpp0 -a -f
${gccfiles}/cc1;then
gccfiles=yes
else
gccfiles=no
stappers@mir:/usr/src/nilo
$ patch < ffff
patching file configure
stappers@mir:/usr/src/nilo
$ ./configure
loading cache ./config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking how to run the C preprocessor... (cached) cc -E
checking for stdlib.h... (cached) yes
checking for stdarg.h... (cached) yes
checking for varargs.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for cc... (cached) cc
checking whether the Gcc compiler (cc ) actually works... yes
checking whether the Gcc compiler (gcc ) is a cross-compiler...
checking a working cross linker... (cached) ld
checking a working cross archiver... (cached) ar
checking a working cross assembler... (cached) gas
-------That's All