home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-01-21 | 112.6 KB | 4,188 lines |
- diff -rc --new-file sh-utils-1.12/INSTALL /gnu/src/amiga/sh-utils-1.12/INSTALL
- *** sh-utils-1.12/INSTALL Tue Oct 18 20:30:28 1994
- --- /gnu/src/amiga/sh-utils-1.12/INSTALL Sat Nov 12 21:53:37 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 sh-utils-1.12/Makefile.in /gnu/src/amiga/sh-utils-1.12/Makefile.in
- *** sh-utils-1.12/Makefile.in Fri Nov 4 07:01:04 1994
- --- /gnu/src/amiga/sh-utils-1.12/Makefile.in Sat Nov 12 22:23:10 1994
- ***************
- *** 33,40 ****
- stamp-h.in acconfig.h
-
- # Redundant stuff for making only selected programs.
- PROGS = basename date dirname echo env expr false groups hostname id logname \
- ! pathchk printenv printf pwd sleep tee test true tty users who whoami \
- yes @PROGS@
-
- # Subdirectories to run make in for the primary targets.
- --- 33,41 ----
- stamp-h.in acconfig.h
-
- # Redundant stuff for making only selected programs.
- + # Amiga hacks - remove tty and who, since they need ttyname().
- PROGS = basename date dirname echo env expr false groups hostname id logname \
- ! pathchk printenv printf pwd sleep tee test true users whoami \
- yes @PROGS@
-
- # Subdirectories to run make in for the primary targets.
- diff -rc --new-file sh-utils-1.12/Product-Info /gnu/src/amiga/sh-utils-1.12/Product-Info
- *** sh-utils-1.12/Product-Info Thu Jan 1 00:00:00 1970
- --- /gnu/src/amiga/sh-utils-1.12/Product-Info Fri Nov 18 12:49:13 1994
- ***************
- *** 0 ****
- --- 1,24 ----
- + .name
- + sh-utils
- + .fullname
- + Shell programming utilities
- + .type
- + Programmer Tool
- + .short
- + GNU shell programming utilities
- + .description
- + This is a package of small shell programming utilities. They are
- + mostly compliant with POSIX.2, where applicable. The programs that
- + can be built with this package are: basename date dirname echo env
- + expr false groups id logname nice nohup pathchk printenv printf sleep
- + stty tee test true tty uname who whoami yes Some programs (uname,
- + nice, nohup, and stty) are built and installed only on systems that
- + have the features to support them.
- + .version
- + 1.12
- + .author
- + Free Software Foundation
- + .distribution
- + GNU Public License
- + .described-by
- + Fred Fish (fnf@amigalib.com)
- diff -rc --new-file sh-utils-1.12/configure /gnu/src/amiga/sh-utils-1.12/configure
- *** sh-utils-1.12/configure Fri Oct 7 23:52:35 1994
- --- /gnu/src/amiga/sh-utils-1.12/configure Sat Nov 12 22:01:38 1994
- ***************
- *** 1,56 ****
- #!/bin/sh
-
- # Guess values for system-dependent variables and create Makefiles.
- ! # Generated automatically using autoconf version 1.120
- ! # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
- #
- ! # This configure script is free software; you can redistribute it and/or
- ! # modify it under the terms of the GNU General Public License as published
- ! # by the Free Software Foundation; either version 2, or (at your option)
- ! # any later version.
- ! #
- ! # This script is distributed in the hope that it will be useful, but
- ! # WITHOUT ANY WARRANTY; without even the implied warranty of
- ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
- ! # Public License for more details.
- ! #
- ! # You should have received a copy of the GNU General Public License
- ! # along with this script; if not, write to the Free Software
- ! # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- ! #
- ! # The redistribution and modification terms for this script do not affect
- ! # the terms for software that it configures.
-
- ac_help=
- !
- ! # Omit some internal or obsolete options to make the list less imposing.
- ! ac_usage="Usage: configure [options] [host]
- ! Options: [defaults in brackets after descriptions]
- ! Configuration:
- ! --cache-file=FILE cache test results in FILE
- ! --help print this message
- ! --no-create do not create output files
- ! --quiet, --silent do not print \`checking...' messages
- ! --version print the version of autoconf that created configure
- ! Directory and file names:
- ! --exec-prefix=PREFIX install host dependent files in PREFIX [/usr/local]
- ! --prefix=PREFIX install host independent files in PREFIX [/usr/local]
- ! --srcdir=DIR find the sources in DIR [configure dir or ..]
- ! --program-prefix=PREFIX prepend PREFIX to installed program names
- ! --program-suffix=SUFFIX append SUFFIX to installed program names
- ! --program-transform-name=PROGRAM run sed PROGRAM on installed program names
- ! Host type:
- ! --build=BUILD configure for building on BUILD [BUILD=HOST]
- ! --host=HOST configure for HOST [guessed]
- ! --target=TARGET configure for TARGET [TARGET=HOST]
- ! Features and packages:
- ! --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
- ! --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
- ! --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
- ! --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
- ! --x-includes=DIR X include files are in DIR
- ! --x-libraries=DIR X library files are in DIR
- ! --enable and --with options recognized:$ac_help"
-
- # Initialize some variables set by options.
- # The variables have the same names as the options, with
- --- 1,16 ----
- #!/bin/sh
-
- # Guess values for system-dependent variables and create Makefiles.
- ! # Generated automatically using autoconf version 2.1
- ! # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
- #
- ! # This configure script is free software; the Free Software Foundation
- ! # gives unlimited permission to copy, distribute and modify it.
-
- + # Defaults:
- ac_help=
- ! ac_default_prefix=/gnu
- ! # Any additions from configure.in:
-
- # Initialize some variables set by options.
- # The variables have the same names as the options, with
- ***************
- *** 67,72 ****
- --- 27,33 ----
- program_suffix=NONE
- program_transform_name=s,x,x,
- silent=
- + site=
- srcdir=
- target=NONE
- verbose=
- ***************
- *** 88,94 ****
- fi
-
- case "$ac_option" in
- ! -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) ac_optarg= ;;
- esac
-
- --- 49,55 ----
- fi
-
- case "$ac_option" in
- ! -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) ac_optarg= ;;
- esac
-
- ***************
- *** 109,129 ****
- 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 ;;
- --- 70,90 ----
- 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 ;;
- ***************
- *** 144,151 ****
- with_gas=yes ;;
-
- -help | --help | --hel | --he)
- cat << EOF
- ! $ac_usage
- EOF
- exit 0 ;;
-
- --- 105,142 ----
- with_gas=yes ;;
-
- -help | --help | --hel | --he)
- + # Omit some internal or obsolete options to make the list less imposing.
- + # This message is too long to be a string in the A/UX 3.1 sh.
- cat << EOF
- ! Usage: configure [options] [host]
- ! Options: [defaults in brackets after descriptions]
- ! Configuration:
- ! --cache-file=FILE cache test results in FILE
- ! --help print this message
- ! --no-create do not create output files
- ! --quiet, --silent do not print \`checking...' messages
- ! --version print the version of autoconf that created configure
- ! Directory and file names:
- ! --prefix=PREFIX install architecture-independent files in PREFIX
- ! [$ac_default_prefix]
- ! --exec-prefix=PREFIX install architecture-dependent files in PREFIX
- ! [same as prefix]
- ! --srcdir=DIR find the sources in DIR [configure dir or ..]
- ! --program-prefix=PREFIX prepend PREFIX to installed program names
- ! --program-suffix=SUFFIX append SUFFIX to installed program names
- ! --program-transform-name=PROGRAM run sed PROGRAM on installed program names
- ! Host type:
- ! --build=BUILD configure for building on BUILD [BUILD=HOST]
- ! --host=HOST configure for HOST [guessed]
- ! --target=TARGET configure for TARGET [TARGET=HOST]
- ! Features and packages:
- ! --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
- ! --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
- ! --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
- ! --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
- ! --x-includes=DIR X include files are in DIR
- ! --x-libraries=DIR X library files are in DIR
- ! --enable and --with options recognized:$ac_help
- EOF
- exit 0 ;;
-
- ***************
- *** 206,211 ****
- --- 197,207 ----
- | -silent | --silent | --silen | --sile | --sil)
- silent=yes ;;
-
- + -site | --site | --sit)
- + ac_prev=site ;;
- + -site=* | --site=* | --sit=*)
- + site="$ac_optarg" ;;
- +
- -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
- ac_prev=srcdir ;;
- -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
- ***************
- *** 220,235 ****
- verbose=yes ;;
-
- -version | --version | --versio | --versi | --vers)
- ! echo "configure generated by autoconf version 1.120"
- 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 ;;
- --- 216,231 ----
- verbose=yes ;;
-
- -version | --version | --versio | --versi | --vers)
- ! echo "configure generated by autoconf version 2.1"
- 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 ;;
- ***************
- *** 237,248 ****
- 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)
- --- 233,244 ----
- 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)
- ***************
- *** 267,273 ****
- ;;
-
- *)
- ! 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
- --- 263,269 ----
- ;;
-
- *)
- ! 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
- ***************
- *** 280,286 ****
- 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
- --- 276,282 ----
- 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
- ***************
- *** 330,336 ****
- # 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.
- --- 326,332 ----
- # 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.
- ***************
- *** 341,347 ****
- 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
- --- 337,343 ----
- 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
- ***************
- *** 357,374 ****
- { 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
- if test "x$prefix" != xNONE; then
- ! CONFIG_SITE=$prefix/lib/config.site
- else
- ! CONFIG_SITE=/usr/local/lib/config.site
- ! fi
- ! # System dependent files override system independent ones.
- ! if test "x$exec_prefix" != xNONE && test "x$exec_prefix" != "x$prefix"; then
- ! CONFIG_SITE="$CONFIG_SITE $exec_prefix/lib/config.site"
- fi
- fi
- for ac_site_file in $CONFIG_SITE; do
- --- 353,366 ----
- { 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
- if test "x$prefix" != xNONE; then
- ! CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
- else
- ! CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
- fi
- fi
- for ac_site_file in $CONFIG_SITE; do
- ***************
- *** 389,394 ****
- --- 381,387 ----
- ac_ext=c
- # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
- ac_cpp='$CPP $CPPFLAGS'
- + ac_compile='${CC-cc} $CFLAGS $CPPFLAGS conftest.$ac_ext -c 1>&5 2>&5'
- ac_link='${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext -o conftest $LIBS 1>&5 2>&5'
-
- if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
- ***************
- *** 408,421 ****
-
-
-
- ! 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=`
- --- 401,414 ----
-
-
-
- ! /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=`
- ***************
- *** 426,444 ****
- fi
- 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 "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.
- --- 419,437 ----
- fi
- rm -f conftestmake
- fi
- ! if eval "test \"`/bin/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 "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.
- ***************
- *** 457,475 ****
- 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__
- ! yes
- #endif
- EOF
- if ${CC-cc} -E conftest.c 2>&5 | egrep yes >/dev/null 2>&1; then
- --- 450,468 ----
- 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__
- ! yes;
- #endif
- EOF
- if ${CC-cc} -E conftest.c 2>&5 | egrep yes >/dev/null 2>&1; then
- ***************
- *** 478,490 ****
- 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
- --- 471,483 ----
- 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
- ***************
- *** 495,505 ****
- 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
- --- 488,500 ----
- 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
- ***************
- *** 507,520 ****
- test "${CFLAGS+set}" = set || CFLAGS="-g"
- 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.
- --- 502,515 ----
- test "${CFLAGS+set}" = set || CFLAGS="-g"
- 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.
- ***************
- *** 522,530 ****
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp.
- cat > conftest.$ac_ext <<EOF
- ! #line 526 "configure"
- #include "confdefs.h"
- ! #include <stdio.h>
- Syntax Error
- EOF
- eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- --- 517,525 ----
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp.
- cat > conftest.$ac_ext <<EOF
- ! #line 521 "configure"
- #include "confdefs.h"
- ! #include <assert.h>
- Syntax Error
- EOF
- eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- ***************
- *** 532,544 ****
- 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 540 "configure"
- #include "confdefs.h"
- ! #include <stdio.h>
- Syntax Error
- EOF
- eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- --- 527,539 ----
- 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 535 "configure"
- #include "confdefs.h"
- ! #include <assert.h>
- Syntax Error
- EOF
- eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- ***************
- *** 546,552 ****
- if test -z "$ac_err"; then
- :
- else
- ! echo "$ac_err" >&5
- rm -rf conftest*
- CPP=/lib/cpp
- fi
- --- 541,547 ----
- if test -z "$ac_err"; then
- :
- else
- ! /bin/echo "$ac_err" >&5
- rm -rf conftest*
- CPP=/lib/cpp
- fi
- ***************
- *** 557,572 ****
- fi
- fi
- CPP="$ac_cv_prog_CPP"
- ! echo "$ac_t""$CPP" 1>&4
-
- if test $ac_cv_prog_gcc = yes; then
- ! echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_pattern="Autoconf.*'x'"
- cat > conftest.$ac_ext <<EOF
- ! #line 570 "configure"
- #include "confdefs.h"
- #include <sgtty.h>
- Autoconf TIOCGETP
- --- 552,567 ----
- fi
- fi
- CPP="$ac_cv_prog_CPP"
- ! /bin/echo "$ac_t""$CPP" 1>&4
-
- if test $ac_cv_prog_gcc = yes; then
- ! /bin/echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_pattern="Autoconf.*'x'"
- cat > conftest.$ac_ext <<EOF
- ! #line 565 "configure"
- #include "confdefs.h"
- #include <sgtty.h>
- Autoconf TIOCGETP
- ***************
- *** 584,590 ****
-
- if test $ac_cv_prog_gcc_traditional = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 588 "configure"
- #include "confdefs.h"
- #include <termio.h>
- Autoconf TCGETA
- --- 579,585 ----
-
- if test $ac_cv_prog_gcc_traditional = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 583 "configure"
- #include "confdefs.h"
- #include <termio.h>
- Autoconf TCGETA
- ***************
- *** 598,604 ****
-
- fi
- fi
- ! echo "$ac_t""$ac_cv_prog_gcc_traditional" 1>&4
- if test $ac_cv_prog_gcc_traditional = yes; then
- CC="$CC -traditional"
- fi
- --- 593,599 ----
-
- fi
- fi
- ! /bin/echo "$ac_t""$ac_cv_prog_gcc_traditional" 1>&4
- if test $ac_cv_prog_gcc_traditional = yes; then
- CC="$CC -traditional"
- fi
- ***************
- *** 633,647 ****
- # 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
- --- 628,642 ----
- # 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
- ***************
- *** 666,672 ****
- 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.
- --- 661,667 ----
- 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.
- ***************
- *** 676,684 ****
-
- # 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.
- --- 671,679 ----
-
- # 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.
- ***************
- *** 697,714 ****
- 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
-
- for ac_prog in 'bison -y' byacc
- 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_YACC'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test -n "$YACC"; then
- ac_cv_prog_YACC="$YACC" # Let the user override the test.
- --- 692,709 ----
- 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
-
- for ac_prog in 'bison -y' byacc
- 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_YACC'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test -n "$YACC"; then
- ac_cv_prog_YACC="$YACC" # Let the user override the test.
- ***************
- *** 726,743 ****
- fi
- YACC="$ac_cv_prog_YACC"
- if test -n "$YACC"; then
- ! echo "$ac_t""$YACC" 1>&4
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- test -n "$YACC" && break
- done
- test -n "$YACC" || YACC="yacc"
-
- ! echo $ac_n "checking for AIX""... $ac_c" 1>&4
- cat > conftest.$ac_ext <<EOF
- ! #line 741 "configure"
- #include "confdefs.h"
- #ifdef _AIX
- yes
- --- 721,738 ----
- fi
- YACC="$ac_cv_prog_YACC"
- if test -n "$YACC"; then
- ! /bin/echo "$ac_t""$YACC" 1>&4
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- test -n "$YACC" && break
- done
- test -n "$YACC" || YACC="yacc"
-
- ! /bin/echo $ac_n "checking for AIX""... $ac_c" 1>&4
- cat > conftest.$ac_ext <<EOF
- ! #line 736 "configure"
- #include "confdefs.h"
- #ifdef _AIX
- yes
- ***************
- *** 747,770 ****
- 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*
-
-
- ! ac_safe=`echo "minix/config.h" | tr './' '__'`
- ! 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 768 "configure"
- #include "confdefs.h"
- #include <minix/config.h>
- EOF
- --- 742,765 ----
- 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*
-
-
- ! 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 763 "configure"
- #include "confdefs.h"
- #include <minix/config.h>
- EOF
- ***************
- *** 774,790 ****
- 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
-
- --- 769,785 ----
- 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
-
- ***************
- *** 803,813 ****
-
- fi
-
- ! 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
- --- 798,808 ----
-
- fi
-
- ! /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
- ***************
- *** 819,838 ****
- CC="$CC -Xp"
- fi
- else
- ! echo "$ac_t""no" 1>&4
- ISC=
- fi
-
- for ac_func in uname
- 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 834 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 814,836 ----
- CC="$CC -Xp"
- fi
- else
- ! /bin/echo "$ac_t""no" 1>&4
- ISC=
- fi
-
- for ac_func in uname
- 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 829 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char $ac_func();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 842,849 ****
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char $ac_func(); $ac_func();
- #endif
-
- ; return 0; }
- --- 840,846 ----
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! $ac_func();
- #endif
-
- ; return 0; }
- ***************
- *** 859,881 ****
-
- 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
- PROGS="$PROGS uname" MAN="$MAN uname.1"
- else
- ! echo "$ac_t""no" 1>&4
- fi
- done
-
- ! 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 879 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 856,878 ----
-
- 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
- PROGS="$PROGS uname" MAN="$MAN uname.1"
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
- done
-
- ! /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 876 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 886,891 ****
- --- 883,891 ----
- /* SunOS 4.1.1 cc rejects this. */
- char const *const *ccp;
- char **p;
- + /* NEC SVR4.0.2 mips cc rejects this. */
- + struct point {int x, y;};
- + static struct point const zero;
- /* AIX XL C 1.02.0.0 rejects this.
- It does not let you subtract one const X* pointer from another in an arm
- of an if-expression whose if-part is not a constant expression */
- ***************
- *** 922,928 ****
-
- ; return 0; }
- EOF
- ! if eval $ac_link; then
- rm -rf conftest*
- ac_cv_c_const=yes
- else
- --- 922,928 ----
-
- ; return 0; }
- EOF
- ! if eval $ac_compile; then
- rm -rf conftest*
- ac_cv_c_const=yes
- else
- ***************
- *** 932,938 ****
- 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
- --- 932,938 ----
- 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
- ***************
- *** 941,949 ****
- fi
-
- # 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
- --- 941,949 ----
- fi
-
- # 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
- ***************
- *** 963,973 ****
- 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 974 "configure"
- --- 963,973 ----
- 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 974 "configure"
- ***************
- *** 983,989 ****
- rm -rf conftest*
- ac_cv_header_stdc=yes
- else
- ! echo "$ac_err" >&5
- rm -rf conftest*
- ac_cv_header_stdc=no
- fi
- --- 983,989 ----
- rm -rf conftest*
- ac_cv_header_stdc=yes
- else
- ! /bin/echo "$ac_err" >&5
- rm -rf conftest*
- ac_cv_header_stdc=no
- fi
- ***************
- *** 1052,1058 ****
- 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
- --- 1052,1058 ----
- 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
- ***************
- *** 1060,1068 ****
-
- fi
-
- ! echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_bigendian'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
- --- 1060,1068 ----
-
- fi
-
- ! /bin/echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_bigendian'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
- ***************
- *** 1090,1096 ****
- fi
- rm -fr conftest*
- fi
- ! echo "$ac_t""$ac_cv_c_bigendian" 1>&4
- if test $ac_cv_c_bigendian = yes; then
- cat >> confdefs.h <<\EOF
- #define WORDS_BIGENDIAN 1
- --- 1090,1096 ----
- fi
- rm -fr conftest*
- fi
- ! /bin/echo "$ac_t""$ac_cv_c_bigendian" 1>&4
- if test $ac_cv_c_bigendian = yes; then
- cat >> confdefs.h <<\EOF
- #define WORDS_BIGENDIAN 1
- ***************
- *** 1099,1107 ****
- fi
-
-
- ! echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_struct_tm'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1108 "configure"
- --- 1099,1107 ----
- fi
-
-
- ! /bin/echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_struct_tm'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1108 "configure"
- ***************
- *** 1113,1119 ****
- struct tm *tp; tp->tm_sec;
- ; return 0; }
- EOF
- ! if eval $ac_link; then
- rm -rf conftest*
- ac_cv_struct_tm=time.h
- else
- --- 1113,1119 ----
- struct tm *tp; tp->tm_sec;
- ; return 0; }
- EOF
- ! if eval $ac_compile; then
- rm -rf conftest*
- ac_cv_struct_tm=time.h
- else
- ***************
- *** 1123,1129 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_struct_tm" 1>&4
- if test $ac_cv_struct_tm = sys/time.h; then
- cat >> confdefs.h <<\EOF
- #define TM_IN_SYS_TIME 1
- --- 1123,1129 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_struct_tm" 1>&4
- if test $ac_cv_struct_tm = sys/time.h; then
- cat >> confdefs.h <<\EOF
- #define TM_IN_SYS_TIME 1
- ***************
- *** 1131,1139 ****
-
- fi
-
- ! echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_time'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1140 "configure"
- --- 1131,1139 ----
-
- fi
-
- ! /bin/echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_time'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1140 "configure"
- ***************
- *** 1146,1152 ****
- struct tm *tp;
- ; return 0; }
- EOF
- ! if eval $ac_link; then
- rm -rf conftest*
- ac_cv_header_time=yes
- else
- --- 1146,1152 ----
- struct tm *tp;
- ; return 0; }
- EOF
- ! if eval $ac_compile; then
- rm -rf conftest*
- ac_cv_header_time=yes
- else
- ***************
- *** 1156,1162 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_header_time" 1>&4
- if test $ac_cv_header_time = yes; then
- cat >> confdefs.h <<\EOF
- #define TIME_WITH_SYS_TIME 1
- --- 1156,1162 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_header_time" 1>&4
- if test $ac_cv_header_time = yes; then
- cat >> confdefs.h <<\EOF
- #define TIME_WITH_SYS_TIME 1
- ***************
- *** 1164,1172 ****
-
- fi
-
- ! echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_struct_tm_zone'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1173 "configure"
- --- 1164,1172 ----
-
- fi
-
- ! /bin/echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_struct_tm_zone'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1173 "configure"
- ***************
- *** 1178,1184 ****
- struct tm tm; tm.tm_zone;
- ; return 0; }
- EOF
- ! if eval $ac_link; then
- rm -rf conftest*
- ac_cv_struct_tm_zone=yes
- else
- --- 1178,1184 ----
- struct tm tm; tm.tm_zone;
- ; return 0; }
- EOF
- ! if eval $ac_compile; then
- rm -rf conftest*
- ac_cv_struct_tm_zone=yes
- else
- ***************
- *** 1188,1203 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_struct_tm_zone" 1>&4
- if test "$ac_cv_struct_tm_zone" = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_TM_ZONE 1
- EOF
-
- else
- ! echo $ac_n "checking for tzname""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_var_tzname'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1204 "configure"
- --- 1188,1203 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_struct_tm_zone" 1>&4
- if test "$ac_cv_struct_tm_zone" = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_TM_ZONE 1
- EOF
-
- else
- ! /bin/echo $ac_n "checking for tzname""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_var_tzname'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1204 "configure"
- ***************
- *** 1221,1227 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_var_tzname" 1>&4
- if test $ac_cv_var_tzname = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_TZNAME 1
- --- 1221,1227 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_var_tzname" 1>&4
- if test $ac_cv_var_tzname = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_TZNAME 1
- ***************
- *** 1230,1238 ****
- fi
- fi
-
- ! echo $ac_n "checking whether stat file-mode macros are broken""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_stat_broken'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1239 "configure"
- --- 1230,1238 ----
- fi
- fi
-
- ! /bin/echo $ac_n "checking whether stat file-mode macros are broken""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_stat_broken'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1239 "configure"
- ***************
- *** 1274,1280 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_header_stat_broken" 1>&4
- if test $ac_cv_header_stat_broken = yes; then
- cat >> confdefs.h <<\EOF
- #define STAT_MACROS_BROKEN 1
- --- 1274,1280 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_header_stat_broken" 1>&4
- if test $ac_cv_header_stat_broken = yes; then
- cat >> confdefs.h <<\EOF
- #define STAT_MACROS_BROKEN 1
- ***************
- *** 1282,1290 ****
-
- fi
-
- ! echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_uid_t'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1291 "configure"
- --- 1282,1290 ----
-
- fi
-
- ! /bin/echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_uid_t'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- #line 1291 "configure"
- ***************
- *** 1302,1308 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_type_uid_t" 1>&4
- if test $ac_cv_type_uid_t = no; then
- cat >> confdefs.h <<\EOF
- #define uid_t int
- --- 1302,1308 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_type_uid_t" 1>&4
- if test $ac_cv_type_uid_t = no; then
- cat >> confdefs.h <<\EOF
- #define uid_t int
- ***************
- *** 1314,1322 ****
-
- fi
-
- ! echo $ac_n "checking type of array argument to getgroups""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_getgroups'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- ac_cv_type_getgroups=cross
- --- 1314,1322 ----
-
- fi
-
- ! /bin/echo $ac_n "checking type of array argument to getgroups""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_getgroups'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- ac_cv_type_getgroups=cross
- ***************
- *** 1373,1387 ****
-
- fi
- fi
- ! echo "$ac_t""$ac_cv_type_getgroups" 1>&4
- cat >> confdefs.h <<EOF
- #define GETGROUPS_T $ac_cv_type_getgroups
- 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 1388 "configure"
- --- 1373,1387 ----
-
- fi
- fi
- ! /bin/echo "$ac_t""$ac_cv_type_getgroups" 1>&4
- cat >> confdefs.h <<EOF
- #define GETGROUPS_T $ac_cv_type_getgroups
- 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 1388 "configure"
- ***************
- *** 1402,1408 ****
- 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
- --- 1402,1408 ----
- 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
- ***************
- *** 1414,1427 ****
- for ac_func in bcopy endgrent endpwent ftime getcwd getgroups gettimeofday \
- isascii memcpy sethostname strerror sysinfo
- 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 1423 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 1414,1430 ----
- for ac_func in bcopy endgrent endpwent ftime getcwd getgroups gettimeofday \
- isascii memcpy sethostname strerror sysinfo
- 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 1423 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char $ac_func();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 1431,1438 ****
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char $ac_func(); $ac_func();
- #endif
-
- ; return 0; }
- --- 1434,1440 ----
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! $ac_func();
- #endif
-
- ; return 0; }
- ***************
- *** 1448,1461 ****
-
- 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
-
- --- 1450,1463 ----
-
- 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
-
- ***************
- *** 1463,1476 ****
- # SCO-ODT-3.0 is reported to need -los to link programs using initgroups
- for ac_func in initgroups
- 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 1472 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 1465,1481 ----
- # SCO-ODT-3.0 is reported to need -los to link programs using initgroups
- for ac_func in initgroups
- 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 1474 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char $ac_func();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 1480,1487 ****
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char $ac_func(); $ac_func();
- #endif
-
- ; return 0; }
- --- 1485,1491 ----
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! $ac_func();
- #endif
-
- ; return 0; }
- ***************
- *** 1497,1522 ****
-
- 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
-
- if test $ac_cv_func_initgroups = no; then
- ! echo $ac_n "checking for -los""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_os'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -los "
- cat > conftest.$ac_ext <<EOF
- ! #line 1520 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 1501,1526 ----
-
- 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
-
- if test $ac_cv_func_initgroups = no; then
- ! /bin/echo $ac_n "checking for -los""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_os'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -los "
- cat > conftest.$ac_ext <<EOF
- ! #line 1524 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 1536,1543 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'os`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- ! ac_tr_lib=HAVE_LIB`echo os | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_lib 1
- EOF
- --- 1540,1547 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'os`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- ! ac_tr_lib=HAVE_LIB`/bin/echo os | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_lib 1
- EOF
- ***************
- *** 1545,1565 ****
- LIBS="$LIBS -los"
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- fi
-
- for ac_func in syslog
- 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 1561 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 1549,1572 ----
- LIBS="$LIBS -los"
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- fi
-
- for ac_func in syslog
- 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 1565 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char $ac_func();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 1569,1576 ****
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char $ac_func(); $ac_func();
- #endif
-
- ; return 0; }
- --- 1576,1582 ----
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! $ac_func();
- #endif
-
- ; return 0; }
- ***************
- *** 1586,1613 ****
-
- 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
-
- if test $ac_cv_func_syslog = no; then
- # syslog is not in the default libraries. See if it's in some other.
- for lib in bsd socket inet; do
- ! echo $ac_n "checking for -l$lib""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_$lib'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -l$lib "
- cat > conftest.$ac_ext <<EOF
- ! #line 1611 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 1592,1619 ----
-
- 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
-
- if test $ac_cv_func_syslog = no; then
- # syslog is not in the default libraries. See if it's in some other.
- for lib in bsd socket inet; do
- ! /bin/echo $ac_n "checking for -l$lib""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_$lib'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -l$lib "
- cat > conftest.$ac_ext <<EOF
- ! #line 1617 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 1627,1640 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'$lib`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_SYSLOG 1
- EOF
-
- LIBS="$LIBS -l$lib"; break
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- done
- --- 1633,1646 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'$lib`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_SYSLOG 1
- EOF
-
- LIBS="$LIBS -l$lib"; break
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- done
- ***************
- *** 1643,1655 ****
- for ac_hdr in string.h fcntl.h limits.h syslog.h sys/time.h unistd.h \
- sys/timeb.h float.h sys/systeminfo.h sys/param.h
- do
- ! ac_safe=`echo "$ac_hdr" | tr './' '__'`
- ! 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 1653 "configure"
- #include "confdefs.h"
- #include <$ac_hdr>
- EOF
- --- 1649,1661 ----
- for ac_hdr in string.h fcntl.h limits.h syslog.h sys/time.h unistd.h \
- sys/timeb.h float.h sys/systeminfo.h sys/param.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 1659 "configure"
- #include "confdefs.h"
- #include <$ac_hdr>
- EOF
- ***************
- *** 1659,1679 ****
- 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]./' '[A-Z]__'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_hdr 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
- done
-
- --- 1665,1685 ----
- 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
-
- ***************
- *** 1681,1694 ****
- for ac_func in gethostname getusershell mktime stime \
- strcspn strstr strtol strtoul strtod
- 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 1690 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 1687,1703 ----
- for ac_func in gethostname getusershell mktime stime \
- strcspn strstr strtol strtoul strtod
- 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 1696 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char $ac_func();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 1698,1705 ****
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char $ac_func(); $ac_func();
- #endif
-
- ; return 0; }
- --- 1707,1713 ----
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! $ac_func();
- #endif
-
- ; return 0; }
- ***************
- *** 1715,1738 ****
-
- 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 for 8-bit clean memcmp""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_memcmp'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- ac_cv_func_memcmp=no
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1736 "configure"
- #include "confdefs.h"
-
- main()
- --- 1723,1746 ----
-
- 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 for 8-bit clean memcmp""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_memcmp'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- ac_cv_func_memcmp=no
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1744 "configure"
- #include "confdefs.h"
-
- main()
- ***************
- *** 1751,1767 ****
- fi
- rm -fr conftest*
- fi
- ! echo "$ac_t""$ac_cv_func_memcmp" 1>&4
- test $ac_cv_func_memcmp = no && LIBOBJS="$LIBOBJS memcmp.o"
-
- ! 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 1763 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 1759,1778 ----
- fi
- rm -fr conftest*
- fi
- ! /bin/echo "$ac_t""$ac_cv_func_memcmp" 1>&4
- test $ac_cv_func_memcmp = no && LIBOBJS="$LIBOBJS memcmp.o"
-
- ! /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 1771 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char vprintf();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 1771,1778 ****
- #if defined (__stub_vprintf) || defined (__stub___vprintf)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char vprintf(); vprintf();
- #endif
-
- ; return 0; }
- --- 1782,1788 ----
- #if defined (__stub_vprintf) || defined (__stub___vprintf)
- choke me
- #else
- ! vprintf();
- #endif
-
- ; return 0; }
- ***************
- *** 1788,1811 ****
-
- 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 1807 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 1798,1824 ----
-
- 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 1817 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char _doprnt();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 1815,1822 ****
- #if defined (__stub__doprnt) || defined (__stub____doprnt)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char _doprnt(); _doprnt();
- #endif
-
- ; return 0; }
- --- 1828,1834 ----
- #if defined (__stub__doprnt) || defined (__stub____doprnt)
- choke me
- #else
- ! _doprnt();
- #endif
-
- ; return 0; }
- ***************
- *** 1832,1856 ****
-
- 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
-
- # 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 1854 "configure"
- #include "confdefs.h"
- #include <alloca.h>
- int main() { return 0; }
- --- 1844,1868 ----
-
- 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
-
- # 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 1866 "configure"
- #include "confdefs.h"
- #include <alloca.h>
- int main() { return 0; }
- ***************
- *** 1868,1874 ****
- 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
- --- 1880,1886 ----
- 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
- ***************
- *** 1876,1887 ****
-
- 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 1885 "configure"
- #include "confdefs.h"
-
- #ifdef __GNUC__
- --- 1888,1899 ----
-
- 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 1897 "configure"
- #include "confdefs.h"
-
- #ifdef __GNUC__
- ***************
- *** 1915,1921 ****
- 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
- --- 1927,1933 ----
- 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
- ***************
- *** 1934,1945 ****
- 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 1943 "configure"
- #include "confdefs.h"
- #if defined(CRAY) && ! defined(CRAY2)
- webecray
- --- 1946,1957 ----
- 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 1955 "configure"
- #include "confdefs.h"
- #if defined(CRAY) && ! defined(CRAY2)
- webecray
- ***************
- *** 1959,1974 ****
- 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 1970 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 1971,1989 ----
- 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 1982 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char _getb67();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 1978,1985 ****
- #if defined (__stub__getb67) || defined (__stub____getb67)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char _getb67(); _getb67();
- #endif
-
- ; return 0; }
- --- 1993,1999 ----
- #if defined (__stub__getb67) || defined (__stub____getb67)
- choke me
- #else
- ! _getb67();
- #endif
-
- ; return 0; }
- ***************
- *** 1995,2015 ****
-
- 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 2011 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 2009,2032 ----
-
- 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 2025 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char GETB67();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 2019,2026 ****
- #if defined (__stub_GETB67) || defined (__stub___GETB67)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char GETB67(); GETB67();
- #endif
-
- ; return 0; }
- --- 2036,2042 ----
- #if defined (__stub_GETB67) || defined (__stub___GETB67)
- choke me
- #else
- ! GETB67();
- #endif
-
- ; return 0; }
- ***************
- *** 2036,2056 ****
-
- 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 2052 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 2052,2075 ----
-
- 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 2068 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char getb67();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 2060,2067 ****
- #if defined (__stub_getb67) || defined (__stub___getb67)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char getb67(); getb67();
- #endif
-
- ; return 0; }
- --- 2079,2085 ----
- #if defined (__stub_getb67) || defined (__stub___getb67)
- choke me
- #else
- ! getb67();
- #endif
-
- ; return 0; }
- ***************
- *** 2077,2089 ****
-
- 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
- --- 2095,2107 ----
-
- 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
- ***************
- *** 2092,2106 ****
-
- 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 2104 "configure"
- #include "confdefs.h"
- find_stack_direction ()
- {
- --- 2110,2124 ----
-
- 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 2122 "configure"
- #include "confdefs.h"
- find_stack_direction ()
- {
- ***************
- *** 2128,2134 ****
- 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
- --- 2146,2152 ----
- 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
- ***************
- *** 2136,2147 ****
- fi
-
-
- ! echo $ac_n "checking for 3-argument setpriority function""... $ac_c" 1>&4
- if eval "test \"`echo '${'utils_cv_func_setpriority'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2145 "configure"
- #include "confdefs.h"
- #include <sys/time.h>
- #include <sys/resource.h>
- --- 2154,2165 ----
- fi
-
-
- ! /bin/echo $ac_n "checking for 3-argument setpriority function""... $ac_c" 1>&4
- if eval "test \"`echo '${'utils_cv_func_setpriority'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2163 "configure"
- #include "confdefs.h"
- #include <sys/time.h>
- #include <sys/resource.h>
- ***************
- *** 2161,2177 ****
-
- fi
-
- ! echo "$ac_t""$utils_cv_func_setpriority" 1>&4
- if test $utils_cv_func_setpriority = yes; then
- PROGS="$PROGS nice nohup"
- MAN="$MAN nice.1 nohup.1"
- else
- ! echo $ac_n "checking for nice function""... $ac_c" 1>&4
- if eval "test \"`echo '${'utils_cv_func_nice'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2175 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 2179,2195 ----
-
- fi
-
- ! /bin/echo "$ac_t""$utils_cv_func_setpriority" 1>&4
- if test $utils_cv_func_setpriority = yes; then
- PROGS="$PROGS nice nohup"
- MAN="$MAN nice.1 nohup.1"
- else
- ! /bin/echo $ac_n "checking for nice function""... $ac_c" 1>&4
- if eval "test \"`echo '${'utils_cv_func_nice'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2193 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 2190,2196 ****
-
- fi
-
- ! echo "$ac_t""$utils_cv_func_nice" 1>&4
- if test $utils_cv_func_nice = yes; then
- cat >> confdefs.h <<\EOF
- #define NICE_PRIORITY 1
- --- 2208,2214 ----
-
- fi
-
- ! /bin/echo "$ac_t""$utils_cv_func_nice" 1>&4
- if test $utils_cv_func_nice = yes; then
- cat >> confdefs.h <<\EOF
- #define NICE_PRIORITY 1
- ***************
- *** 2201,2212 ****
- fi
- fi
-
- ! echo $ac_n "checking ut_host in struct utmp""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_func_ut_host_in_utmp'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2210 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <utmp.h>
- --- 2219,2230 ----
- fi
- fi
-
- ! /bin/echo $ac_n "checking ut_host in struct utmp""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_func_ut_host_in_utmp'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2228 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <utmp.h>
- ***************
- *** 2226,2232 ****
-
- fi
-
- ! echo "$ac_t""$su_cv_func_ut_host_in_utmp" 1>&4
- if test $su_cv_func_ut_host_in_utmp = yes; then
- have_ut_host=1
- cat >> confdefs.h <<\EOF
- --- 2244,2250 ----
-
- fi
-
- ! /bin/echo "$ac_t""$su_cv_func_ut_host_in_utmp" 1>&4
- if test $su_cv_func_ut_host_in_utmp = yes; then
- have_ut_host=1
- cat >> confdefs.h <<\EOF
- ***************
- *** 2236,2247 ****
- fi
-
- if test -z "$have_ut_host"; then
- ! echo $ac_n "checking ut_host in struct utmpx""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_func_ut_host_in_utmpx'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2245 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <utmpx.h>
- --- 2254,2265 ----
- fi
-
- if test -z "$have_ut_host"; then
- ! /bin/echo $ac_n "checking ut_host in struct utmpx""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_func_ut_host_in_utmpx'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2263 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <utmpx.h>
- ***************
- *** 2261,2267 ****
-
- fi
-
- ! echo "$ac_t""$su_cv_func_ut_host_in_utmpx" 1>&4
- if test $su_cv_func_ut_host_in_utmpx = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_UTMPX_H 1
- --- 2279,2285 ----
-
- fi
-
- ! /bin/echo "$ac_t""$su_cv_func_ut_host_in_utmpx" 1>&4
- if test $su_cv_func_ut_host_in_utmpx = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_UTMPX_H 1
- ***************
- *** 2274,2285 ****
- fi
- fi
-
- ! echo $ac_n "checking POSIX termios""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_sys_posix_termios'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2283 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <unistd.h>
- --- 2292,2303 ----
- fi
- fi
-
- ! /bin/echo $ac_n "checking POSIX termios""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_sys_posix_termios'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2301 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <unistd.h>
- ***************
- *** 2301,2317 ****
-
- fi
-
- ! echo "$ac_t""$su_cv_sys_posix_termios" 1>&4
-
- if test $su_cv_sys_posix_termios = yes; then
- PROGS="$PROGS stty" MAN="$MAN stty.1"
-
- ! echo $ac_n "checking c_line in struct termios""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_sys_c_line_in_termios'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2315 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <termios.h>
- --- 2319,2335 ----
-
- fi
-
- ! /bin/echo "$ac_t""$su_cv_sys_posix_termios" 1>&4
-
- if test $su_cv_sys_posix_termios = yes; then
- PROGS="$PROGS stty" MAN="$MAN stty.1"
-
- ! /bin/echo $ac_n "checking c_line in struct termios""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_sys_c_line_in_termios'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2333 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <termios.h>
- ***************
- *** 2331,2348 ****
-
- fi
-
- ! echo "$ac_t""$su_cv_sys_c_line_in_termios" 1>&4
- test $su_cv_sys_c_line_in_termios = yes && cat >> confdefs.h <<\EOF
- #define HAVE_C_LINE 1
- EOF
-
-
- ! echo $ac_n "checking TIOCGWINSZ in termios.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_sys_tiocgwinsz_in_termios_h'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2346 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <termios.h>
- --- 2349,2366 ----
-
- fi
-
- ! /bin/echo "$ac_t""$su_cv_sys_c_line_in_termios" 1>&4
- test $su_cv_sys_c_line_in_termios = yes && cat >> confdefs.h <<\EOF
- #define HAVE_C_LINE 1
- EOF
-
-
- ! /bin/echo $ac_n "checking TIOCGWINSZ in termios.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_sys_tiocgwinsz_in_termios_h'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2364 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <termios.h>
- ***************
- *** 2362,2379 ****
-
- fi
-
- ! echo "$ac_t""$su_cv_sys_tiocgwinsz_in_termios_h" 1>&4
- else
- su_cv_sys_tiocgwinsz_in_termios_h=no
- fi
-
- if test $su_cv_sys_tiocgwinsz_in_termios_h = no; then
- ! echo $ac_n "checking TIOCGWINSZ in sys/ioctl.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_sys_tiocgwinsz_in_sys_ioctl_h'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2377 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/ioctl.h>
- --- 2380,2397 ----
-
- fi
-
- ! /bin/echo "$ac_t""$su_cv_sys_tiocgwinsz_in_termios_h" 1>&4
- else
- su_cv_sys_tiocgwinsz_in_termios_h=no
- fi
-
- if test $su_cv_sys_tiocgwinsz_in_termios_h = no; then
- ! /bin/echo $ac_n "checking TIOCGWINSZ in sys/ioctl.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'su_cv_sys_tiocgwinsz_in_sys_ioctl_h'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2395 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/ioctl.h>
- ***************
- *** 2393,2399 ****
-
- fi
-
- ! echo "$ac_t""$su_cv_sys_tiocgwinsz_in_sys_ioctl_h" 1>&4
-
- test $su_cv_sys_tiocgwinsz_in_sys_ioctl_h = yes \
- && cat >> confdefs.h <<\EOF
- --- 2411,2417 ----
-
- fi
-
- ! /bin/echo "$ac_t""$su_cv_sys_tiocgwinsz_in_sys_ioctl_h" 1>&4
-
- test $su_cv_sys_tiocgwinsz_in_sys_ioctl_h = yes \
- && cat >> confdefs.h <<\EOF
- ***************
- *** 2402,2414 ****
-
- fi
-
- ! ac_safe=`echo "sys/ptem.h" | tr './' '__'`
- ! echo $ac_n "checking for sys/ptem.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 2412 "configure"
- #include "confdefs.h"
- #include <sys/ptem.h>
- EOF
- --- 2420,2432 ----
-
- fi
-
- ! ac_safe=`/bin/echo "sys/ptem.h" | tr './\055' '___'`
- ! /bin/echo $ac_n "checking for sys/ptem.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 2430 "configure"
- #include "confdefs.h"
- #include <sys/ptem.h>
- EOF
- ***************
- *** 2418,2449 ****
- 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
- cat >> confdefs.h <<\EOF
- #define WINSIZE_IN_PTEM 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
-
- # The -lsun library is required for YP support on Irix-4.0.5 systems.
- ! echo $ac_n "checking for -lsun""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_sun'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lsun "
- cat > conftest.$ac_ext <<EOF
- ! #line 2447 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 2436,2467 ----
- 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
- cat >> confdefs.h <<\EOF
- #define WINSIZE_IN_PTEM 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
-
- # The -lsun library is required for YP support on Irix-4.0.5 systems.
- ! /bin/echo $ac_n "checking for -lsun""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_sun'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lsun "
- cat > conftest.$ac_ext <<EOF
- ! #line 2465 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 2463,2470 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'sun`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- ! ac_tr_lib=HAVE_LIB`echo sun | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_lib 1
- EOF
- --- 2481,2488 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'sun`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- ! ac_tr_lib=HAVE_LIB`/bin/echo sun | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_lib 1
- EOF
- ***************
- *** 2472,2491 ****
- LIBS="$LIBS -lsun"
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
-
- echo "checking for shadow password routines" 1>&4
- # Needed on SysV for shadow passwords.
- ! echo $ac_n "checking for -lsec""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_sec'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lsec "
- cat > conftest.$ac_ext <<EOF
- ! #line 2489 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 2490,2509 ----
- LIBS="$LIBS -lsun"
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
-
- echo "checking for shadow password routines" 1>&4
- # Needed on SysV for shadow passwords.
- ! /bin/echo $ac_n "checking for -lsec""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_sec'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lsec "
- cat > conftest.$ac_ext <<EOF
- ! #line 2507 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 2505,2512 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'sec`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- ! ac_tr_lib=HAVE_LIB`echo sec | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_lib 1
- EOF
- --- 2523,2530 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'sec`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- ! ac_tr_lib=HAVE_LIB`/bin/echo sec | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_lib 1
- EOF
- ***************
- *** 2514,2532 ****
- LIBS="$LIBS -lsec"
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
-
- # Needed on Linux for shadow passwords.
- ! echo $ac_n "checking for -lshadow""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_shadow'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lshadow "
- cat > conftest.$ac_ext <<EOF
- ! #line 2530 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 2532,2550 ----
- LIBS="$LIBS -lsec"
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
-
- # Needed on Linux for shadow passwords.
- ! /bin/echo $ac_n "checking for -lshadow""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_shadow'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lshadow "
- cat > conftest.$ac_ext <<EOF
- ! #line 2548 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 2546,2553 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'shadow`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- ! ac_tr_lib=HAVE_LIB`echo shadow | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_lib 1
- EOF
- --- 2564,2571 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'shadow`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- ! ac_tr_lib=HAVE_LIB`/bin/echo shadow | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_lib 1
- EOF
- ***************
- *** 2555,2580 ****
- LIBS="$LIBS -lshadow"
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
-
- cat > conftest.$ac_ext <<EOF
- ! #line 2564 "configure"
- #include "confdefs.h"
- #include <shadow.h>
- EOF
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- egrep "sp_pwdp" >/dev/null 2>&1; then
- rm -rf conftest*
- ! echo $ac_n "checking for getspnam""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_getspnam'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2576 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 2573,2601 ----
- LIBS="$LIBS -lshadow"
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
-
- cat > conftest.$ac_ext <<EOF
- ! #line 2582 "configure"
- #include "confdefs.h"
- #include <shadow.h>
- EOF
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- egrep "sp_pwdp" >/dev/null 2>&1; then
- rm -rf conftest*
- ! /bin/echo $ac_n "checking for getspnam""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_getspnam'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2594 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char getspnam();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 2584,2591 ****
- #if defined (__stub_getspnam) || defined (__stub___getspnam)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char getspnam(); getspnam();
- #endif
-
- ; return 0; }
- --- 2605,2611 ----
- #if defined (__stub_getspnam) || defined (__stub___getspnam)
- choke me
- #else
- ! getspnam();
- #endif
-
- ; return 0; }
- ***************
- *** 2601,2613 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'getspnam`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_SHADOW_H 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- fi
- --- 2621,2633 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'getspnam`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_SHADOW_H 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- fi
- ***************
- *** 2616,2629 ****
-
- for ac_func in crypt
- 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 2625 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- int main() { return 0; }
- int t() {
-
- --- 2636,2652 ----
-
- for ac_func in crypt
- 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 2645 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- + /* Override any gcc2 internal prototype to avoid an error. */
- + char $ac_func();
- +
- int main() { return 0; }
- int t() {
-
- ***************
- *** 2633,2640 ****
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! /* Override any gcc2 internal prototype to avoid an error. */
- ! char $ac_func(); $ac_func();
- #endif
-
- ; return 0; }
- --- 2656,2662 ----
- #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
- choke me
- #else
- ! $ac_func();
- #endif
-
- ; return 0; }
- ***************
- *** 2650,2676 ****
-
- 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
-
- if test $ac_cv_func_crypt = no; then
- # SCO-ODT-3.0 is reported to need this library for crypt.
- ! echo $ac_n "checking for -lufc""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_ufc'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lufc "
- cat > conftest.$ac_ext <<EOF
- ! #line 2674 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 2672,2698 ----
-
- 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
-
- if test $ac_cv_func_crypt = no; then
- # SCO-ODT-3.0 is reported to need this library for crypt.
- ! /bin/echo $ac_n "checking for -lufc""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_ufc'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lufc "
- cat > conftest.$ac_ext <<EOF
- ! #line 2696 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 2690,2708 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'ufc`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -lufc"
- else
- ! echo "$ac_t""no" 1>&4
- # NetBSD needs this library for crypt.
- ! echo $ac_n "checking for -lcrypt""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_crypt'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lcrypt "
- cat > conftest.$ac_ext <<EOF
- ! #line 2706 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 2712,2730 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'ufc`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -lufc"
- else
- ! /bin/echo "$ac_t""no" 1>&4
- # NetBSD needs this library for crypt.
- ! /bin/echo $ac_n "checking for -lcrypt""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_crypt'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lcrypt "
- cat > conftest.$ac_ext <<EOF
- ! #line 2728 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 2722,2729 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'crypt`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- ! ac_tr_lib=HAVE_LIB`echo crypt | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_lib 1
- EOF
- --- 2744,2751 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'crypt`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- ! ac_tr_lib=HAVE_LIB`/bin/echo crypt | tr '[a-z]' '[A-Z]'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_lib 1
- EOF
- ***************
- *** 2731,2737 ****
- LIBS="$LIBS -lcrypt"
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- fi
- --- 2753,2759 ----
- LIBS="$LIBS -lcrypt"
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- fi
- ***************
- *** 2767,2773 ****
-
- trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
-
- ! test "x$prefix" = xNONE && prefix=/usr/local
- # Let make expand exec_prefix.
- test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
-
- --- 2789,2795 ----
-
- trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
-
- ! test "x$prefix" = xNONE && prefix=$ac_default_prefix
- # Let make expand exec_prefix.
- test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
-
- ***************
- *** 2786,2792 ****
- : ${CONFIG_STATUS=./config.status}
-
- echo creating $CONFIG_STATUS
- ! rm -f $CONFIG_STATUS
- cat > $CONFIG_STATUS <<EOF
- #!/bin/sh
- # Generated automatically by configure.
- --- 2808,2816 ----
- : ${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.
- ***************
- *** 2807,2813 ****
- 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 1.120"
- exit 0 ;;
- -help | --help | --hel | --he | --h)
- echo "\$ac_cs_usage"; exit 0 ;;
- --- 2831,2837 ----
- 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 ;;
- ***************
- *** 2856,2876 ****
- 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
- --- 2880,2900 ----
- 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
- ***************
- *** 2878,2884 ****
- 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"
- --- 2902,2908 ----
- 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"
- ***************
- *** 2891,2897 ****
- 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" ;;
- --- 2915,2921 ----
- 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" ;;
- ***************
- *** 2929,2936 ****
- 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
-
- --- 2953,2960 ----
- 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
-
- ***************
- *** 2994,3000 ****
- 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
- --- 3018,3024 ----
- 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 sh-utils-1.12/lib/getusershell.c /gnu/src/amiga/sh-utils-1.12/lib/getusershell.c
- *** sh-utils-1.12/lib/getusershell.c Mon Sep 26 21:55:54 1994
- --- /gnu/src/amiga/sh-utils-1.12/lib/getusershell.c Sat Nov 12 21:52:29 1994
- ***************
- *** 43,49 ****
- /* List of shells to use if the shells file is missing. */
- static char const* const default_shells[] =
- {
- ! "/bin/sh", "/bin/csh", "/usr/bin/sh", "/usr/bin/csh", NULL
- };
-
- /* Index of the next shell in `default_shells' to return.
- --- 43,49 ----
- /* List of shells to use if the shells file is missing. */
- static char const* const default_shells[] =
- {
- ! "/bin/sh", "/bin/ksh", "/bin/bash", NULL
- };
-
- /* Index of the next shell in `default_shells' to return.
- diff -rc --new-file sh-utils-1.12/src/Makefile.in /gnu/src/amiga/sh-utils-1.12/src/Makefile.in
- *** sh-utils-1.12/src/Makefile.in Fri Nov 4 06:53:32 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/Makefile.in Sat Nov 12 22:56:04 1994
- ***************
- *** 46,57 ****
- DISTFILES = Makefile.in system.h $(SOURCES) groups.sh nohup.sh \
- false.sh true.sh version.h
-
- PROGS = basename date dirname echo env expr false groups hostname id logname \
- ! pathchk printenv printf pwd sleep tee test true tty users who whoami yes @PROGS@
-
- LIBPROGS =
-
- ! all: $(PROGS) su $(LIBPROGS)
-
- .SUFFIXES:
- .SUFFIXES: .c .o
- --- 46,59 ----
- DISTFILES = Makefile.in system.h $(SOURCES) groups.sh nohup.sh \
- false.sh true.sh version.h
-
- + # Amiga hacks - remove tty and who, since they need ttyname().
- PROGS = basename date dirname echo env expr false groups hostname id logname \
- ! pathchk printenv printf pwd sleep tee test true users whoami yes @PROGS@
-
- LIBPROGS =
-
- ! # Amiga hack - remove su since it needs getpass().
- ! all: $(PROGS) $(LIBPROGS)
-
- .SUFFIXES:
- .SUFFIXES: .c .o
- ***************
- *** 74,80 ****
- $(bindir)/`echo $$f|sed '$(transform)'`; \
- done
- $(RM) -f $(bindir)/'['; ln $(bindir)/$(binprefix)test $(bindir)/'['
- ! @if test `./id -u` = 0; then \
- echo you are root, so installing su; \
- $(INSTALL_PROGRAM) su $(bindir)/$(binprefix)su; \
- chown root $(bindir)/$(binprefix)su; \
- --- 76,82 ----
- $(bindir)/`echo $$f|sed '$(transform)'`; \
- done
- $(RM) -f $(bindir)/'['; ln $(bindir)/$(binprefix)test $(bindir)/'['
- ! @if false; then \
- echo you are root, so installing su; \
- $(INSTALL_PROGRAM) su $(bindir)/$(binprefix)su; \
- chown root $(bindir)/$(binprefix)su; \
- diff -rc --new-file sh-utils-1.12/src/basename.c /gnu/src/amiga/sh-utils-1.12/src/basename.c
- *** sh-utils-1.12/src/basename.c Fri Oct 21 04:59:41 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/basename.c Sat Nov 12 21:52:33 1994
- ***************
- *** 65,71 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 65,70 ----
- diff -rc --new-file sh-utils-1.12/src/date.c /gnu/src/amiga/sh-utils-1.12/src/date.c
- *** sh-utils-1.12/src/date.c Sat Oct 1 18:06:08 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/date.c Sat Nov 12 21:52:34 1994
- ***************
- *** 139,145 ****
- return status;
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 139,144 ----
- diff -rc --new-file sh-utils-1.12/src/dirname.c /gnu/src/amiga/sh-utils-1.12/src/dirname.c
- *** sh-utils-1.12/src/dirname.c Fri Oct 21 04:59:42 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/dirname.c Sat Nov 12 21:52:34 1994
- ***************
- *** 54,60 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 54,59 ----
- diff -rc --new-file sh-utils-1.12/src/echo.c /gnu/src/amiga/sh-utils-1.12/src/echo.c
- *** sh-utils-1.12/src/echo.c Sat Oct 1 02:41:10 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/echo.c Sat Nov 12 21:52:35 1994
- ***************
- *** 101,107 ****
- /* Print the words in LIST to standard output. If the first word is
- `-n', then don't print a trailing newline. We also support the
- echo syntax from Version 9 unix systems. */
- ! void
- main (argc, argv)
- int argc;
- char **argv;
- --- 101,107 ----
- /* Print the words in LIST to standard output. If the first word is
- `-n', then don't print a trailing newline. We also support the
- echo syntax from Version 9 unix systems. */
- !
- main (argc, argv)
- int argc;
- char **argv;
- diff -rc --new-file sh-utils-1.12/src/env.c /gnu/src/amiga/sh-utils-1.12/src/env.c
- *** sh-utils-1.12/src/env.c Sat Oct 1 02:41:11 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/env.c Sat Nov 12 21:52:36 1994
- ***************
- *** 111,117 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv, envp)
- register int argc;
- register char **argv;
- --- 111,116 ----
- diff -rc --new-file sh-utils-1.12/src/expr.c /gnu/src/amiga/sh-utils-1.12/src/expr.c
- *** sh-utils-1.12/src/expr.c Fri Oct 21 04:59:43 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/expr.c Sat Nov 12 21:52:37 1994
- ***************
- *** 150,156 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 150,155 ----
- diff -rc --new-file sh-utils-1.12/src/hostname.c /gnu/src/amiga/sh-utils-1.12/src/hostname.c
- *** sh-utils-1.12/src/hostname.c Sat Oct 1 02:41:13 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/hostname.c Sat Nov 12 21:52:38 1994
- ***************
- *** 73,79 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 73,78 ----
- diff -rc --new-file sh-utils-1.12/src/id.c /gnu/src/amiga/sh-utils-1.12/src/id.c
- *** sh-utils-1.12/src/id.c Tue Oct 11 01:47:01 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/id.c Sat Nov 12 21:52:39 1994
- ***************
- *** 102,108 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 102,107 ----
- diff -rc --new-file sh-utils-1.12/src/logname.c /gnu/src/amiga/sh-utils-1.12/src/logname.c
- *** sh-utils-1.12/src/logname.c Sat Oct 1 02:41:15 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/logname.c Sat Nov 12 21:52:40 1994
- ***************
- *** 58,64 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 58,63 ----
- diff -rc --new-file sh-utils-1.12/src/nice.c /gnu/src/amiga/sh-utils-1.12/src/nice.c
- *** sh-utils-1.12/src/nice.c Sat Oct 1 02:41:16 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/nice.c Sat Nov 12 21:52:41 1994
- ***************
- *** 54,60 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 54,59 ----
- diff -rc --new-file sh-utils-1.12/src/pathchk.c /gnu/src/amiga/sh-utils-1.12/src/pathchk.c
- *** sh-utils-1.12/src/pathchk.c Fri Oct 21 04:59:44 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/pathchk.c Sat Nov 12 21:52:42 1994
- ***************
- *** 114,120 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 114,119 ----
- diff -rc --new-file sh-utils-1.12/src/printenv.c /gnu/src/amiga/sh-utils-1.12/src/printenv.c
- *** sh-utils-1.12/src/printenv.c Sat Oct 1 02:41:18 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/printenv.c Sat Nov 12 21:52:43 1994
- ***************
- *** 76,82 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 76,81 ----
- diff -rc --new-file sh-utils-1.12/src/printf.c /gnu/src/amiga/sh-utils-1.12/src/printf.c
- *** sh-utils-1.12/src/printf.c Sat Oct 1 02:41:19 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/printf.c Sat Nov 12 21:52:44 1994
- ***************
- *** 125,131 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 125,130 ----
- diff -rc --new-file sh-utils-1.12/src/pwd.c /gnu/src/amiga/sh-utils-1.12/src/pwd.c
- *** sh-utils-1.12/src/pwd.c Sat Oct 1 02:41:20 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/pwd.c Sat Nov 12 21:52:45 1994
- ***************
- *** 50,56 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 50,55 ----
- diff -rc --new-file sh-utils-1.12/src/sleep.c /gnu/src/amiga/sh-utils-1.12/src/sleep.c
- *** sh-utils-1.12/src/sleep.c Fri Oct 21 04:59:45 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/sleep.c Sat Nov 12 21:52:46 1994
- ***************
- *** 64,70 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 64,69 ----
- diff -rc --new-file sh-utils-1.12/src/stty.c /gnu/src/amiga/sh-utils-1.12/src/stty.c
- *** sh-utils-1.12/src/stty.c Sat Oct 1 02:41:23 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/stty.c Sat Nov 12 21:52:47 1994
- ***************
- *** 623,629 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 623,628 ----
- diff -rc --new-file sh-utils-1.12/src/su.c /gnu/src/amiga/sh-utils-1.12/src/su.c
- *** sh-utils-1.12/src/su.c Tue Oct 11 01:47:02 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/su.c Sat Nov 12 21:52:49 1994
- ***************
- *** 123,132 ****
- #include "version.h"
-
- /* The default PATH for simulated logins to non-superuser accounts. */
- ! #define DEFAULT_LOGIN_PATH ":/usr/ucb:/bin:/usr/bin"
-
- /* The default PATH for simulated logins to superuser accounts. */
- ! #define DEFAULT_ROOT_LOGIN_PATH "/usr/ucb:/bin:/usr/bin:/etc"
-
- /* The shell to run if none is given in the user's passwd entry. */
- #define DEFAULT_SHELL "/bin/sh"
- --- 123,132 ----
- #include "version.h"
-
- /* The default PATH for simulated logins to non-superuser accounts. */
- ! #define DEFAULT_LOGIN_PATH ":/bin"
-
- /* The default PATH for simulated logins to superuser accounts. */
- ! #define DEFAULT_ROOT_LOGIN_PATH "/gnu"
-
- /* The shell to run if none is given in the user's passwd entry. */
- #define DEFAULT_SHELL "/bin/sh"
- ***************
- *** 188,194 ****
- {0, 0, 0, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 188,193 ----
- diff -rc --new-file sh-utils-1.12/src/tee.c /gnu/src/amiga/sh-utils-1.12/src/tee.c
- *** sh-utils-1.12/src/tee.c Sat Oct 1 02:41:25 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/tee.c Sat Nov 12 21:52:49 1994
- ***************
- *** 77,83 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 77,82 ----
- diff -rc --new-file sh-utils-1.12/src/tty.c /gnu/src/amiga/sh-utils-1.12/src/tty.c
- *** sh-utils-1.12/src/tty.c Sat Oct 1 02:41:27 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/tty.c Sat Nov 12 21:52:50 1994
- ***************
- *** 55,61 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 55,60 ----
- diff -rc --new-file sh-utils-1.12/src/uname.c /gnu/src/amiga/sh-utils-1.12/src/uname.c
- *** sh-utils-1.12/src/uname.c Sat Oct 1 02:41:28 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/uname.c Sat Nov 12 21:52:51 1994
- ***************
- *** 82,88 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 82,87 ----
- diff -rc --new-file sh-utils-1.12/src/who.c /gnu/src/amiga/sh-utils-1.12/src/who.c
- *** sh-utils-1.12/src/who.c Sat Oct 1 02:41:29 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/who.c Sat Nov 12 21:52:53 1994
- ***************
- *** 146,152 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 146,151 ----
- diff -rc --new-file sh-utils-1.12/src/whoami.c /gnu/src/amiga/sh-utils-1.12/src/whoami.c
- *** sh-utils-1.12/src/whoami.c Sat Oct 1 02:41:30 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/whoami.c Sat Nov 12 21:52:54 1994
- ***************
- *** 64,70 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char *argv[];
- --- 64,69 ----
- diff -rc --new-file sh-utils-1.12/src/yes.c /gnu/src/amiga/sh-utils-1.12/src/yes.c
- *** sh-utils-1.12/src/yes.c Sat Oct 1 02:41:31 1994
- --- /gnu/src/amiga/sh-utils-1.12/src/yes.c Sat Nov 12 21:52:55 1994
- ***************
- *** 48,54 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 48,53 ----
-