--- /dev/null 2002-06-21 03:44:19.000000000 +0200 +++ autogen.sh 2002-08-06 11:41:51.000000000 +0200 @@ -0,0 +1,3 @@ +#!/bin/sh + +aclocal && autoheader && automake --add-missing && autoconf --- configure.in-dist 2002-08-06 11:37:32.000000000 +0200 +++ configure.in 2002-08-06 13:51:15.000000000 +0200 @@ -23,6 +23,7 @@ AC_PROG_MAKE_SET AC_PROG_LN_S +AM_DISABLE_SHARED AM_PROG_LIBTOOL AC_HEADER_STDC @@ -39,8 +40,9 @@ AC_CHECK_SIZEOF(double,4) AC_CHECK_SIZEOF(void*,8) -AC_ARG_ENABLE(justsrc, [ --enable-justsrc only compile library sources ], - ac_arg_justsrc="Y", ac_arg_justsrc="N") +dnl AC_ARG_ENABLE(justsrc, [ --enable-justsrc only compile library sources ], +dnl ac_arg_justsrc="Y", ac_arg_justsrc="N") +ac_arg_justsrc="Y" AC_ARG_ENABLE(gcc-pipe, [ --disable-gcc-pipe disable gcc -pipe option ], ac_arg_gcc_pipe="N", ac_arg_gcc_pipe="Y") @@ -52,7 +54,7 @@ [ --enable-force-broken-float force use of broken float code ], ac_arg_broken_float="Y", ac_arg_broken_float="N") -if test $ac_cv_prog_gcc = yes ; then +if test $ac_cv_prog_gcc = yes -a x"$CFLAGS" = x ; then CFLAGS="$CFLAGS -g -O2 -Wstrict-prototypes" if test "$ac_arg_gcc_opt" = "N" ; then CFLAGS="$CFLAGS -g -O0 -Wstrict-prototypes" @@ -105,12 +107,12 @@ fi case "$target_cpu" in - alpha* | i?86 ) + alpha* | i?86 | ia64 | x86_64) AC_DEFINE(GUESS_LITTLE_ENDIAN,1) AC_DEFINE(GUESS_BIG_ENDIAN,0) ;; - hppa* | m68* | mips* | powerpc* | hppa* | sparc*) + hppa* | m68* | mips* | powerpc* | hppa* | sparc* | s390*) AC_DEFINE(GUESS_LITTLE_ENDIAN,0) AC_DEFINE(GUESS_BIG_ENDIAN,1) ;;