home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-01-21 | 97.0 KB | 3,568 lines |
- diff -rc --new-file findutils-4.1/INSTALL /gnu/src/amiga/findutils-4.1/INSTALL
- *** findutils-4.1/INSTALL Tue Oct 18 20:30:28 1994
- --- /gnu/src/amiga/findutils-4.1/INSTALL Sat Nov 12 08:48:16 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 findutils-4.1/Makefile.in /gnu/src/amiga/findutils-4.1/Makefile.in
- *** findutils-4.1/Makefile.in Sat Nov 5 14:45:56 1994
- --- /gnu/src/amiga/findutils-4.1/Makefile.in Thu Nov 17 10:56:31 1994
- ***************
- *** 25,36 ****
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- - libexecdir = $(exec_prefix)/libexec
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! localstatedir = $(prefix)/var
- libdir = $(exec_prefix)/lib
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- --- 25,39 ----
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! # Put this in /local, since $(prefix) might be on read-only media. -fnf
- ! localstatedir = /local/var
- libdir = $(exec_prefix)/lib
- + # It seems hokey to me to have the libexec dir visible at what is the
- + # equivalent of the root directory, so put it under libdir instead. -fnf
- + libexecdir = $(libdir)/libexec
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- diff -rc --new-file findutils-4.1/Product-Info /gnu/src/amiga/findutils-4.1/Product-Info
- *** findutils-4.1/Product-Info Thu Jan 1 00:00:00 1970
- --- /gnu/src/amiga/findutils-4.1/Product-Info Fri Nov 18 12:50:41 1994
- ***************
- *** 0 ****
- --- 1,40 ----
- + .name
- + findutils
- + .fullname
- + GNU find, xargs, and locate
- + .type
- + Programmer Tool
- + .short
- + GNU find, xargs, and locate
- + .description
- + This package contains the GNU find, xargs, and locate programs. This
- + version of find and xargs comply with POSIX 1003.2, and also support
- + some additional options, some borrowed from Unix and some unique to
- + GNU.
- +
- + To gain speed, GNU find now avoids statting files whenever possible.
- + It does this by: (1) Checking the number of links to directories and
- + not statting files that it knows aren't directories until it
- + encounters a test or action that needs the stat info. (2) Rearranging
- + the command line, where possible, so that it can do tests that don't
- + require a stat before tests that do, in hopes that the latter will be
- + skipped because of an OR or AND. (But it only does this where it will
- + leave the output unchanged.)
- +
- + The locate utility is based on James Woods' public domain fast-find
- + code, which is also distributed with the 4.3BSD find. Because POSIX
- + requires `find foo' to have the same effect as `find foo -print', the
- + fast-find searching has been moved to a separate program, `locate';
- + the same thing has been done in 4.3BSD-reno/4.4BSD. If you use
- + locate, you should run the included `updatedb' script from cron
- + periodically (typically nightly).
- + .version
- + 4.1
- + .author
- + Free Software Foundation
- + .requirements
- + Amiga binaries require ixemul.library.
- + .distribution
- + GNU Public License
- + .described-by
- + Fred Fish (fnf@amigalib.com)
- diff -rc --new-file findutils-4.1/configure /gnu/src/amiga/findutils-4.1/configure
- *** findutils-4.1/configure Fri Nov 4 14:47:50 1994
- --- /gnu/src/amiga/findutils-4.1/configure Sat Nov 12 08:57:34 1994
- ***************
- *** 9,15 ****
-
- # Defaults:
- ac_help=
- ! ac_default_prefix=/usr/local
- # Any additions from configure.in:
- ac_help="$ac_help
- --enable-id-cache cache all UIDs & GIDs; avoid if using NIS or Hesiod"
- --- 9,15 ----
-
- # Defaults:
- ac_help=
- ! ac_default_prefix=/gnu
- # Any additions from configure.in:
- ac_help="$ac_help
- --enable-id-cache cache all UIDs & GIDs; avoid if using NIS or Hesiod"
- ***************
- *** 53,59 ****
- fi
-
- case "$ac_option" in
- ! -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) ac_optarg= ;;
- esac
-
- --- 53,59 ----
- fi
-
- case "$ac_option" in
- ! -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) ac_optarg= ;;
- esac
-
- ***************
- *** 74,94 ****
- 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 ;;
- --- 74,94 ----
- 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 ;;
- ***************
- *** 224,235 ****
- 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 ;;
- --- 224,235 ----
- 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)
- --- 237,248 ----
- 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
- --- 267,273 ----
- ;;
-
- *)
- ! 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
- --- 280,286 ----
- 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.
- --- 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.
- ! /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
- --- 341,347 ----
- 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,363 ****
- { 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
- --- 357,363 ----
- { 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
- ***************
- *** 428,434 ****
- else
- # Double any \ or $.
- echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
- ! program_transform_name="`echo $program_transform_name|sed -f conftestsed`"
- rm -f conftestsed
- fi
- test "$program_prefix" != NONE &&
- --- 428,434 ----
- else
- # Double any \ or $.
- echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
- ! program_transform_name="`/bin/echo $program_transform_name|sed -f conftestsed`"
- rm -f conftestsed
- fi
- test "$program_prefix" != NONE &&
- ***************
- *** 443,451 ****
-
- # 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.
- --- 443,451 ----
-
- # 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.
- ***************
- *** 464,478 ****
- 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__
- --- 464,478 ----
- 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__
- ***************
- *** 485,497 ****
- 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
- --- 485,497 ----
- 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
- ***************
- *** 502,512 ****
- 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
- --- 502,514 ----
- 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
- ***************
- *** 514,527 ****
- 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.
- --- 516,529 ----
- 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.
- ***************
- *** 529,535 ****
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp.
- cat > conftest.$ac_ext <<EOF
- ! #line 533 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- --- 531,537 ----
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp.
- cat > conftest.$ac_ext <<EOF
- ! #line 535 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- ***************
- *** 539,549 ****
- 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 547 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- --- 541,551 ----
- 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 549 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- ***************
- *** 553,559 ****
- if test -z "$ac_err"; then
- :
- else
- ! echo "$ac_err" >&5
- rm -rf conftest*
- CPP=/lib/cpp
- fi
- --- 555,561 ----
- if test -z "$ac_err"; then
- :
- else
- ! /bin/echo "$ac_err" >&5
- rm -rf conftest*
- CPP=/lib/cpp
- fi
- ***************
- *** 564,570 ****
- fi
- fi
- CPP="$ac_cv_prog_CPP"
- ! echo "$ac_t""$CPP" 1>&4
-
- ac_aux_dir=
- for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
- --- 566,572 ----
- fi
- fi
- CPP="$ac_cv_prog_CPP"
- ! /bin/echo "$ac_t""$CPP" 1>&4
-
- ac_aux_dir=
- for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
- ***************
- *** 595,609 ****
- # 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
- --- 597,611 ----
- # 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
- ***************
- *** 628,634 ****
- 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.
- --- 630,636 ----
- 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.
- ***************
- *** 638,646 ****
-
- # 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.
- --- 640,648 ----
-
- # 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.
- ***************
- *** 659,677 ****
- fi
- RANLIB="$ac_cv_prog_RANLIB"
- if test -n "$RANLIB"; then
- ! echo "$ac_t""$RANLIB" 1>&4
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- ! echo $ac_n "checking 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=`
- --- 661,679 ----
- fi
- RANLIB="$ac_cv_prog_RANLIB"
- if test -n "$RANLIB"; then
- ! /bin/echo "$ac_t""$RANLIB" 1>&4
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- ! /bin/echo $ac_n "checking 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=`
- ***************
- *** 683,699 ****
- 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
-
-
- ! echo $ac_n "checking for AIX""... $ac_c" 1>&4
- cat > conftest.$ac_ext <<EOF
- ! #line 697 "configure"
- #include "confdefs.h"
- #ifdef _AIX
- yes
- --- 685,701 ----
- rm -f conftestmake
- fi
- if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- SET_MAKE=
- else
- ! /bin/echo "$ac_t""no" 1>&4
- SET_MAKE="MAKE=${MAKE-make}"
- fi
-
-
- ! /bin/echo $ac_n "checking for AIX""... $ac_c" 1>&4
- cat > conftest.$ac_ext <<EOF
- ! #line 699 "configure"
- #include "confdefs.h"
- #ifdef _AIX
- yes
- ***************
- *** 703,726 ****
- 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 './\055' '___'`
- ! echo $ac_n "checking for minix/config.h""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 724 "configure"
- #include "confdefs.h"
- #include <minix/config.h>
- EOF
- --- 705,728 ----
- 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 726 "configure"
- #include "confdefs.h"
- #include <minix/config.h>
- EOF
- ***************
- *** 730,746 ****
- 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
-
- --- 732,748 ----
- 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
-
- ***************
- *** 759,769 ****
-
- 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
- --- 761,771 ----
-
- 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
- ***************
- *** 775,793 ****
- CC="$CC -Xp"
- fi
- else
- ! echo "$ac_t""no" 1>&4
- ISC=
- fi
-
-
- ! 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 791 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 777,795 ----
- CC="$CC -Xp"
- fi
- else
- ! /bin/echo "$ac_t""no" 1>&4
- ISC=
- fi
-
-
- ! /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 793 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 807,814 ****
-
- 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
- --- 809,816 ----
-
- 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
- ***************
- *** 816,834 ****
- LIBS="$LIBS -lsun"
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
-
- for ac_hdr in fcntl.h string.h limits.h unistd.h
- do
- ! ac_safe=`echo "$ac_hdr" | tr './\055' '___'`
- ! echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 832 "configure"
- #include "confdefs.h"
- #include <$ac_hdr>
- EOF
- --- 818,836 ----
- LIBS="$LIBS -lsun"
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
-
- for ac_hdr in fcntl.h string.h limits.h unistd.h
- do
- ! ac_safe=`/bin/echo "$ac_hdr" | tr './\055' '___'`
- ! /bin/echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 834 "configure"
- #include "confdefs.h"
- #include <$ac_hdr>
- EOF
- ***************
- *** 838,871 ****
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=yes"
- else
- ! echo "$ac_err" >&5
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=no"
- fi
- rm -f conftest*
- fi
- if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- ! ac_tr_hdr=HAVE_`echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_hdr 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
- done
-
- # If we cannot run a trivial program, we must be cross compiling.
- ! echo $ac_n "checking whether cross-compiling""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_cross'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- ac_cv_cross=yes
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 869 "configure"
- #include "confdefs.h"
- main(){return(0);}
- EOF
- --- 840,873 ----
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=yes"
- else
- ! /bin/echo "$ac_err" >&5
- rm -rf conftest*
- eval "ac_cv_header_$ac_safe=no"
- fi
- rm -f conftest*
- fi
- if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- ! ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_hdr 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
- done
-
- # If we cannot run a trivial program, we must be cross compiling.
- ! /bin/echo $ac_n "checking whether cross-compiling""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_cross'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- if test "$cross_compiling" = yes; then
- ac_cv_cross=yes
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 871 "configure"
- #include "confdefs.h"
- main(){return(0);}
- EOF
- ***************
- *** 879,892 ****
- 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 890 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- #include <stdarg.h>
- --- 881,894 ----
- 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 892 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- #include <stdarg.h>
- ***************
- *** 899,905 ****
- rm -rf conftest*
- ac_cv_header_stdc=yes
- else
- ! echo "$ac_err" >&5
- rm -rf conftest*
- ac_cv_header_stdc=no
- fi
- --- 901,907 ----
- rm -rf conftest*
- ac_cv_header_stdc=yes
- else
- ! /bin/echo "$ac_err" >&5
- rm -rf conftest*
- ac_cv_header_stdc=no
- fi
- ***************
- *** 908,914 ****
- if test $ac_cv_header_stdc = yes; then
- # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
- ! #line 912 "configure"
- #include "confdefs.h"
- #include <string.h>
- EOF
- --- 910,916 ----
- if test $ac_cv_header_stdc = yes; then
- # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
- ! #line 914 "configure"
- #include "confdefs.h"
- #include <string.h>
- EOF
- ***************
- *** 926,932 ****
- if test $ac_cv_header_stdc = yes; then
- # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
- ! #line 930 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- EOF
- --- 928,934 ----
- if test $ac_cv_header_stdc = yes; then
- # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
- ! #line 932 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- EOF
- ***************
- *** 947,953 ****
- ac_cv_header_stdc=no
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 951 "configure"
- #include "confdefs.h"
- #include <ctype.h>
- #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
- --- 949,955 ----
- ac_cv_header_stdc=no
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 953 "configure"
- #include "confdefs.h"
- #include <ctype.h>
- #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
- ***************
- *** 968,974 ****
- 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
- --- 970,976 ----
- 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
- ***************
- *** 976,987 ****
-
- fi
-
- ! echo $ac_n "checking whether sys/types.h defines makedev""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_sys_types_h_makedev'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 985 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- int main() { return 0; }
- --- 978,989 ----
-
- fi
-
- ! /bin/echo $ac_n "checking whether sys/types.h defines makedev""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_sys_types_h_makedev'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 987 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- int main() { return 0; }
- ***************
- *** 1000,1015 ****
-
-
- fi
- ! echo "$ac_t""$ac_cv_header_sys_types_h_makedev" 1>&4
-
- if test $ac_cv_header_sys_types_h_makedev = no; then
- ! ac_safe=`echo "sys/mkdev.h" | tr './\055' '___'`
- ! echo $ac_n "checking for sys/mkdev.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 1013 "configure"
- #include "confdefs.h"
- #include <sys/mkdev.h>
- EOF
- --- 1002,1017 ----
-
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_header_sys_types_h_makedev" 1>&4
-
- if test $ac_cv_header_sys_types_h_makedev = no; then
- ! ac_safe=`/bin/echo "sys/mkdev.h" | tr './\055' '___'`
- ! /bin/echo $ac_n "checking for sys/mkdev.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 1015 "configure"
- #include "confdefs.h"
- #include <sys/mkdev.h>
- EOF
- ***************
- *** 1019,1049 ****
- 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 MAJOR_IN_MKDEV 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
-
- if test $ac_cv_header_sys_mkdev_h = no; then
- ! ac_safe=`echo "sys/sysmacros.h" | tr './\055' '___'`
- ! echo $ac_n "checking for sys/sysmacros.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 1047 "configure"
- #include "confdefs.h"
- #include <sys/sysmacros.h>
- EOF
- --- 1021,1051 ----
- 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 MAJOR_IN_MKDEV 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
-
- if test $ac_cv_header_sys_mkdev_h = no; then
- ! ac_safe=`/bin/echo "sys/sysmacros.h" | tr './\055' '___'`
- ! /bin/echo $ac_n "checking for sys/sysmacros.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 1049 "configure"
- #include "confdefs.h"
- #include <sys/sysmacros.h>
- EOF
- ***************
- *** 1053,1072 ****
- 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 MAJOR_IN_SYSMACROS 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- fi
- --- 1055,1074 ----
- 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 MAJOR_IN_SYSMACROS 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- fi
- ***************
- *** 1075,1087 ****
- ac_header_dirent=no
- for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h
- do
- ! ac_safe=`echo "$ac_hdr" | tr './\055' '___'`
- ! echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1085 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <$ac_hdr>
- --- 1077,1089 ----
- ac_header_dirent=no
- for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h
- do
- ! ac_safe=`/bin/echo "$ac_hdr" | tr './\055' '___'`
- ! /bin/echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1087 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <$ac_hdr>
- ***************
- *** 1101,1126 ****
-
- fi
- if eval "test \"`echo '$ac_cv_header_dirent_'$ac_safe`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- ! ac_tr_hdr=HAVE_`echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
- cat >> confdefs.h <<EOF
- #define $ac_tr_hdr 1
- EOF
- ac_header_dirent=$ac_hdr; break
- else
- ! echo "$ac_t""no" 1>&4
- fi
- done
- # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
- if test $ac_header_dirent = dirent.h; then
- ! echo $ac_n "checking for -ldir""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_dir'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -ldir "
- cat > conftest.$ac_ext <<EOF
- ! #line 1124 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 1103,1128 ----
-
- fi
- if eval "test \"`echo '$ac_cv_header_dirent_'$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
- ac_header_dirent=$ac_hdr; break
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
- done
- # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
- if test $ac_header_dirent = dirent.h; then
- ! /bin/echo $ac_n "checking for -ldir""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_dir'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -ldir "
- cat > conftest.$ac_ext <<EOF
- ! #line 1126 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 1140,1160 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'dir`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -ldir"
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- else
- ! echo $ac_n "checking for -lx""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_x'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lx "
- cat > conftest.$ac_ext <<EOF
- ! #line 1158 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 1142,1162 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'dir`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -ldir"
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- else
- ! /bin/echo $ac_n "checking for -lx""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_x'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lx "
- cat > conftest.$ac_ext <<EOF
- ! #line 1160 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 1174,1193 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'x`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -lx"
- else
- ! echo "$ac_t""no" 1>&4
- 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 1191 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/stat.h>
- --- 1176,1195 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'x`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -lx"
- else
- ! /bin/echo "$ac_t""no" 1>&4
- 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 1193 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/stat.h>
- ***************
- *** 1226,1232 ****
- 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
- --- 1228,1234 ----
- 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
- ***************
- *** 1234,1245 ****
-
- fi
-
- ! echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_sys_wait_h'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1243 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/wait.h>
- --- 1236,1247 ----
-
- fi
-
- ! /bin/echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_header_sys_wait_h'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1245 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/wait.h>
- ***************
- *** 1266,1272 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_header_sys_wait_h" 1>&4
- if test $ac_cv_header_sys_wait_h = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_SYS_WAIT_H 1
- --- 1268,1274 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_header_sys_wait_h" 1>&4
- if test $ac_cv_header_sys_wait_h = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_SYS_WAIT_H 1
- ***************
- *** 1275,1285 ****
- fi
-
-
- ! echo $ac_n "checking how to get filesystem type""... $ac_c" 1>&4
- fstype=no
- # The order of these tests is important.
- cat > conftest.$ac_ext <<EOF
- ! #line 1283 "configure"
- #include "confdefs.h"
- #include <sys/statvfs.h>
- #include <sys/fstyp.h>
- --- 1277,1287 ----
- fi
-
-
- ! /bin/echo $ac_n "checking how to get filesystem type""... $ac_c" 1>&4
- fstype=no
- # The order of these tests is important.
- cat > conftest.$ac_ext <<EOF
- ! #line 1285 "configure"
- #include "confdefs.h"
- #include <sys/statvfs.h>
- #include <sys/fstyp.h>
- ***************
- *** 1293,1304 ****
- EOF
- fstype=SVR4
- else
- ! echo "$ac_err" >&5
- fi
- rm -f conftest*
- if test $fstype = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1302 "configure"
- #include "confdefs.h"
- #include <sys/statfs.h>
- #include <sys/fstyp.h>
- --- 1295,1306 ----
- EOF
- fstype=SVR4
- else
- ! /bin/echo "$ac_err" >&5
- fi
- rm -f conftest*
- if test $fstype = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1304 "configure"
- #include "confdefs.h"
- #include <sys/statfs.h>
- #include <sys/fstyp.h>
- ***************
- *** 1312,1324 ****
- EOF
- fstype=SVR3
- else
- ! echo "$ac_err" >&5
- fi
- rm -f conftest*
- fi
- if test $fstype = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1322 "configure"
- #include "confdefs.h"
- #include <sys/statfs.h>
- #include <sys/vmount.h>
- --- 1314,1326 ----
- EOF
- fstype=SVR3
- else
- ! /bin/echo "$ac_err" >&5
- fi
- rm -f conftest*
- fi
- if test $fstype = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1324 "configure"
- #include "confdefs.h"
- #include <sys/statfs.h>
- #include <sys/vmount.h>
- ***************
- *** 1332,1344 ****
- EOF
- fstype=AIX
- else
- ! echo "$ac_err" >&5
- fi
- rm -f conftest*
- fi
- if test $fstype = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1342 "configure"
- #include "confdefs.h"
- #include <mntent.h>
- EOF
- --- 1334,1346 ----
- EOF
- fstype=AIX
- else
- ! /bin/echo "$ac_err" >&5
- fi
- rm -f conftest*
- fi
- if test $fstype = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1344 "configure"
- #include "confdefs.h"
- #include <mntent.h>
- EOF
- ***************
- *** 1351,1363 ****
- EOF
- fstype=4.3BSD
- else
- ! echo "$ac_err" >&5
- fi
- rm -f conftest*
- fi
- if test $fstype = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1361 "configure"
- #include "confdefs.h"
- #include <sys/mount.h>
- EOF
- --- 1353,1365 ----
- EOF
- fstype=4.3BSD
- else
- ! /bin/echo "$ac_err" >&5
- fi
- rm -f conftest*
- fi
- if test $fstype = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1363 "configure"
- #include "confdefs.h"
- #include <sys/mount.h>
- EOF
- ***************
- *** 1374,1380 ****
- fi
- if test $fstype = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1378 "configure"
- #include "confdefs.h"
- #include <sys/mount.h>
- #include <sys/fs_types.h>
- --- 1376,1382 ----
- fi
- if test $fstype = no; then
- cat > conftest.$ac_ext <<EOF
- ! #line 1380 "configure"
- #include "confdefs.h"
- #include <sys/mount.h>
- #include <sys/fs_types.h>
- ***************
- *** 1388,1406 ****
- EOF
- fstype=Ultrix
- else
- ! echo "$ac_err" >&5
- fi
- rm -f conftest*
- fi
- ! echo "$ac_t""$fstype" 1>&4
-
-
- ! 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 1404 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- EOF
- --- 1390,1408 ----
- EOF
- fstype=Ultrix
- else
- ! /bin/echo "$ac_err" >&5
- fi
- rm -f conftest*
- fi
- ! /bin/echo "$ac_t""$fstype" 1>&4
-
-
- ! /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 1406 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- EOF
- ***************
- *** 1415,1421 ****
- 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
- --- 1417,1423 ----
- 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
- ***************
- *** 1427,1438 ****
-
- fi
-
- ! 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 1436 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- --- 1429,1440 ----
-
- fi
-
- ! /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 1438 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- ***************
- *** 1450,1456 ****
- 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
- --- 1452,1458 ----
- 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
- ***************
- *** 1458,1469 ****
-
- fi
-
- ! echo $ac_n "checking for pid_t""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_pid_t'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1467 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- --- 1460,1471 ----
-
- fi
-
- ! /bin/echo $ac_n "checking for pid_t""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_pid_t'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1469 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- ***************
- *** 1481,1487 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_type_pid_t" 1>&4
- if test $ac_cv_type_pid_t = no; then
- cat >> confdefs.h <<\EOF
- #define pid_t int
- --- 1483,1489 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_type_pid_t" 1>&4
- if test $ac_cv_type_pid_t = no; then
- cat >> confdefs.h <<\EOF
- #define pid_t int
- ***************
- *** 1489,1500 ****
-
- fi
-
- ! echo $ac_n "checking for ino_t""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_ino_t'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1498 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- --- 1491,1502 ----
-
- fi
-
- ! /bin/echo $ac_n "checking for ino_t""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_ino_t'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1500 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- ***************
- *** 1512,1518 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_type_ino_t" 1>&4
- if test $ac_cv_type_ino_t = no; then
- cat >> confdefs.h <<\EOF
- #define ino_t unsigned long
- --- 1514,1520 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_type_ino_t" 1>&4
- if test $ac_cv_type_ino_t = no; then
- cat >> confdefs.h <<\EOF
- #define ino_t unsigned long
- ***************
- *** 1520,1531 ****
-
- fi
-
- ! echo $ac_n "checking for dev_t""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_dev_t'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1529 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- --- 1522,1533 ----
-
- fi
-
- ! /bin/echo $ac_n "checking for dev_t""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_type_dev_t'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1531 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- ***************
- *** 1543,1549 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_type_dev_t" 1>&4
- if test $ac_cv_type_dev_t = no; then
- cat >> confdefs.h <<\EOF
- #define dev_t unsigned long
- --- 1545,1551 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_type_dev_t" 1>&4
- if test $ac_cv_type_dev_t = no; then
- cat >> confdefs.h <<\EOF
- #define dev_t unsigned long
- ***************
- *** 1551,1562 ****
-
- fi
-
- ! echo $ac_n "checking for st_blocks in struct stat""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_struct_st_blocks'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1560 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/stat.h>
- --- 1553,1564 ----
-
- fi
-
- ! /bin/echo $ac_n "checking for st_blocks in struct stat""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_struct_st_blocks'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1562 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/stat.h>
- ***************
- *** 1575,1581 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_struct_st_blocks" 1>&4
- if test $ac_cv_struct_st_blocks = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_ST_BLOCKS 1
- --- 1577,1583 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_struct_st_blocks" 1>&4
- if test $ac_cv_struct_st_blocks = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_ST_BLOCKS 1
- ***************
- *** 1585,1596 ****
- LIBOBJS="$LIBOBJS fileblocks.o"
- fi
-
- ! echo $ac_n "checking for st_rdev in struct stat""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_struct_st_rdev'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1594 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/stat.h>
- --- 1587,1598 ----
- LIBOBJS="$LIBOBJS fileblocks.o"
- fi
-
- ! /bin/echo $ac_n "checking for st_rdev in struct stat""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_struct_st_rdev'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1596 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/stat.h>
- ***************
- *** 1609,1615 ****
- rm -f conftest*
-
- fi
- ! echo "$ac_t""$ac_cv_struct_st_rdev" 1>&4
- if test $ac_cv_struct_st_rdev = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_ST_RDEV 1
- --- 1611,1617 ----
- rm -f conftest*
-
- fi
- ! /bin/echo "$ac_t""$ac_cv_struct_st_rdev" 1>&4
- if test $ac_cv_struct_st_rdev = yes; then
- cat >> confdefs.h <<\EOF
- #define HAVE_ST_RDEV 1
- ***************
- *** 1617,1628 ****
-
- 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 1626 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <time.h>
- --- 1619,1630 ----
-
- 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 1628 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <time.h>
- ***************
- *** 1641,1647 ****
- 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
- --- 1643,1649 ----
- 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
- ***************
- *** 1649,1660 ****
-
- 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 1658 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <$ac_cv_struct_tm>
- --- 1651,1662 ----
-
- 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 1660 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <$ac_cv_struct_tm>
- ***************
- *** 1673,1691 ****
- 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 1689 "configure"
- #include "confdefs.h"
- #include <time.h>
- #ifndef tzname /* For SGI. */
- --- 1675,1693 ----
- 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 1691 "configure"
- #include "confdefs.h"
- #include <time.h>
- #ifndef tzname /* For SGI. */
- ***************
- *** 1706,1712 ****
- 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
- --- 1708,1714 ----
- 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
- ***************
- *** 1715,1726 ****
- fi
- fi
-
- ! echo $ac_n "checking for working const""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_const'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1724 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 1717,1728 ----
- fi
- fi
-
- ! /bin/echo $ac_n "checking for working const""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_c_const'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1726 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 1780,1786 ****
- 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
- --- 1782,1788 ----
- 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
- ***************
- *** 1792,1803 ****
-
- for ac_func in memcmp memset mktime stpcpy strdup strftime strspn strstr strtol
- do
- ! echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1801 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1794,1805 ----
-
- for ac_func in memcmp memset mktime stpcpy strdup strftime strspn strstr strtol
- do
- ! /bin/echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1803 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1828,1837 ****
-
- 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
-
- --- 1830,1839 ----
-
- 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
-
- ***************
- *** 1839,1850 ****
-
- for ac_func in fchdir getcwd strerror
- 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 1848 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1841,1852 ----
-
- for ac_func in fchdir getcwd strerror
- 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 1850 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1875,1900 ****
-
- 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
-
- # strftime is in -lintl on SCO UNIX.
- ! echo $ac_n "checking for -lintl""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_intl'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lintl "
- cat > conftest.$ac_ext <<EOF
- ! #line 1898 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 1877,1902 ----
-
- 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
-
- # strftime is in -lintl on SCO UNIX.
- ! /bin/echo $ac_n "checking for -lintl""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_intl'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lintl "
- cat > conftest.$ac_ext <<EOF
- ! #line 1900 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 1914,1931 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'intl`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -lintl"
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- ! echo $ac_n "checking for strftime""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_strftime'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1929 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1916,1933 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'intl`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -lintl"
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- ! /bin/echo $ac_n "checking for strftime""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_strftime'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1931 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 1956,1976 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'strftime`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_STRFTIME 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- ! echo $ac_n "checking for vprintf""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_vprintf'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1974 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 1958,1978 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'strftime`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_STRFTIME 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- ! /bin/echo $ac_n "checking for vprintf""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_vprintf'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 1976 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 2001,2022 ****
-
- 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 2020 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 2003,2024 ----
-
- 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 2022 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 2047,2071 ****
-
- 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 2069 "configure"
- #include "confdefs.h"
- #include <alloca.h>
- int main() { return 0; }
- --- 2049,2073 ----
-
- 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 2071 "configure"
- #include "confdefs.h"
- #include <alloca.h>
- int main() { return 0; }
- ***************
- *** 2083,2089 ****
- 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
- --- 2085,2091 ----
- 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
- ***************
- *** 2091,2102 ****
-
- 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 2100 "configure"
- #include "confdefs.h"
-
- #ifdef __GNUC__
- --- 2093,2104 ----
-
- 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 2102 "configure"
- #include "confdefs.h"
-
- #ifdef __GNUC__
- ***************
- *** 2130,2136 ****
- 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
- --- 2132,2138 ----
- 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
- ***************
- *** 2149,2160 ****
- 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 2158 "configure"
- #include "confdefs.h"
- #if defined(CRAY) && ! defined(CRAY2)
- webecray
- --- 2151,2162 ----
- 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 2160 "configure"
- #include "confdefs.h"
- #if defined(CRAY) && ! defined(CRAY2)
- webecray
- ***************
- *** 2174,2187 ****
- 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 2185 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 2176,2189 ----
- 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 2187 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 2212,2230 ****
-
- 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 2228 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 2214,2232 ----
-
- 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 2230 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 2255,2273 ****
-
- 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 2271 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 2257,2275 ----
-
- 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 2273 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 2298,2310 ****
-
- 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
- --- 2300,2312 ----
-
- 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
- ***************
- *** 2313,2327 ****
-
- 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 2325 "configure"
- #include "confdefs.h"
- find_stack_direction ()
- {
- --- 2315,2329 ----
-
- 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 2327 "configure"
- #include "confdefs.h"
- find_stack_direction ()
- {
- ***************
- *** 2349,2355 ****
- 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
- --- 2351,2357 ----
- 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
- ***************
- *** 2357,2370 ****
- fi
-
- # getmntent is in -lsun on Irix 4, -lseq on Dynix/PTX.
- ! 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 2368 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 2359,2372 ----
- fi
-
- # getmntent is in -lsun on Irix 4, -lseq on Dynix/PTX.
- ! /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 2370 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 2384,2401 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'sun`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -lsun"
- else
- ! echo "$ac_t""no" 1>&4
- ! echo $ac_n "checking for -lseq""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_seq'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lseq "
- cat > conftest.$ac_ext <<EOF
- ! #line 2399 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- --- 2386,2403 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'sun`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -lsun"
- else
- ! /bin/echo "$ac_t""no" 1>&4
- ! /bin/echo $ac_n "checking for -lseq""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_lib_seq'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS -lseq "
- cat > conftest.$ac_ext <<EOF
- ! #line 2401 "configure"
- #include "confdefs.h"
-
- int main() { return 0; }
- ***************
- *** 2415,2434 ****
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'seq`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -lseq"
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- fi
-
- ! echo $ac_n "checking for getmntent""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_getmntent'+set}'`\" = set"; then
- ! echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2432 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- --- 2417,2436 ----
-
- fi
- if eval "test \"`echo '$ac_cv_lib_'seq`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- LIBS="$LIBS -lseq"
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- fi
-
- ! /bin/echo $ac_n "checking for getmntent""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_getmntent'+set}'`\" = set"; then
- ! /bin/echo $ac_n "(cached) $ac_c" 1>&4
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2434 "configure"
- #include "confdefs.h"
- #include <ctype.h> /* Arbitrary system header to define __stub macros. */
- /* Override any gcc2 internal prototype to avoid an error. */
- ***************
- *** 2459,2482 ****
-
- fi
- if eval "test \"`echo '$ac_cv_func_'getmntent`\" = yes"; then
- ! echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_GETMNTENT 1
- EOF
-
- else
- ! echo "$ac_t""no" 1>&4
- fi
-
- ! echo $ac_n "checking whether closedir returns void""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_closedir_void'+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; }
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2480 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <$ac_header_dirent>
- --- 2461,2484 ----
-
- fi
- if eval "test \"`echo '$ac_cv_func_'getmntent`\" = yes"; then
- ! /bin/echo "$ac_t""yes" 1>&4
- cat >> confdefs.h <<\EOF
- #define HAVE_GETMNTENT 1
- EOF
-
- else
- ! /bin/echo "$ac_t""no" 1>&4
- fi
-
- ! /bin/echo $ac_n "checking whether closedir returns void""... $ac_c" 1>&4
- if eval "test \"`echo '${'ac_cv_func_closedir_void'+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; }
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2482 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <$ac_header_dirent>
- ***************
- *** 2491,2497 ****
- fi
- rm -fr conftest*
- fi
- ! echo "$ac_t""$ac_cv_func_closedir_void" 1>&4
- if test $ac_cv_func_closedir_void = yes; then
- cat >> confdefs.h <<\EOF
- #define CLOSEDIR_VOID 1
- --- 2493,2499 ----
- fi
- rm -fr conftest*
- fi
- ! /bin/echo "$ac_t""$ac_cv_func_closedir_void" 1>&4
- if test $ac_cv_func_closedir_void = yes; then
- cat >> confdefs.h <<\EOF
- #define CLOSEDIR_VOID 1
- ***************
- *** 2548,2554 ****
- : ${CONFIG_STATUS=./config.status}
-
- echo creating $CONFIG_STATUS
- ! rm -f $CONFIG_STATUS
- cat > $CONFIG_STATUS <<EOF
- #!/bin/sh
- # Generated automatically by configure.
- --- 2550,2558 ----
- : ${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.
- ***************
- *** 2569,2575 ****
- echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
- exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
- -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
- ! echo "$CONFIG_STATUS generated by autoconf version 2.1"
- exit 0 ;;
- -help | --help | --hel | --he | --h)
- echo "\$ac_cs_usage"; exit 0 ;;
- --- 2573,2579 ----
- 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 ;;
- ***************
- *** 2618,2638 ****
- 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
- --- 2622,2642 ----
- 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
- ***************
- *** 2640,2646 ****
- 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"
- --- 2644,2650 ----
- 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"
- ***************
- *** 2653,2659 ****
- 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" ;;
- --- 2657,2663 ----
- 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" ;;
- ***************
- *** 2691,2698 ****
- 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
-
- --- 2695,2702 ----
- 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
-
- ***************
- *** 2756,2762 ****
- 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
- --- 2760,2766 ----
- 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 findutils-4.1/doc/Makefile.in /gnu/src/amiga/findutils-4.1/doc/Makefile.in
- *** findutils-4.1/doc/Makefile.in Sat Nov 5 14:44:12 1994
- --- /gnu/src/amiga/findutils-4.1/doc/Makefile.in Thu Nov 17 11:11:58 1994
- ***************
- *** 25,36 ****
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- - libexecdir = $(exec_prefix)/libexec
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! localstatedir = $(prefix)/var
- libdir = $(exec_prefix)/lib
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- --- 25,39 ----
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! # Put this in /local, since $(prefix) might be on read-only media. -fnf
- ! localstatedir = /local/var
- libdir = $(exec_prefix)/lib
- + # It seems hokey to me to have the libexec dir visible at what is the
- + # equivalent of the root directory, so put it under libdir instead. -fnf
- + libexecdir = $(libdir)/libexec
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- diff -rc --new-file findutils-4.1/find/Makefile.in /gnu/src/amiga/findutils-4.1/find/Makefile.in
- *** findutils-4.1/find/Makefile.in Sat Nov 5 14:43:52 1994
- --- /gnu/src/amiga/findutils-4.1/find/Makefile.in Thu Nov 17 11:11:20 1994
- ***************
- *** 25,36 ****
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- - libexecdir = $(exec_prefix)/libexec
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! localstatedir = $(prefix)/var
- libdir = $(exec_prefix)/lib
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- --- 25,39 ----
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! # Put this in /local, since $(prefix) might be on read-only media. -fnf
- ! localstatedir = /local/var
- libdir = $(exec_prefix)/lib
- + # It seems hokey to me to have the libexec dir visible at what is the
- + # equivalent of the root directory, so put it under libdir instead. -fnf
- + libexecdir = $(libdir)/libexec
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- diff -rc --new-file findutils-4.1/find/find.c /gnu/src/amiga/findutils-4.1/find/find.c
- *** findutils-4.1/find/find.c Wed Oct 12 21:21:11 1994
- --- /gnu/src/amiga/findutils-4.1/find/find.c Sat Nov 12 08:47:34 1994
- ***************
- *** 131,137 ****
- }
- #endif /* DEBUG_STAT */
-
- ! void
- main (argc, argv)
- int argc;
- char *argv[];
- --- 131,137 ----
- }
- #endif /* DEBUG_STAT */
-
- ! int
- main (argc, argv)
- int argc;
- char *argv[];
- diff -rc --new-file findutils-4.1/find/fstype.c /gnu/src/amiga/findutils-4.1/find/fstype.c
- *** findutils-4.1/find/fstype.c Thu Nov 3 16:33:48 1994
- --- /gnu/src/amiga/findutils-4.1/find/fstype.c Sat Nov 12 09:38:56 1994
- ***************
- *** 48,55 ****
- --- 48,66 ----
- #endif
- #endif
-
- + /* The above "defs.h" includes "regex.h", which defines RE_DUP_MAX. However
- + on some systems, <param.h> includes <sys/syslimits.h>, which wants to
- + unconditionally define RE_DUP_MAX. So to work around this problem, we
- + save the value set by regex.h and then restore it later after including
- + param.h. This is a hack, but the alternative is to reorder the includes,
- + which is more dangerous. */
- + #define RE_DUP_MAX_SAVE RE_DUP_MAX
- + #undef RE_DUP_MAX
- +
- #ifdef FSTYPE_GETMNT /* Ultrix. */
- #include <sys/param.h>
- + #undef RE_DUP_MAX /* See notes above */
- + #define RE_DUP_MAX RE_DUP_MAX_SAVE
- #include <sys/mount.h>
- #include <sys/fs_types.h>
- #endif
- ***************
- *** 66,71 ****
- --- 77,84 ----
-
- #ifdef FSTYPE_STATFS /* 4.4BSD. */
- #include <sys/param.h> /* NetBSD needs this. */
- + #undef RE_DUP_MAX /* See notes above */
- + #define RE_DUP_MAX RE_DUP_MAX_SAVE
- #include <sys/mount.h>
-
- #ifndef MFSNAMELEN /* NetBSD defines this. */
- diff -rc --new-file findutils-4.1/find/pred.c /gnu/src/amiga/findutils-4.1/find/pred.c
- *** findutils-4.1/find/pred.c Wed Nov 2 20:59:23 1994
- --- /gnu/src/amiga/findutils-4.1/find/pred.c Sat Nov 12 09:27:27 1994
- ***************
- *** 19,29 ****
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <stdio.h>
- - #include <fnmatch.h>
- #include <signal.h>
- #include <pwd.h>
- #include <grp.h>
- #include "defs.h"
- #include "modetype.h"
- #include "wait.h"
-
- --- 19,32 ----
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <stdio.h>
- #include <signal.h>
- #include <pwd.h>
- #include <grp.h>
- #include "defs.h"
- + /* Put fnmatch.h after defs.h, since defs.h includes unistd.h, which on
- + some systems defines FNM_PATHNAME, which fnmatch.h then wants to undef
- + and do it's own way. */
- + #include <fnmatch.h>
- #include "modetype.h"
- #include "wait.h"
-
- ***************
- *** 1337,1343 ****
- signal (SIGCHLD, SIG_DFL);
- }
-
- ! child_pid = fork ();
- if (child_pid == -1)
- error (1, errno, "cannot fork");
- if (child_pid == 0)
- --- 1340,1346 ----
- signal (SIGCHLD, SIG_DFL);
- }
-
- ! child_pid = vfork ();
- if (child_pid == -1)
- error (1, errno, "cannot fork");
- if (child_pid == 0)
- diff -rc --new-file findutils-4.1/lib/Makefile.in /gnu/src/amiga/findutils-4.1/lib/Makefile.in
- *** findutils-4.1/lib/Makefile.in Sat Nov 5 14:43:58 1994
- --- /gnu/src/amiga/findutils-4.1/lib/Makefile.in Thu Nov 17 11:10:37 1994
- ***************
- *** 25,36 ****
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- - libexecdir = $(exec_prefix)/libexec
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! localstatedir = $(prefix)/var
- libdir = $(exec_prefix)/lib
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- --- 25,39 ----
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! # Put this in /local, since $(prefix) might be on read-only media. -fnf
- ! localstatedir = /local/var
- libdir = $(exec_prefix)/lib
- + # It seems hokey to me to have the libexec dir visible at what is the
- + # equivalent of the root directory, so put it under libdir instead. -fnf
- + libexecdir = $(libdir)/libexec
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- diff -rc --new-file findutils-4.1/lib/fnmatch.h /gnu/src/amiga/findutils-4.1/lib/fnmatch.h
- *** findutils-4.1/lib/fnmatch.h Mon Sep 26 22:03:58 1994
- --- /gnu/src/amiga/findutils-4.1/lib/fnmatch.h Sat Nov 12 08:47:36 1994
- ***************
- *** 41,46 ****
- --- 41,50 ----
- #undef FNM_NOESCAPE
- #undef FNM_PERIOD
-
- + #ifdef FNM_PATHNAME
- + #undef FNM_PATHNAME /* Defined in some <unistd.h> files? -fnf */
- + #endif
- +
- /* Bits set in the FLAGS argument to `fnmatch'. */
- #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */
- #define FNM_NOESCAPE (1 << 1) /* Backslashes don't quote special chars. */
- diff -rc --new-file findutils-4.1/locate/Makefile.in /gnu/src/amiga/findutils-4.1/locate/Makefile.in
- *** findutils-4.1/locate/Makefile.in Sat Nov 5 14:44:08 1994
- --- /gnu/src/amiga/findutils-4.1/locate/Makefile.in Thu Nov 17 11:11:47 1994
- ***************
- *** 25,36 ****
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- - libexecdir = $(exec_prefix)/libexec
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! localstatedir = $(prefix)/var
- libdir = $(exec_prefix)/lib
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- --- 25,39 ----
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! # Put this in /local, since $(prefix) might be on read-only media. -fnf
- ! localstatedir = /local/var
- libdir = $(exec_prefix)/lib
- + # It seems hokey to me to have the libexec dir visible at what is the
- + # equivalent of the root directory, so put it under libdir instead. -fnf
- + libexecdir = $(libdir)/libexec
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- diff -rc --new-file findutils-4.1/locate/bigram.c /gnu/src/amiga/findutils-4.1/locate/bigram.c
- *** findutils-4.1/locate/bigram.c Fri Oct 7 17:21:35 1994
- --- /gnu/src/amiga/findutils-4.1/locate/bigram.c Sat Nov 12 08:47:37 1994
- ***************
- *** 61,67 ****
- return s1 - start;
- }
-
- ! void
- main (argc, argv)
- int argc;
- char **argv;
- --- 61,67 ----
- return s1 - start;
- }
-
- ! int
- main (argc, argv)
- int argc;
- char **argv;
- diff -rc --new-file findutils-4.1/locate/code.c /gnu/src/amiga/findutils-4.1/locate/code.c
- *** findutils-4.1/locate/code.c Mon Sep 26 22:06:09 1994
- --- /gnu/src/amiga/findutils-4.1/locate/code.c Sat Nov 12 08:47:37 1994
- ***************
- *** 102,108 ****
- return s1 - start;
- }
-
- ! void
- main (argc, argv)
- int argc;
- char **argv;
- --- 102,108 ----
- return s1 - start;
- }
-
- ! int
- main (argc, argv)
- int argc;
- char **argv;
- diff -rc --new-file findutils-4.1/locate/frcode.c /gnu/src/amiga/findutils-4.1/locate/frcode.c
- *** findutils-4.1/locate/frcode.c Mon Sep 26 22:06:11 1994
- --- /gnu/src/amiga/findutils-4.1/locate/frcode.c Sat Nov 12 09:28:24 1994
- ***************
- *** 106,112 ****
- return s1 - start;
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 106,111 ----
- diff -rc --new-file findutils-4.1/locate/locate.c /gnu/src/amiga/findutils-4.1/locate/locate.c
- *** findutils-4.1/locate/locate.c Mon Sep 26 22:06:14 1994
- --- /gnu/src/amiga/findutils-4.1/locate/locate.c Sat Nov 12 08:47:38 1994
- ***************
- *** 355,361 ****
- {NULL, no_argument, NULL, 0}
- };
-
- ! void
- main (argc, argv)
- int argc;
- char **argv;
- --- 355,361 ----
- {NULL, no_argument, NULL, 0}
- };
-
- ! int
- main (argc, argv)
- int argc;
- char **argv;
- diff -rc --new-file findutils-4.1/locate/updatedb.sh /gnu/src/amiga/findutils-4.1/locate/updatedb.sh
- *** findutils-4.1/locate/updatedb.sh Wed Oct 5 02:24:18 1994
- --- /gnu/src/amiga/findutils-4.1/locate/updatedb.sh Sat Nov 12 08:55:15 1994
- ***************
- *** 63,73 ****
- : ${LOCATE_DB=@LOCATE_DB@}
-
- # Directory to hold intermediate files.
- ! if test -d /var/tmp; then
- ! : ${TMPDIR=/var/tmp}
- ! else
- ! : ${TMPDIR=/usr/tmp}
- ! fi
-
- # The user to search network directories as.
- : ${NETUSER=daemon}
- --- 63,69 ----
- : ${LOCATE_DB=@LOCATE_DB@}
-
- # Directory to hold intermediate files.
- ! : ${TMPDIR=/tmp}
-
- # The user to search network directories as.
- : ${NETUSER=daemon}
- ***************
- *** 84,90 ****
- : ${bigram=@bigram@}
- : ${code=@code@}
-
- ! PATH=$LIBEXECDIR:$BINDIR:/usr/ucb:/bin:/usr/bin:$PATH export PATH
-
- # Make and code the file list.
- # Sort case insensitively for users' convenience.
- --- 80,86 ----
- : ${bigram=@bigram@}
- : ${code=@code@}
-
- ! PATH=$LIBEXECDIR:$BINDIR:/bin:$PATH export PATH
-
- # Make and code the file list.
- # Sort case insensitively for users' convenience.
- diff -rc --new-file findutils-4.1/testsuite/Makefile.in /gnu/src/amiga/findutils-4.1/testsuite/Makefile.in
- *** findutils-4.1/testsuite/Makefile.in Sat Nov 5 14:44:25 1994
- --- /gnu/src/amiga/findutils-4.1/testsuite/Makefile.in Thu Nov 17 11:12:09 1994
- ***************
- *** 25,36 ****
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- - libexecdir = $(exec_prefix)/libexec
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! localstatedir = $(prefix)/var
- libdir = $(exec_prefix)/lib
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- --- 25,39 ----
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! # Put this in /local, since $(prefix) might be on read-only media. -fnf
- ! localstatedir = /local/var
- libdir = $(exec_prefix)/lib
- + # It seems hokey to me to have the libexec dir visible at what is the
- + # equivalent of the root directory, so put it under libdir instead. -fnf
- + libexecdir = $(libdir)/libexec
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- diff -rc --new-file findutils-4.1/xargs/Makefile.in /gnu/src/amiga/findutils-4.1/xargs/Makefile.in
- *** findutils-4.1/xargs/Makefile.in Sat Nov 5 14:44:18 1994
- --- /gnu/src/amiga/findutils-4.1/xargs/Makefile.in Thu Nov 17 11:11:37 1994
- ***************
- *** 25,36 ****
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- - libexecdir = $(exec_prefix)/libexec
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! localstatedir = $(prefix)/var
- libdir = $(exec_prefix)/lib
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- --- 25,39 ----
-
- bindir = $(exec_prefix)/bin
- sbindir = $(exec_prefix)/sbin
- datadir = $(prefix)/share
- sysconfdir = $(prefix)/etc
- sharedstatedir = $(prefix)/com
- ! # Put this in /local, since $(prefix) might be on read-only media. -fnf
- ! localstatedir = /local/var
- libdir = $(exec_prefix)/lib
- + # It seems hokey to me to have the libexec dir visible at what is the
- + # equivalent of the root directory, so put it under libdir instead. -fnf
- + libexecdir = $(libdir)/libexec
- infodir = $(prefix)/info
- mandir = $(prefix)/man
- includedir = $(prefix)/include
- diff -rc --new-file findutils-4.1/xargs/xargs.c /gnu/src/amiga/findutils-4.1/xargs/xargs.c
- *** findutils-4.1/xargs/xargs.c Fri Oct 7 17:21:39 1994
- --- /gnu/src/amiga/findutils-4.1/xargs/xargs.c Sat Nov 12 08:56:36 1994
- ***************
- *** 248,254 ****
- static long env_size P_ ((char **envp));
- static void usage P_ ((FILE * stream, int status));
-
- ! void
- main (argc, argv)
- int argc;
- char **argv;
- --- 248,254 ----
- static long env_size P_ ((char **envp));
- static void usage P_ ((FILE * stream, int status));
-
- ! int
- main (argc, argv)
- int argc;
- char **argv;
- ***************
- *** 752,763 ****
- print_args (false);
- /* If we run out of processes, wait for a child to return and
- try again. */
- ! while ((child = fork ()) < 0 && errno == EAGAIN && procs_executing)
- wait_for_proc (false);
- switch (child)
- {
- case -1:
- ! error (1, errno, "cannot fork");
-
- case 0: /* Child. */
- execvp (cmd_argv[0], cmd_argv);
- --- 752,763 ----
- print_args (false);
- /* If we run out of processes, wait for a child to return and
- try again. */
- ! while ((child = vfork ()) < 0 && errno == EAGAIN && procs_executing)
- wait_for_proc (false);
- switch (child)
- {
- case -1:
- ! error (1, errno, "cannot vfork");
-
- case 0: /* Child. */
- execvp (cmd_argv[0], cmd_argv);
-