Only in tla-1.1pre8+gst/src: =build Only in tla-1.1pre8+gst/src/build-tools/config-info: config-info Only in tla-1.1pre8+gst/src/build-tools/config-info: config-info.sh diff -ru tla-1.1pre8/src/build-tools/scripts/configure-top tla-1.1pre8+gst/src/build-tools/scripts/configure-top --- tla-1.1pre8/src/build-tools/scripts/configure-top 2003-10-23 22:43:02.000000000 +0000 +++ tla-1.1pre8+gst/src/build-tools/scripts/configure-top 2003-11-23 22:20:26.000000000 +0000 @@ -844,6 +844,8 @@ # to handle non-standard names for the standard tools known to # make is in the works: # +# See src/tla/libneon/PLUGIN/AUTOCONF for an ugly cross-compiler hack +# cc_setting="`cat \"$optfile\" \"$tmpoptfile\" | grep -E -e '^string cc=' | tail -n 1 | sed -e 's/string cc=//'`" if test -z "$cc_setting" ; then diff -ru tla-1.1pre8/src/tla/libneon/PLUGIN/AUTOCONF tla-1.1pre8+gst/src/tla/libneon/PLUGIN/AUTOCONF --- tla-1.1pre8/src/tla/libneon/PLUGIN/AUTOCONF 2003-10-23 22:44:32.000000000 +0000 +++ tla-1.1pre8+gst/src/tla/libneon/PLUGIN/AUTOCONF 2003-11-23 22:53:42.000000000 +0000 @@ -1,4 +1,13 @@ #!/bin/sh -"$1" --with-expat --with-included-expat --with-included-neon +if [ $CC == "cc" ] +then + "$1" --with-expat --with-included-expat --with-included-neon +else + echo INFO: assumed GNU cross-compiler + TARGET=`echo $CC | sed -e 's/\(.*\)-gcc/\1/'` + unset CC # remove settings from the work in progress + "$1" --with-expat --with-included-expat --with-included-neon --host $TARGET +fi +# end of script Only in tla-1.1pre8+gst/src/tla/libneon: config.log