home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-01-21 | 62.6 KB | 2,235 lines |
- diff -rc --new-file m4-1.4/INSTALL /gnu/src/amiga/m4-1.4/INSTALL
- *** m4-1.4/INSTALL Tue Oct 18 20:30:28 1994
- --- /gnu/src/amiga/m4-1.4/INSTALL Sat Nov 12 14:54:39 1994
- ***************
- *** 76,83 ****
- ==================
-
- By default, `make install' will install the package's files in
- ! `/usr/local/bin', `/usr/local/man', etc. You can specify an
- ! installation prefix other than `/usr/local' by giving `configure' the
- option `--prefix=PATH'.
-
- You can specify separate installation prefixes for
- --- 76,83 ----
- ==================
-
- By default, `make install' will install the package's files in
- ! `/gnu/bin', `/gnu/man', etc. You can specify an
- ! installation prefix other than `/gnu' by giving `configure' the
- option `--prefix=PATH'.
-
- You can specify separate installation prefixes for
- diff -rc --new-file m4-1.4/Product-Info /gnu/src/amiga/m4-1.4/Product-Info
- *** m4-1.4/Product-Info Thu Jan 1 00:00:00 1970
- --- /gnu/src/amiga/m4-1.4/Product-Info Fri Nov 18 12:48:29 1994
- ***************
- *** 0 ****
- --- 1,22 ----
- + .name
- + m4
- + .fullname
- + GNU macro processor
- + .type
- + Programmer Tool
- + .short
- + GNU macro processor
- + .description
- + This is GNU m4, a program which copies its input to the output,
- + expanding macros as it goes. m4 has built-in functions for including
- + named files, running Unix commands, doing integer arithmetic,
- + manipulating text in various ways, recursion, etc... Macros can also
- + be user-defined, and can take any number of arguments.
- + .version
- + 1.4
- + .author
- + Rene' Seindal
- + .distribution
- + GNU Public License
- + .described-by
- + Fred Fish (fnf@amigalib.com)
- diff -rc --new-file m4-1.4/configure /gnu/src/amiga/m4-1.4/configure
- *** m4-1.4/configure Sun Nov 6 03:44:17 1994
- --- /gnu/src/amiga/m4-1.4/configure Sat Nov 12 15:22:03 1994
- ***************
- *** 9,15 ****
-
- # Defaults:
- ac_help=
- ! ac_default_prefix=/usr/local
- # Any additions from configure.in:
- ac_help="$ac_help
- --enable-changeword enable -W and changeword() builtin"
- --- 9,15 ----
-
- # Defaults:
- ac_help=
- ! ac_default_prefix=/gnu
- # Any additions from configure.in:
- ac_help="$ac_help
- --enable-changeword enable -W and changeword() builtin"
- ***************
- *** 54,60 ****
- fi
-
- case "$ac_option" in
- ! -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) ac_optarg= ;;
- esac
-
- --- 54,60 ----
- fi
-
- case "$ac_option" in
- ! -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) ac_optarg= ;;
- esac
-
- ***************
- *** 75,95 ****
- cache_file="$ac_optarg" ;;
-
- -disable-* | --disable-*)
- ! ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
- # Reject names that are not valid shell variable names.
- ! if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
- { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
- fi
- ! ac_feature=`echo $ac_feature| sed 's/-/_/g'`
- eval "enable_${ac_feature}=no" ;;
-
- -enable-* | --enable-*)
- ! ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
- # Reject names that are not valid shell variable names.
- ! if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
- { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
- fi
- ! ac_feature=`echo $ac_feature| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- --- 75,95 ----
- cache_file="$ac_optarg" ;;
-
- -disable-* | --disable-*)
- ! ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
- # Reject names that are not valid shell variable names.
- ! if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
- { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
- fi
- ! ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
- eval "enable_${ac_feature}=no" ;;
-
- -enable-* | --enable-*)
- ! ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
- # Reject names that are not valid shell variable names.
- ! if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
- { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
- fi
- ! ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- ***************
- *** 225,236 ****
- exit 0 ;;
-
- -with-* | --with-*)
- ! ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
- # Reject names that are not valid shell variable names.
- ! if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
- { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
- fi
- ! ac_package=`echo $ac_package| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- --- 225,236 ----
- exit 0 ;;
-
- -with-* | --with-*)
- ! ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
- # Reject names that are not valid shell variable names.
- ! if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
- { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
- fi
- ! ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- ***************
- *** 238,249 ****
- eval "with_${ac_package}='$ac_optarg'" ;;
-
- -without-* | --without-*)
- ! ac_package=`echo $ac_option|sed -e 's/-*without-//'`
- # Reject names that are not valid shell variable names.
- ! if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
- { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
- fi
- ! ac_package=`echo $ac_package| sed 's/-/_/g'`
- eval "with_${ac_package}=no" ;;
-
- --x)
- --- 238,249 ----
- eval "with_${ac_package}='$ac_optarg'" ;;
-
- -without-* | --without-*)
- ! ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
- # Reject names that are not valid shell variable names.
- ! if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
- { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
- fi
- ! ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
- eval "with_${ac_package}=no" ;;
-
- --x)
- ***************
- *** 268,274 ****
- ;;
-
- *)
- ! if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
- echo "configure: warning: $ac_option: invalid host type" 1>&2
- fi
- if test "x$nonopt" != xNONE; then
- --- 268,274 ----
- ;;
-
- *)
- ! if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
- echo "configure: warning: $ac_option: invalid host type" 1>&2
- fi
- if test "x$nonopt" != xNONE; then
- ***************
- *** 281,287 ****
- done
-
- if test -n "$ac_prev"; then
- ! { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
- fi
-
- trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
- --- 281,287 ----
- done
-
- if test -n "$ac_prev"; then
- ! { echo "configure: error: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
- fi
-
- trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
- ***************
- *** 331,337 ****
- # confdefs.h avoids OS command line length limits that DEFS can exceed.
- rm -rf conftest* confdefs.h
- # AIX cpp loses on an empty file, so make sure it contains at least a newline.
- ! echo > confdefs.h
-
- # A filename unique to this package, relative to the directory that
- # configure is in, which we can look for to find out if srcdir is correct.
- --- 331,337 ----
- # confdefs.h avoids OS command line length limits that DEFS can exceed.
- rm -rf conftest* confdefs.h
- # AIX cpp loses on an empty file, so make sure it contains at least a newline.
- ! /bin/echo > confdefs.h
-
- # A filename unique to this package, relative to the directory that
- # configure is in, which we can look for to find out if srcdir is correct.
- ***************
- *** 342,348 ****
- ac_srcdir_defaulted=yes
- # Try the directory containing this script, then its parent.
- ac_prog=$0
- ! ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
- test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
- srcdir=$ac_confdir
- if test ! -r $srcdir/$ac_unique_file; then
- --- 342,348 ----
- ac_srcdir_defaulted=yes
- # Try the directory containing this script, then its parent.
- ac_prog=$0
- ! ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
- test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
- srcdir=$ac_confdir
- if test ! -r $srcdir/$ac_unique_file; then
- ***************
- *** 358,364 ****
- { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
- fi
- fi
- ! srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
-
- # Prefer explicitly selected file to automatically selected ones.
- if test -z "$CONFIG_SITE"; then
- --- 358,364 ----
- { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
- fi
- fi
- ! srcdir=`/bin/echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
-
- # Prefer explicitly selected file to automatically selected ones.
- if test -z "$CONFIG_SITE"; then
- ***************
- *** 408,414 ****
- else
- # Double any \ or $.
- echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
- ! program_transform_name="`echo $program_transform_name|sed -f conftestsed`"
- rm -f conftestsed
- fi
- test "$program_prefix" != NONE &&
- --- 408,414 ----
- else
- # Double any \ or $.
- echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
- ! program_transform_name="`/bin/echo $program_transform_name|sed -f conftestsed`"
- rm -f conftestsed
- fi
- test "$program_prefix" != NONE &&
- ***************
- *** 438,446 ****
- do
- # Extract the first word of "$ac_prog", so it can be a program name with args.
- set dummy $ac_prog; ac_word=$2
- ! echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_AWK'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test -n "$AWK"; then
- ac_cv_prog_AWK="$AWK" # Let the user override the test.
- --- 438,446 ----
- do
- # Extract the first word of "$ac_prog", so it can be a program name with args.
- set dummy $ac_prog; ac_word=$2
- ! /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_AWK'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test -n "$AWK"; then
- ac_cv_prog_AWK="$AWK" # Let the user override the test.
- ***************
- *** 458,466 ****
- fi
- AWK="$ac_cv_prog_AWK"
- if test -n "$AWK"; then
- ! echo "$ac_t""$AWK" 1>&4
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- test -n "$AWK" && break
- --- 458,466 ----
- fi
- AWK="$ac_cv_prog_AWK"
- if test -n "$AWK"; then
- ! /bin/echo "$ac_t""$AWK" 1>&4
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- test -n "$AWK" && break
- ***************
- *** 468,476 ****
-
- # Extract the first word of "gcc", so it can be a program name with args.
- set dummy gcc; ac_word=$2
- ! echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_CC'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test -n "$CC"; then
- ac_cv_prog_CC="$CC" # Let the user override the test.
- --- 468,476 ----
-
- # Extract the first word of "gcc", so it can be a program name with args.
- set dummy gcc; ac_word=$2
- ! /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_CC'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test -n "$CC"; then
- ac_cv_prog_CC="$CC" # Let the user override the test.
- ***************
- *** 489,503 ****
- fi
- CC="$ac_cv_prog_CC"
- if test -n "$CC"; then
- ! echo "$ac_t""$CC" 1>&4
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
-
- ! echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_gcc'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.c <<EOF
- #ifdef __GNUC__
- --- 489,503 ----
- fi
- CC="$ac_cv_prog_CC"
- if test -n "$CC"; then
- ! /bin/echo "$ac_t""$CC" 1>&4
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
-
- ! /bin/echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_gcc'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.c <<EOF
- #ifdef __GNUC__
- ***************
- *** 510,522 ****
- ac_cv_prog_gcc=no
- fi
- fi
- ! echo "$ac_t""$ac_cv_prog_gcc" 1>&4
- if test $ac_cv_prog_gcc = yes; then
- GCC=yes
- if test "${CFLAGS+set}" != set; then
- ! echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_gcc_g'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- echo 'void f(){}' > conftest.c
- if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
- --- 510,522 ----
- ac_cv_prog_gcc=no
- fi
- fi
- ! /bin/echo "$ac_t""$ac_cv_prog_gcc" 1>&4
- if test $ac_cv_prog_gcc = yes; then
- GCC=yes
- if test "${CFLAGS+set}" != set; then
- ! /bin/echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_gcc_g'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- echo 'void f(){}' > conftest.c
- if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
- ***************
- *** 527,537 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_prog_gcc_g" 1>&4
- if test $ac_cv_prog_gcc_g = yes; then
- ! CFLAGS="-g -O"
- else
- ! CFLAGS="-O"
- fi
- fi
- else
- --- 527,539 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_prog_gcc_g" 1>&4
- if test $ac_cv_prog_gcc_g = yes; then
- ! # Amiga hack - suppress automatically using -g for now
- ! # Also default to using -O2
- ! CFLAGS="-O2"
- else
- ! CFLAGS="-O2"
- fi
- fi
- else
- ***************
- *** 568,582 ****
- # AFS /usr/afsws/bin/install, which mishandles nonexistent args
- # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
- # ./install, which can be erroneously created by make from ./install.sh.
- ! echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&4
- if test -z "$INSTALL"; then
- if eval "test \"`echo '${'ac_cv_path_install'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- for ac_dir in $PATH; do
- case "$ac_dir" in
- ! ''|.|/etc|/usr/sbin|/usr/etc|/sbin|/usr/afsws/bin|/usr/ucb) ;;
- *)
- # OSF1 and SCO ODT 3.0 have their own names for install.
- for ac_prog in ginstall installbsd scoinst install; do
- --- 570,584 ----
- # AFS /usr/afsws/bin/install, which mishandles nonexistent args
- # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
- # ./install, which can be erroneously created by make from ./install.sh.
- ! /bin/echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&4
- if test -z "$INSTALL"; then
- if eval "test \"`echo '${'ac_cv_path_install'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- for ac_dir in $PATH; do
- case "$ac_dir" in
- ! ''|.|/gnu/etc) ;;
- *)
- # OSF1 and SCO ODT 3.0 have their own names for install.
- for ac_prog in ginstall installbsd scoinst install; do
- ***************
- *** 601,607 ****
- fi
- INSTALL="$ac_cv_path_install"
- fi
- ! echo "$ac_t""$INSTALL" 1>&4
-
- # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
- # It thinks the first close brace ends the variable substitution.
- --- 603,609 ----
- fi
- INSTALL="$ac_cv_path_install"
- fi
- ! /bin/echo "$ac_t""$INSTALL" 1>&4
-
- # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
- # It thinks the first close brace ends the variable substitution.
- ***************
- *** 609,622 ****
-
- test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
-
- ! echo $ac_n "checking whether ${MAKE-make} sets \$MAKE""... $ac_c" 1>&4
- set dummy ${MAKE-make}; ac_make=$2
- if eval "test \"`echo '${'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftestmake <<\EOF
- all:
- ! @echo 'ac_maketemp="${MAKE}"'
- EOF
- # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
- eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
- --- 611,624 ----
-
- test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
-
- ! /bin/echo $ac_n "checking whether ${MAKE-make} sets \$MAKE""... $ac_c" 1>&4
- set dummy ${MAKE-make}; ac_make=$2
- if eval "test \"`echo '${'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftestmake <<\EOF
- all:
- ! @/bin/echo 'ac_maketemp="${MAKE}"'
- EOF
- # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
- eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
- ***************
- *** 628,645 ****
- rm -f conftestmake
- fi
- if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- SET_MAKE=
- else
- ! echo "$ac_t""no" 1>&4
- SET_MAKE="MAKE=${MAKE-make}"
- fi
-
- # Extract the first word of "ranlib", so it can be a program name with args.
- set dummy ranlib; ac_word=$2
- ! echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_RANLIB'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test -n "$RANLIB"; then
- ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
- --- 630,647 ----
- rm -f conftestmake
- fi
- if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- SET_MAKE=
- else
- ! /bin/echo "$ac_t""no" 1>&4
- SET_MAKE="MAKE=${MAKE-make}"
- fi
-
- # Extract the first word of "ranlib", so it can be a program name with args.
- set dummy ranlib; ac_word=$2
- ! /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_RANLIB'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test -n "$RANLIB"; then
- ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
- ***************
- *** 658,677 ****
- fi
- RANLIB="$ac_cv_prog_RANLIB"
- if test -n "$RANLIB"; then
- ! echo "$ac_t""$RANLIB" 1>&4
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
-
- ! echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&4
- # On Suns, sometimes $CPP names a directory.
- if test -n "$CPP" && test -d "$CPP"; then
- CPP=
- fi
- if test -z "$CPP"; then
- if eval "test \"`echo '${'ac_cv_prog_CPP'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- # This must be in double quotes, not single quotes, because CPP may get
- # substituted into the Makefile and "${CC-cc}" will confuse make.
- --- 660,679 ----
- fi
- RANLIB="$ac_cv_prog_RANLIB"
- if test -n "$RANLIB"; then
- ! /bin/echo "$ac_t""$RANLIB" 1>&4
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
-
- ! /bin/echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&4
- # On Suns, sometimes $CPP names a directory.
- if test -n "$CPP" && test -d "$CPP"; then
- CPP=
- fi
- if test -z "$CPP"; then
- if eval "test \"`echo '${'ac_cv_prog_CPP'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- # This must be in double quotes, not single quotes, because CPP may get
- # substituted into the Makefile and "${CC-cc}" will confuse make.
- ***************
- *** 679,685 ****
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp.
- cat > conftest.$ac_ext <<EOF
- ! #line 683 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- --- 681,687 ----
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp.
- cat > conftest.$ac_ext <<EOF
- ! #line 685 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- ***************
- *** 689,699 ****
- if test -z "$ac_err"; then
- :
- else
- ! echo "$ac_err" >&5
- rm -rf conftest*
- CPP="${CC-cc} -E -traditional-cpp"
- cat > conftest.$ac_ext <<EOF
- ! #line 697 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- --- 691,701 ----
- if test -z "$ac_err"; then
- :
- else
- ! /bin/echo "$ac_err" >&5
- rm -rf conftest*
- CPP="${CC-cc} -E -traditional-cpp"
- cat > conftest.$ac_ext <<EOF
- ! #line 699 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- ***************
- *** 703,709 ****
- if test -z "$ac_err"; then
- :
- else
- ! echo "$ac_err" >&5
- rm -rf conftest*
- CPP=/lib/cpp
- fi
- --- 705,711 ----
- if test -z "$ac_err"; then
- :
- else
- ! /bin/echo "$ac_err" >&5
- rm -rf conftest*
- CPP=/lib/cpp
- fi
- ***************
- *** 714,724 ****
- fi
- fi
- CPP="$ac_cv_prog_CPP"
- ! echo "$ac_t""$CPP" 1>&4
-
- ! echo $ac_n "checking for AIX""... $ac_c" 1>&4
- cat > conftest.$ac_ext <<EOF
- ! #line 722 "configure"
- #include "confdefs.h"
- #ifdef _AIX
- yes
- --- 716,726 ----
- fi
- fi
- CPP="$ac_cv_prog_CPP"
- ! /bin/echo "$ac_t""$CPP" 1>&4
-
- ! /bin/echo $ac_n "checking for AIX""... $ac_c" 1>&4
- cat > conftest.$ac_ext <<EOF
- ! #line 724 "configure"
- #include "confdefs.h"
- #ifdef _AIX
- yes
- ***************
- *** 728,749 ****
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- egrep "yes" >/dev/null 2>&1; then
- rm -rf conftest*
- ! echo "$ac_t""yes" 1>&4; cat >> confdefs.h <<\EOF
- #define _ALL_SOURCE 1
- EOF
-
- else
- rm -rf conftest*
- ! echo "$ac_t""no" 1>&4
- fi
- rm -f conftest*
-
-
- ! echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&4
- ! if test -d /etc/conf/kconfig.d &&
- ! grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
- then
- ! echo "$ac_t""yes" 1>&4
- ISC=yes # If later tests want to check for ISC.
- cat >> confdefs.h <<\EOF
- #define _POSIX_SOURCE 1
- --- 730,751 ----
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- egrep "yes" >/dev/null 2>&1; then
- rm -rf conftest*
- ! /bin/echo "$ac_t""yes" 1>&4; cat >> confdefs.h <<\EOF
- #define _ALL_SOURCE 1
- EOF
-
- else
- rm -rf conftest*
- ! /bin/echo "$ac_t""no" 1>&4
- fi
- rm -f conftest*
-
-
- ! /bin/echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&4
- ! if test -d /gnu/etc/conf/kconfig.d &&
- ! grep _POSIX_VERSION /gnu/include/sys/unistd.h >/dev/null 2>&1
- then
- ! /bin/echo "$ac_t""yes" 1>&4
- ISC=yes # If later tests want to check for ISC.
- cat >> confdefs.h <<\EOF
- #define _POSIX_SOURCE 1
- ***************
- *** 755,771 ****
- CC="$CC -Xp"
- fi
- else
- ! echo "$ac_t""no" 1>&4
- ISC=
- fi
-
- ! ac_safe=`echo "minix/config.h" | tr './\055' '___'`
- ! echo $ac_n "checking for minix/config.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 769 "configure"
- #include "confdefs.h"
- #include <minix/config.h>
- EOF
- --- 757,773 ----
- CC="$CC -Xp"
- fi
- else
- ! /bin/echo "$ac_t""no" 1>&4
- ISC=
- fi
-
- ! ac_safe=`/bin/echo "minix/config.h" | tr './\055' '___'`
- ! /bin/echo $ac_n "checking for minix/config.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 771 "configure"
- #include "confdefs.h"
- #include <minix/config.h>
- EOF
- ***************
- *** 775,791 ****
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=yes"
- else
- ! echo "$ac_err" >&5
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=no"
- fi
- rm -f conftest*
- fi
- if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- MINIX=yes
- else
- ! echo "$ac_t""no" 1>&4
- MINIX=
- fi
-
- --- 777,793 ----
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=yes"
- else
- ! /bin/echo "$ac_err" >&5
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=no"
- fi
- rm -f conftest*
- fi
- if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- MINIX=yes
- else
- ! /bin/echo "$ac_t""no" 1>&4
- MINIX=
- fi
-
- ***************
- *** 804,812 ****
-
- fi
-
- ! echo $ac_n "checking for ${CC-cc} option to accept ANSI C""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_cc_stdc'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_cv_prog_cc_stdc=no
- ac_save_CFLAGS="$CFLAGS"
- --- 806,814 ----
-
- fi
-
- ! /bin/echo $ac_n "checking for ${CC-cc} option to accept ANSI C""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_cc_stdc'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_cv_prog_cc_stdc=no
- ac_save_CFLAGS="$CFLAGS"
- ***************
- *** 820,826 ****
- do
- CFLAGS="$ac_save_CFLAGS $ac_arg"
- cat > conftest.$ac_ext <<EOF
- ! #line 824 "configure"
- #include "confdefs.h"
- #if !defined(__STDC__) || __STDC__ != 1
- choke me
- --- 822,828 ----
- do
- CFLAGS="$ac_save_CFLAGS $ac_arg"
- cat > conftest.$ac_ext <<EOF
- ! #line 826 "configure"
- #include "confdefs.h"
- #if !defined(__STDC__) || __STDC__ != 1
- choke me
- ***************
- *** 844,875 ****
-
- fi
-
- ! echo "$ac_t""$ac_cv_prog_cc_stdc" 1>&4
- case "x$ac_cv_prog_cc_stdc" in
- x|xno) ;;
- *) CC="$CC $ac_cv_prog_cc_stdc" ;;
- esac
-
-
- ! echo $ac_n "checking for function prototypes""... $ac_c" 1>&4
- if test "$ac_cv_prog_cc_stdc" != no; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define PROTOTYPES 1
- EOF
-
- U= ANSI2KNR=
- else
- ! echo "$ac_t""no" 1>&4
- U=_ ANSI2KNR=ansi2knr
- fi
-
- ! echo $ac_n "checking for working const""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_const'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 873 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 846,877 ----
-
- fi
-
- ! /bin/echo "$ac_t""$ac_cv_prog_cc_stdc" 1>&4
- case "x$ac_cv_prog_cc_stdc" in
- x|xno) ;;
- *) CC="$CC $ac_cv_prog_cc_stdc" ;;
- esac
-
-
- ! /bin/echo $ac_n "checking for function prototypes""... $ac_c" 1>&4
- if test "$ac_cv_prog_cc_stdc" != no; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define PROTOTYPES 1
- EOF
-
- U= ANSI2KNR=
- else
- ! /bin/echo "$ac_t""no" 1>&4
- U=_ ANSI2KNR=ansi2knr
- fi
-
- ! /bin/echo $ac_n "checking for working const""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_const'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 875 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 929,935 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_c_const" 1>&4
- if test $ac_cv_c_const = no; then
- cat >> confdefs.h <<\EOF
- #define const
- --- 931,937 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_c_const" 1>&4
- if test $ac_cv_c_const = no; then
- cat >> confdefs.h <<\EOF
- #define const
- ***************
- *** 940,952 ****
-
- for ac_hdr in limits.h memory.h siginfo.h string.h unistd.h
- do
- ! ac_safe=`echo "$ac_hdr" | tr './\055' '___'`
- ! echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 950 "configure"
- #include "confdefs.h"
- #include <$ac_hdr>
- EOF
- --- 942,954 ----
-
- for ac_hdr in limits.h memory.h siginfo.h string.h unistd.h
- do
- ! ac_safe=`/bin/echo "$ac_hdr" | tr './\055' '___'`
- ! /bin/echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 952 "configure"
- #include "confdefs.h"
- #include <$ac_hdr>
- EOF
- ***************
- *** 956,989 ****
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=yes"
- else
- ! echo "$ac_err" >&5
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=no"
- fi
- rm -f conftest*
- fi
- if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- ! ac_tr_hdr=HAVE_`echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_hdr 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
- done
-
- # If we cannot run a trivial program, we must be cross compiling.
- ! echo $ac_n "checking whether cross-compiling""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_cross'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- ac_cv_cross=yes
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 987 "configure"
- #include "confdefs.h"
- main(){return(0);}
- EOF
- --- 958,991 ----
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=yes"
- else
- ! /bin/echo "$ac_err" >&5
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=no"
- fi
- rm -f conftest*
- fi
- if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- ! ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_hdr 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
- done
-
- # If we cannot run a trivial program, we must be cross compiling.
- ! /bin/echo $ac_n "checking whether cross-compiling""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_cross'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- ac_cv_cross=yes
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 989 "configure"
- #include "confdefs.h"
- main(){return(0);}
- EOF
- ***************
- *** 997,1010 ****
- rm -fr conftest*
- fi
- cross_compiling=$ac_cv_c_cross
- ! echo "$ac_t""$ac_cv_c_cross" 1>&4
-
- ! echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_stdc'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1008 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- #include <stdarg.h>
- --- 999,1012 ----
- rm -fr conftest*
- fi
- cross_compiling=$ac_cv_c_cross
- ! /bin/echo "$ac_t""$ac_cv_c_cross" 1>&4
-
- ! /bin/echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_stdc'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1010 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- #include <stdarg.h>
- ***************
- *** 1017,1023 ****
- rm -rf conftest*
- ac_cv_header_stdc=yes
- else
- ! echo "$ac_err" >&5
- rm -rf conftest*
- ac_cv_header_stdc=no
- fi
- --- 1019,1025 ----
- rm -rf conftest*
- ac_cv_header_stdc=yes
- else
- ! /bin/echo "$ac_err" >&5
- rm -rf conftest*
- ac_cv_header_stdc=no
- fi
- ***************
- *** 1026,1032 ****
- if test $ac_cv_header_stdc = yes; then
- # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
- ! #line 1030 "configure"
- #include "confdefs.h"
- #include <string.h>
- EOF
- --- 1028,1034 ----
- if test $ac_cv_header_stdc = yes; then
- # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
- ! #line 1032 "configure"
- #include "confdefs.h"
- #include <string.h>
- EOF
- ***************
- *** 1044,1050 ****
- if test $ac_cv_header_stdc = yes; then
- # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
- ! #line 1048 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- EOF
- --- 1046,1052 ----
- if test $ac_cv_header_stdc = yes; then
- # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
- ! #line 1050 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- EOF
- ***************
- *** 1065,1071 ****
- ac_cv_header_stdc=no
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1069 "configure"
- #include "confdefs.h"
- #include <ctype.h>
- #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
- --- 1067,1073 ----
- ac_cv_header_stdc=no
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1071 "configure"
- #include "confdefs.h"
- #include <ctype.h>
- #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
- ***************
- *** 1086,1092 ****
- rm -fr conftest*
- fi
- fi
- ! echo "$ac_t""$ac_cv_header_stdc" 1>&4
- if test $ac_cv_header_stdc = yes; then
- cat >> confdefs.h <<\EOF
- #define STDC_HEADERS 1
- --- 1088,1094 ----
- rm -fr conftest*
- fi
- fi
- ! /bin/echo "$ac_t""$ac_cv_header_stdc" 1>&4
- if test $ac_cv_header_stdc = yes; then
- cat >> confdefs.h <<\EOF
- #define STDC_HEADERS 1
- ***************
- *** 1094,1105 ****
-
- fi
-
- ! echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_signal'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1103 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <signal.h>
- --- 1096,1107 ----
-
- fi
-
- ! /bin/echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_signal'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1105 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <signal.h>
- ***************
- *** 1122,1139 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_type_signal" 1>&4
- cat >> confdefs.h <<EOF
- #define RETSIGTYPE $ac_cv_type_signal
- EOF
-
-
- ! echo $ac_n "checking for size_t""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_size_t'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1137 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- --- 1124,1141 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_type_signal" 1>&4
- cat >> confdefs.h <<EOF
- #define RETSIGTYPE $ac_cv_type_signal
- EOF
-
-
- ! /bin/echo $ac_n "checking for size_t""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_size_t'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1139 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- ***************
- *** 1151,1157 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_type_size_t" 1>&4
- if test $ac_cv_type_size_t = no; then
- cat >> confdefs.h <<\EOF
- #define size_t unsigned
- --- 1153,1159 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_type_size_t" 1>&4
- if test $ac_cv_type_size_t = no; then
- cat >> confdefs.h <<\EOF
- #define size_t unsigned
- ***************
- *** 1162,1173 ****
-
- for ac_func in mkstemp sigaction sigaltstack sigstack sigvec strerror tmpfile
- do
- ! echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1171 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1164,1175 ----
-
- for ac_func in mkstemp sigaction sigaltstack sigstack sigvec strerror tmpfile
- do
- ! /bin/echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1173 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1198,1222 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- ! ac_tr_func=HAVE_`echo $ac_func | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_func 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
- done
-
- # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
- # for constant arguments. Useless!
- ! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_alloca_h'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1220 "configure"
- #include "confdefs.h"
- #include <alloca.h>
- int main() { return 0; }
- --- 1200,1224 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- ! ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_func 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
- done
-
- # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
- # for constant arguments. Useless!
- ! /bin/echo $ac_n "checking for working alloca.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_alloca_h'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1222 "configure"
- #include "confdefs.h"
- #include <alloca.h>
- int main() { return 0; }
- ***************
- *** 1234,1240 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_header_alloca_h" 1>&4
- if test $ac_cv_header_alloca_h = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_ALLOCA_H 1
- --- 1236,1242 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_header_alloca_h" 1>&4
- if test $ac_cv_header_alloca_h = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_ALLOCA_H 1
- ***************
- *** 1242,1253 ****
-
- fi
-
- ! echo $ac_n "checking for alloca""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_alloca'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1251 "configure"
- #include "confdefs.h"
-
- #ifdef __GNUC__
- --- 1244,1255 ----
-
- fi
-
- ! /bin/echo $ac_n "checking for alloca""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_alloca'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1253 "configure"
- #include "confdefs.h"
-
- #ifdef __GNUC__
- ***************
- *** 1281,1287 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_func_alloca" 1>&4
- if test $ac_cv_func_alloca = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_ALLOCA 1
- --- 1283,1289 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_func_alloca" 1>&4
- if test $ac_cv_func_alloca = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_ALLOCA 1
- ***************
- *** 1300,1311 ****
- EOF
-
-
- ! echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_os_cray'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1309 "configure"
- #include "confdefs.h"
- #if defined(CRAY) && ! defined(CRAY2)
- webecray
- --- 1302,1313 ----
- EOF
-
-
- ! /bin/echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_os_cray'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1311 "configure"
- #include "confdefs.h"
- #if defined(CRAY) && ! defined(CRAY2)
- webecray
- ***************
- *** 1325,1338 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_os_cray" 1>&4
- if test $ac_cv_os_cray = yes; then
- ! echo $ac_n "checking for _getb67""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func__getb67'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1336 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1327,1340 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_os_cray" 1>&4
- if test $ac_cv_os_cray = yes; then
- ! /bin/echo $ac_n "checking for _getb67""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func__getb67'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1338 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1363,1381 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'_getb67`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define CRAY_STACKSEG_END _getb67
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- ! echo $ac_n "checking for GETB67""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_GETB67'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1379 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1365,1383 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'_getb67`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define CRAY_STACKSEG_END _getb67
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- ! /bin/echo $ac_n "checking for GETB67""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_GETB67'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1381 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1406,1424 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'GETB67`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define CRAY_STACKSEG_END GETB67
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- ! echo $ac_n "checking for getb67""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_getb67'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1422 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1408,1426 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'GETB67`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define CRAY_STACKSEG_END GETB67
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- ! /bin/echo $ac_n "checking for getb67""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_getb67'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1424 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1449,1461 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'getb67`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define CRAY_STACKSEG_END getb67
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- fi
- --- 1451,1463 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'getb67`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define CRAY_STACKSEG_END getb67
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- fi
- ***************
- *** 1464,1478 ****
-
- fi
-
- ! echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_stack_direction'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- ac_cv_c_stack_direction=0
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1476 "configure"
- #include "confdefs.h"
- find_stack_direction ()
- {
- --- 1466,1480 ----
-
- fi
-
- ! /bin/echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_stack_direction'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- ac_cv_c_stack_direction=0
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1478 "configure"
- #include "confdefs.h"
- find_stack_direction ()
- {
- ***************
- *** 1500,1518 ****
- fi
- rm -fr conftest*
- fi
- ! echo "$ac_t""$ac_cv_c_stack_direction" 1>&4
- cat >> confdefs.h <<EOF
- #define STACK_DIRECTION $ac_cv_c_stack_direction
- EOF
-
- fi
-
- ! echo $ac_n "checking for vprintf""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_vprintf'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1516 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1502,1520 ----
- fi
- rm -fr conftest*
- fi
- ! /bin/echo "$ac_t""$ac_cv_c_stack_direction" 1>&4
- cat >> confdefs.h <<EOF
- #define STACK_DIRECTION $ac_cv_c_stack_direction
- EOF
-
- fi
-
- ! /bin/echo $ac_n "checking for vprintf""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_vprintf'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1518 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1543,1564 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'vprintf`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_VPRINTF 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- if test "$ac_cv_func_vprintf" != yes; then
- ! echo $ac_n "checking for _doprnt""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func__doprnt'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1562 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1545,1566 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'vprintf`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_VPRINTF 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- if test "$ac_cv_func_vprintf" != yes; then
- ! /bin/echo $ac_n "checking for _doprnt""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func__doprnt'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1564 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1589,1613 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'_doprnt`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_DOPRNT 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- fi
-
- for ac_func in strtol
- do
- ! echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1611 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1591,1615 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'_doprnt`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_DOPRNT 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- fi
-
- for ac_func in strtol
- do
- ! /bin/echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1613 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1638,1675 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- :
- else
- ! echo "$ac_t""no" 1>&4
- LIBOBJS="$LIBOBJS ${ac_func}.o"
- fi
-
- done
-
- ! echo $ac_n "checking ecvt declaration""... $ac_c" 1>&4
- cat > conftest.$ac_ext <<EOF
- ! #line 1653 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- EOF
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- egrep "ecvt" >/dev/null 2>&1; then
- rm -rf conftest*
- ! echo "$ac_t""yes" 1>&4; cat >> confdefs.h <<\EOF
- #define HAVE_EFGCVT 2
- EOF
-
- else
- rm -rf conftest*
- ! echo "$ac_t""no" 1>&4; for ac_func in ecvt
- do
- ! echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1673 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1640,1677 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- :
- else
- ! /bin/echo "$ac_t""no" 1>&4
- LIBOBJS="$LIBOBJS ${ac_func}.o"
- fi
-
- done
-
- ! /bin/echo $ac_n "checking ecvt declaration""... $ac_c" 1>&4
- cat > conftest.$ac_ext <<EOF
- ! #line 1655 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- EOF
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- egrep "ecvt" >/dev/null 2>&1; then
- rm -rf conftest*
- ! /bin/echo "$ac_t""yes" 1>&4; cat >> confdefs.h <<\EOF
- #define HAVE_EFGCVT 2
- EOF
-
- else
- rm -rf conftest*
- ! /bin/echo "$ac_t""no" 1>&4; for ac_func in ecvt
- do
- ! /bin/echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1675 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1700,1713 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- ! ac_tr_func=HAVE_`echo $ac_func | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_func 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
- done
-
- --- 1702,1715 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- ! ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_func 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
- done
-
- ***************
- *** 1715,1721 ****
- rm -f conftest*
-
-
- ! echo $ac_n "checking if stack overflow is detectable""... $ac_c" 1>&4
- # Code from Jim Avera <jima@netcom.com>.
- # stackovf.c requires:
- # 1. Either sigaction with SA_ONSTACK, or sigvec with SV_ONSTACK
- --- 1717,1723 ----
- rm -f conftest*
-
-
- ! /bin/echo $ac_n "checking if stack overflow is detectable""... $ac_c" 1>&4
- # Code from Jim Avera <jima@netcom.com>.
- # stackovf.c requires:
- # 1. Either sigaction with SA_ONSTACK, or sigvec with SV_ONSTACK
- ***************
- *** 1725,1731 ****
- if test "$ac_cv_func_sigaction" = yes || test "$ac_cv_func_sigvec" = yes; then
- if test "$ac_cv_func_sigaltstack" = yes || test "$ac_cv_func_sigstack" = yes; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1729 "configure"
- #include "confdefs.h"
- #include <sys/time.h>
- #include <sys/resource.h>
- --- 1727,1733 ----
- if test "$ac_cv_func_sigaction" = yes || test "$ac_cv_func_sigvec" = yes; then
- if test "$ac_cv_func_sigaltstack" = yes || test "$ac_cv_func_sigstack" = yes; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1731 "configure"
- #include "confdefs.h"
- #include <sys/time.h>
- #include <sys/resource.h>
- ***************
- *** 1747,1753 ****
-
- fi
- fi
- ! echo "$ac_t""$use_stackovf" 1>&4
- if test "$use_stackovf" = yes; then
- cat >> confdefs.h <<\EOF
- #define USE_STACKOVF 1
- --- 1749,1756 ----
-
- fi
- fi
- ! /bin/echo "$ac_t""$use_stackovf" 1>&4
- ! use_stackovf=no # Amiga hack - suppress use; we can't do it right yet.
- if test "$use_stackovf" = yes; then
- cat >> confdefs.h <<\EOF
- #define USE_STACKOVF 1
- ***************
- *** 1756,1762 ****
- STACKOVF=stackovf.${U}o
-
- cat > conftest.$ac_ext <<EOF
- ! #line 1760 "configure"
- #include "confdefs.h"
- #include <sys/resource.h>
- EOF
- --- 1759,1765 ----
- STACKOVF=stackovf.${U}o
-
- cat > conftest.$ac_ext <<EOF
- ! #line 1763 "configure"
- #include "confdefs.h"
- #include <sys/resource.h>
- EOF
- ***************
- *** 1773,1779 ****
- rm -f conftest*
-
- cat > conftest.$ac_ext <<EOF
- ! #line 1777 "configure"
- #include "confdefs.h"
- #include <signal.h>
- EOF
- --- 1776,1782 ----
- rm -f conftest*
-
- cat > conftest.$ac_ext <<EOF
- ! #line 1780 "configure"
- #include "confdefs.h"
- #include <signal.h>
- EOF
- ***************
- *** 1790,1796 ****
- rm -f conftest*
-
- cat > conftest.$ac_ext <<EOF
- ! #line 1794 "configure"
- #include "confdefs.h"
- #include <signal.h>
- EOF
- --- 1793,1799 ----
- rm -f conftest*
-
- cat > conftest.$ac_ext <<EOF
- ! #line 1797 "configure"
- #include "confdefs.h"
- #include <signal.h>
- EOF
- ***************
- *** 1806,1835 ****
-
- fi
-
- ! echo $ac_n "checking if changeword is wanted""... $ac_c" 1>&4
- # Check whether --enable-changeword or --disable-changeword was given.
- enableval="$enable_changeword"
- if test -n "$enableval"; then
- if test "$enableval" = yes; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define ENABLE_CHANGEWORD 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
-
- ! echo $ac_n "checking if malloc debugging is wanted""... $ac_c" 1>&4
- # Check whether --with-dmalloc or --without-dmalloc was given.
- withval="$with_dmalloc"
- if test -n "$withval"; then
- if test "$withval" = yes; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define WITH_DMALLOC 1
- EOF
- --- 1809,1838 ----
-
- fi
-
- ! /bin/echo $ac_n "checking if changeword is wanted""... $ac_c" 1>&4
- # Check whether --enable-changeword or --disable-changeword was given.
- enableval="$enable_changeword"
- if test -n "$enableval"; then
- if test "$enableval" = yes; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define ENABLE_CHANGEWORD 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
-
- ! /bin/echo $ac_n "checking if malloc debugging is wanted""... $ac_c" 1>&4
- # Check whether --with-dmalloc or --without-dmalloc was given.
- withval="$with_dmalloc"
- if test -n "$withval"; then
- if test "$withval" = yes; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define WITH_DMALLOC 1
- EOF
- ***************
- *** 1837,1846 ****
- LIBS="$LIBS -ldmalloc"
- LDFLAGS="$LDFLAGS -g"
- else
- ! echo "$ac_t""no" 1>&4
- fi
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
-
- --- 1840,1849 ----
- LIBS="$LIBS -ldmalloc"
- LDFLAGS="$LDFLAGS -g"
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
-
- ***************
- *** 1892,1898 ****
- : ${CONFIG_STATUS=./config.status}
-
- echo creating $CONFIG_STATUS
- ! rm -f $CONFIG_STATUS
- cat > $CONFIG_STATUS <<EOF
- #!/bin/sh
- # Generated automatically by configure.
- --- 1895,1903 ----
- : ${CONFIG_STATUS=./config.status}
-
- echo creating $CONFIG_STATUS
- ! # Some systems, like AmigaDOS, won't allow you to remove a script that is
- ! # being executed, so just move it out of the way instead.
- ! if test -f $CONFIG_STATUS; then mv $CONFIG_STATUS $CONFIG_STATUS.old; else true; fi
- cat > $CONFIG_STATUS <<EOF
- #!/bin/sh
- # Generated automatically by configure.
- ***************
- *** 1913,1919 ****
- echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
- exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
- -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
- ! echo "$CONFIG_STATUS generated by autoconf version 2.1"
- exit 0 ;;
- -help | --help | --hel | --he | --h)
- echo "\$ac_cs_usage"; exit 0 ;;
- --- 1918,1924 ----
- echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
- exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
- -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
- ! /bin/echo "$CONFIG_STATUS generated by autoconf version 2.1"
- exit 0 ;;
- -help | --help | --hel | --he | --h)
- echo "\$ac_cs_usage"; exit 0 ;;
- ***************
- *** 1967,1987 ****
- for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
- # Support "outfile[:infile]", defaulting infile="outfile.in".
- case "$ac_file" in
- ! *:*) ac_file_in=`echo "$ac_file"|sed 's%.*:%%'`
- ! ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
- *) ac_file_in="${ac_file}.in" ;;
- esac
-
- # Adjust relative srcdir, etc. for subdirectories.
-
- # Remove last slash and all that follows it. Not all systems have dirname.
- ! ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
- if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
- # The file is in a subdirectory.
- test ! -d "$ac_dir" && mkdir "$ac_dir"
- ac_dir_suffix="/$ac_dir"
- # A "../" for each directory in $ac_dir_suffix.
- ! ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
- else
- ac_dir_suffix= ac_dots=
- fi
- --- 1972,1992 ----
- for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
- # Support "outfile[:infile]", defaulting infile="outfile.in".
- case "$ac_file" in
- ! *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
- ! ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
- *) ac_file_in="${ac_file}.in" ;;
- esac
-
- # Adjust relative srcdir, etc. for subdirectories.
-
- # Remove last slash and all that follows it. Not all systems have dirname.
- ! ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
- if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
- # The file is in a subdirectory.
- test ! -d "$ac_dir" && mkdir "$ac_dir"
- ac_dir_suffix="/$ac_dir"
- # A "../" for each directory in $ac_dir_suffix.
- ! ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
- else
- ac_dir_suffix= ac_dots=
- fi
- ***************
- *** 1989,1995 ****
- case "$ac_given_srcdir" in
- .) srcdir=.
- if test -z "$ac_dots"; then top_srcdir=.
- ! else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
- /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
- *) # Relative path.
- srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
- --- 1994,2000 ----
- case "$ac_given_srcdir" in
- .) srcdir=.
- if test -z "$ac_dots"; then top_srcdir=.
- ! else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
- /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
- *) # Relative path.
- srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
- ***************
- *** 2002,2008 ****
- esac
- echo creating "$ac_file"
- rm -f "$ac_file"
- ! configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
- case "$ac_file" in
- *Makefile*) ac_comsub="1i\\
- # $configure_input" ;;
- --- 2007,2013 ----
- esac
- echo creating "$ac_file"
- rm -f "$ac_file"
- ! configure_input="Generated automatically from `/bin/echo $ac_file_in|sed 's%.*/%%'` by configure."
- case "$ac_file" in
- *Makefile*) ac_comsub="1i\\
- # $configure_input" ;;
- ***************
- *** 2040,2047 ****
- for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then
- # Support "outfile[:infile]", defaulting infile="outfile.in".
- case "$ac_file" in
- ! *:*) ac_file_in=`echo "$ac_file"|sed 's%.*:%%'`
- ! ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
- *) ac_file_in="${ac_file}.in" ;;
- esac
-
- --- 2045,2052 ----
- for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then
- # Support "outfile[:infile]", defaulting infile="outfile.in".
- case "$ac_file" in
- ! *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
- ! ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
- *) ac_file_in="${ac_file}.in" ;;
- esac
-
- ***************
- *** 2105,2111 ****
- cat conftest.in >> conftest.h
- rm -f conftest.in
- if cmp -s $ac_file conftest.h 2>/dev/null; then
- ! echo "$ac_file is unchanged"
- rm -f conftest.h
- else
- rm -f $ac_file
- --- 2110,2116 ----
- cat conftest.in >> conftest.h
- rm -f conftest.in
- if cmp -s $ac_file conftest.h 2>/dev/null; then
- ! /bin/echo "$ac_file is unchanged"
- rm -f conftest.h
- else
- rm -f $ac_file
- diff -rc --new-file m4-1.4/configure.in /gnu/src/amiga/m4-1.4/configure.in
- *** m4-1.4/configure.in Sun Nov 6 03:40:38 1994
- --- /gnu/src/amiga/m4-1.4/configure.in Sat Nov 12 15:15:22 1994
- ***************
- *** 62,67 ****
- --- 62,68 ----
- fi
- fi
- AC_MSG_RESULT($use_stackovf)
- + use_stackovf=no # Amiga hack - suppress use; we can't do it right yet.
- if test "$use_stackovf" = yes; then
- AC_DEFINE(USE_STACKOVF)
- STACKOVF=stackovf.${U}o
- diff -rc --new-file m4-1.4/doc/m4.info-3 /gnu/src/amiga/m4-1.4/doc/m4.info-3
- *** m4-1.4/doc/m4.info-3 Sun Nov 6 04:13:42 1994
- --- /gnu/src/amiga/m4-1.4/doc/m4.info-3 Sat Nov 12 15:26:43 1994
- ***************
- *** 87,108 ****
- * forloops: Loops.
- * formatted output: Format.
- * frozen files for fast loading: Frozen files.
- * GNU extensions: Extensions.
- * GNU extensions: Frozen files.
- - * GNU extensions: Esyscmd.
- * GNU extensions: Format.
- - * GNU extensions: Patsubst.
- - * GNU extensions: Regexp.
- - * GNU extensions: Undivert.
- - * GNU extensions: Search Path.
- * GNU extensions: Debug Output.
- * GNU extensions: Debug Levels.
- - * GNU extensions: Builtin.
- - * GNU extensions: Indir.
- - * GNU extensions: Arguments.
- * included files, search path for: Search Path.
- - * inclusion, of files: Undivert.
- * inclusion, of files: File Inclusion.
- * increment operator: Incr.
- * indirect call of builtins: Builtin.
- * indirect call of macros: Indir.
- --- 87,108 ----
- * forloops: Loops.
- * formatted output: Format.
- * frozen files for fast loading: Frozen files.
- + * GNU extensions: Indir.
- + * GNU extensions: Search Path.
- + * GNU extensions: Undivert.
- + * GNU extensions: Esyscmd.
- + * GNU extensions: Regexp.
- + * GNU extensions: Builtin.
- + * GNU extensions: Arguments.
- * GNU extensions: Extensions.
- + * GNU extensions: Patsubst.
- * GNU extensions: Frozen files.
- * GNU extensions: Format.
- * GNU extensions: Debug Output.
- * GNU extensions: Debug Levels.
- * included files, search path for: Search Path.
- * inclusion, of files: File Inclusion.
- + * inclusion, of files: Undivert.
- * increment operator: Incr.
- * indirect call of builtins: Builtin.
- * indirect call of macros: Indir.
- diff -rc --new-file m4-1.4/doc/stamp-vti /gnu/src/amiga/m4-1.4/doc/stamp-vti
- *** m4-1.4/doc/stamp-vti Sun Nov 6 03:46:26 1994
- --- /gnu/src/amiga/m4-1.4/doc/stamp-vti Sat Nov 12 15:26:39 1994
- ***************
- *** 1 ****
- ! Sat Nov 5 22:46:26 EST 1994
- --- 1 ----
- ! Sat Nov 12 15:26:39 1994
-