home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
gnu
/
textutils-1.11-diffs.lha
/
GNU
/
src
/
diffs
/
textutils-1.11.diffs
Wrap
Text File
|
1995-01-21
|
83KB
|
2,972 lines
diff -rc --new-file textutils-1.11/INSTALL /gnu/src/amiga/textutils-1.11/INSTALL
*** textutils-1.11/INSTALL Tue Oct 18 20:30:28 1994
--- /gnu/src/amiga/textutils-1.11/INSTALL Sat Nov 12 23:03:36 1994
***************
*** 58,64 ****
CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
Or on systems that have the `env' program, you can do it like this:
! env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
Using a Different Build Directory
=================================
--- 58,64 ----
CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
Or on systems that have the `env' program, you can do it like this:
! env CPPFLAGS=-I/gnu/include LDFLAGS=-s ./configure
Using a Different Build Directory
=================================
***************
*** 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 textutils-1.11/Product-Info /gnu/src/amiga/textutils-1.11/Product-Info
*** textutils-1.11/Product-Info Thu Jan 1 00:00:00 1970
--- /gnu/src/amiga/textutils-1.11/Product-Info Fri Nov 18 12:49:35 1994
***************
*** 0 ****
--- 1,26 ----
+ .name
+ textutils
+ .fullname
+ GNU text processing utilities
+ .type
+ Text Processing
+ .short
+ GNU text processing utilities
+ .description
+ These are the GNU text file (actually, file contents) processing
+ utilities. Most of these programs have significant advantages over
+ their Unix counterparts, such as greater speed, additional options,
+ and fewer arbitrary limits. The programs that can be built with this
+ package are: cat, cksum, comm, csplit, cut, expand, fold, head, join,
+ nl, od paste, pr, sort, split, sum, tac, tail, tr, unexpand, uniq, and
+ wc. The cmp program has moved to the GNU diff distribution.
+ .version
+ 1.11
+ .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 textutils-1.11/configure /gnu/src/amiga/textutils-1.11/configure
*** textutils-1.11/configure Tue Nov 1 12:03:33 1994
--- /gnu/src/amiga/textutils-1.11/configure Sat Nov 12 23:06:00 1994
***************
*** 1,7 ****
#!/bin/sh
# Guess values for system-dependent variables and create Makefiles.
! # Generated automatically using autoconf version 2.0
# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
#
# This configure script is free software; the Free Software Foundation
--- 1,7 ----
#!/bin/sh
# Guess values for system-dependent variables and create Makefiles.
! # Generated automatically using autoconf version 2.1
# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
#
# This configure script is free software; the Free Software Foundation
***************
*** 9,48 ****
# Defaults:
ac_help=
! ac_default_prefix=/usr/local
# Any additions from configure.in:
- # Omit some internal or obsolete options to make the list less imposing.
- ac_usage="Usage: configure [options] [host]
- Options: [defaults in brackets after descriptions]
- Configuration:
- --cache-file=FILE cache test results in FILE
- --help print this message
- --no-create do not create output files
- --quiet, --silent do not print \`checking...' messages
- --version print the version of autoconf that created configure
- Directory and file names:
- --prefix=PREFIX install architecture-independent files in PREFIX
- [$ac_default_prefix]
- --exec-prefix=PREFIX install architecture-dependent files in PREFIX
- [same as prefix]
- --srcdir=DIR find the sources in DIR [configure dir or ..]
- --program-prefix=PREFIX prepend PREFIX to installed program names
- --program-suffix=SUFFIX append SUFFIX to installed program names
- --program-transform-name=PROGRAM run sed PROGRAM on installed program names
- Host type:
- --build=BUILD configure for building on BUILD [BUILD=HOST]
- --host=HOST configure for HOST [guessed]
- --target=TARGET configure for TARGET [TARGET=HOST]
- Features and packages:
- --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
- --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
- --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
- --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
- --x-includes=DIR X include files are in DIR
- --x-libraries=DIR X library files are in DIR
- --enable and --with options recognized:$ac_help"
-
# Initialize some variables set by options.
# The variables have the same names as the options, with
# dashes changed to underlines.
--- 9,17 ----
# Defaults:
ac_help=
! ac_default_prefix=/gnu
# Any additions from configure.in:
# Initialize some variables set by options.
# The variables have the same names as the options, with
# dashes changed to underlines.
***************
*** 80,86 ****
fi
case "$ac_option" in
! -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) ac_optarg= ;;
esac
--- 49,55 ----
fi
case "$ac_option" in
! -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) ac_optarg= ;;
esac
***************
*** 101,121 ****
cache_file="$ac_optarg" ;;
-disable-* | --disable-*)
! ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
# Reject names that are not valid shell variable names.
! if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
{ echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
fi
! ac_feature=`echo $ac_feature| sed 's/-/_/g'`
eval "enable_${ac_feature}=no" ;;
-enable-* | --enable-*)
! ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
# Reject names that are not valid shell variable names.
! if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
{ echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
fi
! ac_feature=`echo $ac_feature| sed 's/-/_/g'`
case "$ac_option" in
*=*) ;;
*) ac_optarg=yes ;;
--- 70,90 ----
cache_file="$ac_optarg" ;;
-disable-* | --disable-*)
! ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
# Reject names that are not valid shell variable names.
! if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
{ echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
fi
! ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
eval "enable_${ac_feature}=no" ;;
-enable-* | --enable-*)
! ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
# Reject names that are not valid shell variable names.
! if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
{ echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
fi
! ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
case "$ac_option" in
*=*) ;;
*) ac_optarg=yes ;;
***************
*** 136,143 ****
with_gas=yes ;;
-help | --help | --hel | --he)
cat << EOF
! $ac_usage
EOF
exit 0 ;;
--- 105,142 ----
with_gas=yes ;;
-help | --help | --hel | --he)
+ # Omit some internal or obsolete options to make the list less imposing.
+ # This message is too long to be a string in the A/UX 3.1 sh.
cat << EOF
! Usage: configure [options] [host]
! Options: [defaults in brackets after descriptions]
! Configuration:
! --cache-file=FILE cache test results in FILE
! --help print this message
! --no-create do not create output files
! --quiet, --silent do not print \`checking...' messages
! --version print the version of autoconf that created configure
! Directory and file names:
! --prefix=PREFIX install architecture-independent files in PREFIX
! [$ac_default_prefix]
! --exec-prefix=PREFIX install architecture-dependent files in PREFIX
! [same as prefix]
! --srcdir=DIR find the sources in DIR [configure dir or ..]
! --program-prefix=PREFIX prepend PREFIX to installed program names
! --program-suffix=SUFFIX append SUFFIX to installed program names
! --program-transform-name=PROGRAM run sed PROGRAM on installed program names
! Host type:
! --build=BUILD configure for building on BUILD [BUILD=HOST]
! --host=HOST configure for HOST [guessed]
! --target=TARGET configure for TARGET [TARGET=HOST]
! Features and packages:
! --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
! --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
! --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
! --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
! --x-includes=DIR X include files are in DIR
! --x-libraries=DIR X library files are in DIR
! --enable and --with options recognized:$ac_help
EOF
exit 0 ;;
***************
*** 217,232 ****
verbose=yes ;;
-version | --version | --versio | --versi | --vers)
! echo "configure generated by autoconf version 2.0"
exit 0 ;;
-with-* | --with-*)
! ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
# Reject names that are not valid shell variable names.
! if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
{ echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
fi
! ac_package=`echo $ac_package| sed 's/-/_/g'`
case "$ac_option" in
*=*) ;;
*) ac_optarg=yes ;;
--- 216,231 ----
verbose=yes ;;
-version | --version | --versio | --versi | --vers)
! echo "configure generated by autoconf version 2.1"
exit 0 ;;
-with-* | --with-*)
! ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
# Reject names that are not valid shell variable names.
! if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
{ echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
fi
! ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
case "$ac_option" in
*=*) ;;
*) ac_optarg=yes ;;
***************
*** 234,245 ****
eval "with_${ac_package}='$ac_optarg'" ;;
-without-* | --without-*)
! ac_package=`echo $ac_option|sed -e 's/-*without-//'`
# Reject names that are not valid shell variable names.
! if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
{ echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
fi
! ac_package=`echo $ac_package| sed 's/-/_/g'`
eval "with_${ac_package}=no" ;;
--x)
--- 233,244 ----
eval "with_${ac_package}='$ac_optarg'" ;;
-without-* | --without-*)
! ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
# Reject names that are not valid shell variable names.
! if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
{ echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
fi
! ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
eval "with_${ac_package}=no" ;;
--x)
***************
*** 264,270 ****
;;
*)
! if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
echo "configure: warning: $ac_option: invalid host type" 1>&2
fi
if test "x$nonopt" != xNONE; then
--- 263,269 ----
;;
*)
! if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
echo "configure: warning: $ac_option: invalid host type" 1>&2
fi
if test "x$nonopt" != xNONE; then
***************
*** 277,283 ****
done
if test -n "$ac_prev"; then
! { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
fi
trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
--- 276,282 ----
done
if test -n "$ac_prev"; then
! { echo "configure: error: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
fi
trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
***************
*** 327,333 ****
# confdefs.h avoids OS command line length limits that DEFS can exceed.
rm -rf conftest* confdefs.h
# AIX cpp loses on an empty file, so make sure it contains at least a newline.
! echo > confdefs.h
# A filename unique to this package, relative to the directory that
# configure is in, which we can look for to find out if srcdir is correct.
--- 326,332 ----
# confdefs.h avoids OS command line length limits that DEFS can exceed.
rm -rf conftest* confdefs.h
# AIX cpp loses on an empty file, so make sure it contains at least a newline.
! /bin/echo > confdefs.h
# A filename unique to this package, relative to the directory that
# configure is in, which we can look for to find out if srcdir is correct.
***************
*** 338,344 ****
ac_srcdir_defaulted=yes
# Try the directory containing this script, then its parent.
ac_prog=$0
! ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
srcdir=$ac_confdir
if test ! -r $srcdir/$ac_unique_file; then
--- 337,343 ----
ac_srcdir_defaulted=yes
# Try the directory containing this script, then its parent.
ac_prog=$0
! ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
srcdir=$ac_confdir
if test ! -r $srcdir/$ac_unique_file; then
***************
*** 354,360 ****
{ 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
--- 353,359 ----
{ 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
***************
*** 402,410 ****
# 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.
--- 401,409 ----
# 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.
***************
*** 423,437 ****
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__
--- 422,436 ----
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__
***************
*** 444,456 ****
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
--- 443,455 ----
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
***************
*** 461,471 ****
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
--- 460,472 ----
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
***************
*** 502,516 ****
# 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
--- 503,517 ----
# 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
***************
*** 535,541 ****
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.
--- 536,542 ----
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.
***************
*** 543,556 ****
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
! echo $ac_n "checking whether ${MAKE-make} sets \$MAKE""... $ac_c" 1>&4
set dummy ${MAKE-make}; ac_make=$2
if eval "test \"`echo '${'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftestmake <<\EOF
all:
! @echo 'ac_maketemp="${MAKE}"'
EOF
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
--- 544,557 ----
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
! /bin/echo $ac_n "checking whether ${MAKE-make} sets \$MAKE""... $ac_c" 1>&4
set dummy ${MAKE-make}; ac_make=$2
if eval "test \"`echo '${'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftestmake <<\EOF
all:
! @/bin/echo 'ac_maketemp="${MAKE}"'
EOF
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
***************
*** 561,582 ****
fi
rm -f conftestmake
fi
! if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
! echo "$ac_t""yes" 1>&4
SET_MAKE=
else
! echo "$ac_t""no" 1>&4
SET_MAKE="MAKE=${MAKE-make}"
fi
! 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.
--- 562,583 ----
fi
rm -f conftestmake
fi
! if eval "test \"`/bin/echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
! /bin/echo "$ac_t""yes" 1>&4
SET_MAKE=
else
! /bin/echo "$ac_t""no" 1>&4
SET_MAKE="MAKE=${MAKE-make}"
fi
! /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.
***************
*** 584,590 ****
# On the NeXT, cc -E runs the code through the compiler's parser,
# not just through cpp.
cat > conftest.$ac_ext <<EOF
! #line 588 "configure"
#include "confdefs.h"
#include <assert.h>
Syntax Error
--- 585,591 ----
# On the NeXT, cc -E runs the code through the compiler's parser,
# not just through cpp.
cat > conftest.$ac_ext <<EOF
! #line 589 "configure"
#include "confdefs.h"
#include <assert.h>
Syntax Error
***************
*** 594,604 ****
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 602 "configure"
#include "confdefs.h"
#include <assert.h>
Syntax Error
--- 595,605 ----
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 603 "configure"
#include "confdefs.h"
#include <assert.h>
Syntax Error
***************
*** 608,614 ****
if test -z "$ac_err"; then
:
else
! echo "$ac_err" >&5
rm -rf conftest*
CPP=/lib/cpp
fi
--- 609,615 ----
if test -z "$ac_err"; then
:
else
! /bin/echo "$ac_err" >&5
rm -rf conftest*
CPP=/lib/cpp
fi
***************
*** 619,634 ****
fi
fi
CPP="$ac_cv_prog_CPP"
! echo "$ac_t""$CPP" 1>&4
if test $ac_cv_prog_gcc = yes; then
! echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
ac_pattern="Autoconf.*'x'"
cat > conftest.$ac_ext <<EOF
! #line 632 "configure"
#include "confdefs.h"
#include <sgtty.h>
Autoconf TIOCGETP
--- 620,635 ----
fi
fi
CPP="$ac_cv_prog_CPP"
! /bin/echo "$ac_t""$CPP" 1>&4
if test $ac_cv_prog_gcc = yes; then
! /bin/echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
ac_pattern="Autoconf.*'x'"
cat > conftest.$ac_ext <<EOF
! #line 633 "configure"
#include "confdefs.h"
#include <sgtty.h>
Autoconf TIOCGETP
***************
*** 646,652 ****
if test $ac_cv_prog_gcc_traditional = no; then
cat > conftest.$ac_ext <<EOF
! #line 650 "configure"
#include "confdefs.h"
#include <termio.h>
Autoconf TCGETA
--- 647,653 ----
if test $ac_cv_prog_gcc_traditional = no; then
cat > conftest.$ac_ext <<EOF
! #line 651 "configure"
#include "confdefs.h"
#include <termio.h>
Autoconf TCGETA
***************
*** 660,666 ****
fi
fi
! echo "$ac_t""$ac_cv_prog_gcc_traditional" 1>&4
if test $ac_cv_prog_gcc_traditional = yes; then
CC="$CC -traditional"
fi
--- 661,667 ----
fi
fi
! /bin/echo "$ac_t""$ac_cv_prog_gcc_traditional" 1>&4
if test $ac_cv_prog_gcc_traditional = yes; then
CC="$CC -traditional"
fi
***************
*** 668,676 ****
# 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.
--- 669,677 ----
# 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.
***************
*** 689,702 ****
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 for AIX""... $ac_c" 1>&4
cat > conftest.$ac_ext <<EOF
! #line 700 "configure"
#include "confdefs.h"
#ifdef _AIX
yes
--- 690,703 ----
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 for AIX""... $ac_c" 1>&4
cat > conftest.$ac_ext <<EOF
! #line 701 "configure"
#include "confdefs.h"
#ifdef _AIX
yes
***************
*** 706,729 ****
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 727 "configure"
#include "confdefs.h"
#include <minix/config.h>
EOF
--- 707,730 ----
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 728 "configure"
#include "confdefs.h"
#include <minix/config.h>
EOF
***************
*** 733,749 ****
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
--- 734,750 ----
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
***************
*** 762,772 ****
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
--- 763,773 ----
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
***************
*** 778,797 ****
CC="$CC -Xp"
fi
else
! echo "$ac_t""no" 1>&4
ISC=
fi
for ac_hdr in limits.h string.h memory.h fcntl.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 795 "configure"
#include "confdefs.h"
#include <$ac_hdr>
EOF
--- 779,798 ----
CC="$CC -Xp"
fi
else
! /bin/echo "$ac_t""no" 1>&4
ISC=
fi
for ac_hdr in limits.h string.h memory.h fcntl.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 796 "configure"
#include "confdefs.h"
#include <$ac_hdr>
EOF
***************
*** 801,830 ****
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
! 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 828 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/stat.h>
--- 802,831 ----
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
! /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 829 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/stat.h>
***************
*** 863,869 ****
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
--- 864,870 ----
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
***************
*** 872,886 ****
fi
# If we cannot run a trivial program, we must be cross compiling.
! echo $ac_n "checking whether cross-compiling""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_c_cross'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
if test "$cross_compiling" = yes; then
ac_cv_cross=yes
else
cat > conftest.$ac_ext <<EOF
! #line 884 "configure"
#include "confdefs.h"
main(){return(0);}
EOF
--- 873,887 ----
fi
# If we cannot run a trivial program, we must be cross compiling.
! /bin/echo $ac_n "checking whether cross-compiling""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_c_cross'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
if test "$cross_compiling" = yes; then
ac_cv_cross=yes
else
cat > conftest.$ac_ext <<EOF
! #line 885 "configure"
#include "confdefs.h"
main(){return(0);}
EOF
***************
*** 894,907 ****
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 905 "configure"
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
--- 895,908 ----
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 906 "configure"
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
***************
*** 914,920 ****
rm -rf conftest*
ac_cv_header_stdc=yes
else
! echo "$ac_err" >&5
rm -rf conftest*
ac_cv_header_stdc=no
fi
--- 915,921 ----
rm -rf conftest*
ac_cv_header_stdc=yes
else
! /bin/echo "$ac_err" >&5
rm -rf conftest*
ac_cv_header_stdc=no
fi
***************
*** 923,929 ****
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 927 "configure"
#include "confdefs.h"
#include <string.h>
EOF
--- 924,930 ----
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 928 "configure"
#include "confdefs.h"
#include <string.h>
EOF
***************
*** 941,947 ****
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 945 "configure"
#include "confdefs.h"
#include <stdlib.h>
EOF
--- 942,948 ----
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 946 "configure"
#include "confdefs.h"
#include <stdlib.h>
EOF
***************
*** 962,968 ****
ac_cv_header_stdc=no
else
cat > conftest.$ac_ext <<EOF
! #line 966 "configure"
#include "confdefs.h"
#include <ctype.h>
#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
--- 963,969 ----
ac_cv_header_stdc=no
else
cat > conftest.$ac_ext <<EOF
! #line 967 "configure"
#include "confdefs.h"
#include <ctype.h>
#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
***************
*** 983,989 ****
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
--- 984,990 ----
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
***************
*** 992,1006 ****
fi
! echo $ac_n "checking size of long""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_sizeof_long'+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 1004 "configure"
#include "confdefs.h"
#include <stdio.h>
main()
--- 993,1007 ----
fi
! /bin/echo $ac_n "checking size of long""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_sizeof_long'+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 1005 "configure"
#include "confdefs.h"
#include <stdio.h>
main()
***************
*** 1018,1038 ****
fi
rm -fr conftest*
fi
! echo "$ac_t""$ac_cv_sizeof_long" 1>&4
cat >> confdefs.h <<EOF
#define SIZEOF_LONG $ac_cv_sizeof_long
EOF
! echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_c_bigendian'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
if test "$cross_compiling" = yes; then
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
else
cat > conftest.$ac_ext <<EOF
! #line 1036 "configure"
#include "confdefs.h"
main () {
/* Are we little or big endian? From Harbison&Steele. */
--- 1019,1039 ----
fi
rm -fr conftest*
fi
! /bin/echo "$ac_t""$ac_cv_sizeof_long" 1>&4
cat >> confdefs.h <<EOF
#define SIZEOF_LONG $ac_cv_sizeof_long
EOF
! /bin/echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_c_bigendian'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
if test "$cross_compiling" = yes; then
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
else
cat > conftest.$ac_ext <<EOF
! #line 1037 "configure"
#include "confdefs.h"
main () {
/* Are we little or big endian? From Harbison&Steele. */
***************
*** 1054,1060 ****
fi
rm -fr conftest*
fi
! echo "$ac_t""$ac_cv_c_bigendian" 1>&4
if test $ac_cv_c_bigendian = yes; then
cat >> confdefs.h <<\EOF
#define WORDS_BIGENDIAN 1
--- 1055,1061 ----
fi
rm -fr conftest*
fi
! /bin/echo "$ac_t""$ac_cv_c_bigendian" 1>&4
if test $ac_cv_c_bigendian = yes; then
cat >> confdefs.h <<\EOF
#define WORDS_BIGENDIAN 1
***************
*** 1062,1073 ****
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 1071 "configure"
#include "confdefs.h"
int main() { return 0; }
--- 1063,1074 ----
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 1072 "configure"
#include "confdefs.h"
int main() { return 0; }
***************
*** 1127,1133 ****
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
--- 1128,1134 ----
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
***************
*** 1135,1143 ****
fi
! echo $ac_n "checking for long double""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_c_long_double'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
if test "$GCC" = yes; then
ac_cv_c_long_double=yes
--- 1136,1144 ----
fi
! /bin/echo $ac_n "checking for long double""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_c_long_double'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
if test "$GCC" = yes; then
ac_cv_c_long_double=yes
***************
*** 1146,1152 ****
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
else
cat > conftest.$ac_ext <<EOF
! #line 1150 "configure"
#include "confdefs.h"
int main() {
/* The Stardent Vistra knows sizeof(long double), but does not support it. */
--- 1147,1153 ----
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
else
cat > conftest.$ac_ext <<EOF
! #line 1151 "configure"
#include "confdefs.h"
int main() {
/* The Stardent Vistra knows sizeof(long double), but does not support it. */
***************
*** 1164,1170 ****
rm -fr conftest*
fi
fi
! echo "$ac_t""$ac_cv_c_long_double" 1>&4
if test $ac_cv_c_long_double = yes; then
cat >> confdefs.h <<\EOF
#define HAVE_LONG_DOUBLE 1
--- 1165,1171 ----
rm -fr conftest*
fi
fi
! /bin/echo "$ac_t""$ac_cv_c_long_double" 1>&4
if test $ac_cv_c_long_double = yes; then
cat >> confdefs.h <<\EOF
#define HAVE_LONG_DOUBLE 1
***************
*** 1175,1187 ****
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 1185 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <$ac_hdr>
--- 1176,1188 ----
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 1186 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <$ac_hdr>
***************
*** 1200,1226 ****
rm -f conftest*
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 1224 "configure"
#include "confdefs.h"
int main() { return 0; }
--- 1201,1227 ----
rm -f conftest*
fi
! if eval "test \"`/bin/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 1225 "configure"
#include "confdefs.h"
int main() { return 0; }
***************
*** 1240,1260 ****
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 1258 "configure"
#include "confdefs.h"
int main() { return 0; }
--- 1241,1261 ----
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 1259 "configure"
#include "confdefs.h"
int main() { return 0; }
***************
*** 1274,1293 ****
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 for st_blksize in struct stat""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_struct_st_blksize'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1291 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/stat.h>
--- 1275,1294 ----
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 for st_blksize in struct stat""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_struct_st_blksize'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1292 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/stat.h>
***************
*** 1306,1312 ****
rm -f conftest*
fi
! echo "$ac_t""$ac_cv_struct_st_blksize" 1>&4
if test $ac_cv_struct_st_blksize = yes; then
cat >> confdefs.h <<\EOF
#define HAVE_ST_BLKSIZE 1
--- 1307,1313 ----
rm -f conftest*
fi
! /bin/echo "$ac_t""$ac_cv_struct_st_blksize" 1>&4
if test $ac_cv_struct_st_blksize = yes; then
cat >> confdefs.h <<\EOF
#define HAVE_ST_BLKSIZE 1
***************
*** 1314,1325 ****
fi
! echo $ac_n "checking for off_t""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_type_off_t'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1323 "configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
--- 1315,1326 ----
fi
! /bin/echo $ac_n "checking for off_t""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_type_off_t'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1324 "configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
***************
*** 1337,1343 ****
rm -f conftest*
fi
! echo "$ac_t""$ac_cv_type_off_t" 1>&4
if test $ac_cv_type_off_t = no; then
cat >> confdefs.h <<\EOF
#define off_t long
--- 1338,1344 ----
rm -f conftest*
fi
! /bin/echo "$ac_t""$ac_cv_type_off_t" 1>&4
if test $ac_cv_type_off_t = no; then
cat >> confdefs.h <<\EOF
#define off_t long
***************
*** 1345,1356 ****
fi
! echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_type_signal'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1354 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <signal.h>
--- 1346,1357 ----
fi
! /bin/echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_type_signal'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1355 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <signal.h>
***************
*** 1373,1390 ****
rm -f conftest*
fi
! echo "$ac_t""$ac_cv_type_signal" 1>&4
cat >> confdefs.h <<EOF
#define RETSIGTYPE $ac_cv_type_signal
EOF
! echo $ac_n "checking for size_t""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_type_size_t'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1388 "configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
--- 1374,1391 ----
rm -f conftest*
fi
! /bin/echo "$ac_t""$ac_cv_type_signal" 1>&4
cat >> confdefs.h <<EOF
#define RETSIGTYPE $ac_cv_type_signal
EOF
! /bin/echo $ac_n "checking for size_t""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_type_size_t'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1389 "configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
***************
*** 1402,1408 ****
rm -f conftest*
fi
! echo "$ac_t""$ac_cv_type_size_t" 1>&4
if test $ac_cv_type_size_t = no; then
cat >> confdefs.h <<\EOF
#define size_t unsigned
--- 1403,1409 ----
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
***************
*** 1413,1426 ****
for ac_func in strerror isascii
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 1422 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
int main() { return 0; }
int t() {
--- 1414,1430 ----
for ac_func in strerror isascii
do
! /bin/echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1423 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
+ /* Override any gcc2 internal prototype to avoid an error. */
+ char $ac_func();
+
int main() { return 0; }
int t() {
***************
*** 1430,1437 ****
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
! /* Override any gcc2 internal prototype to avoid an error. */
! char $ac_func(); $ac_func();
#endif
; return 0; }
--- 1434,1440 ----
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
! $ac_func();
#endif
; return 0; }
***************
*** 1447,1471 ****
fi
if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
! echo "$ac_t""yes" 1>&4
! ac_tr_func=HAVE_`echo $ac_func | tr '[a-z]' '[A-Z]'`
cat >> confdefs.h <<EOF
#define $ac_tr_func 1
EOF
else
! echo "$ac_t""no" 1>&4
fi
done
# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
# for constant arguments. Useless!
! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_header_alloca_h'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1469 "configure"
#include "confdefs.h"
#include <alloca.h>
int main() { return 0; }
--- 1450,1474 ----
fi
if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
! /bin/echo "$ac_t""yes" 1>&4
! ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
cat >> confdefs.h <<EOF
#define $ac_tr_func 1
EOF
else
! /bin/echo "$ac_t""no" 1>&4
fi
done
# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
# for constant arguments. Useless!
! /bin/echo $ac_n "checking for working alloca.h""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_header_alloca_h'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1472 "configure"
#include "confdefs.h"
#include <alloca.h>
int main() { return 0; }
***************
*** 1483,1489 ****
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
--- 1486,1492 ----
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
***************
*** 1491,1502 ****
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 1500 "configure"
#include "confdefs.h"
#ifdef __GNUC__
--- 1494,1505 ----
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 1503 "configure"
#include "confdefs.h"
#ifdef __GNUC__
***************
*** 1530,1536 ****
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
--- 1533,1539 ----
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
***************
*** 1549,1560 ****
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 1558 "configure"
#include "confdefs.h"
#if defined(CRAY) && ! defined(CRAY2)
webecray
--- 1552,1563 ----
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 1561 "configure"
#include "confdefs.h"
#if defined(CRAY) && ! defined(CRAY2)
webecray
***************
*** 1574,1589 ****
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 1585 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
int main() { return 0; }
int t() {
--- 1577,1595 ----
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 1588 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
+ /* Override any gcc2 internal prototype to avoid an error. */
+ char _getb67();
+
int main() { return 0; }
int t() {
***************
*** 1593,1600 ****
#if defined (__stub__getb67) || defined (__stub____getb67)
choke me
#else
! /* Override any gcc2 internal prototype to avoid an error. */
! char _getb67(); _getb67();
#endif
; return 0; }
--- 1599,1605 ----
#if defined (__stub__getb67) || defined (__stub____getb67)
choke me
#else
! _getb67();
#endif
; return 0; }
***************
*** 1610,1630 ****
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 1626 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
int main() { return 0; }
int t() {
--- 1615,1638 ----
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 1631 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
+ /* Override any gcc2 internal prototype to avoid an error. */
+ char GETB67();
+
int main() { return 0; }
int t() {
***************
*** 1634,1641 ****
#if defined (__stub_GETB67) || defined (__stub___GETB67)
choke me
#else
! /* Override any gcc2 internal prototype to avoid an error. */
! char GETB67(); GETB67();
#endif
; return 0; }
--- 1642,1648 ----
#if defined (__stub_GETB67) || defined (__stub___GETB67)
choke me
#else
! GETB67();
#endif
; return 0; }
***************
*** 1651,1671 ****
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 1667 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
int main() { return 0; }
int t() {
--- 1658,1681 ----
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 1674 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
+ /* Override any gcc2 internal prototype to avoid an error. */
+ char getb67();
+
int main() { return 0; }
int t() {
***************
*** 1675,1682 ****
#if defined (__stub_getb67) || defined (__stub___getb67)
choke me
#else
! /* Override any gcc2 internal prototype to avoid an error. */
! char getb67(); getb67();
#endif
; return 0; }
--- 1685,1691 ----
#if defined (__stub_getb67) || defined (__stub___getb67)
choke me
#else
! getb67();
#endif
; return 0; }
***************
*** 1692,1704 ****
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
--- 1701,1713 ----
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
***************
*** 1707,1721 ****
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 1719 "configure"
#include "confdefs.h"
find_stack_direction ()
{
--- 1716,1730 ----
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 1728 "configure"
#include "confdefs.h"
find_stack_direction ()
{
***************
*** 1743,1764 ****
fi
rm -fr conftest*
fi
! echo "$ac_t""$ac_cv_c_stack_direction" 1>&4
cat >> confdefs.h <<EOF
#define STACK_DIRECTION $ac_cv_c_stack_direction
EOF
fi
! echo $ac_n "checking for 8-bit clean memcmp""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_func_memcmp'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
if test "$cross_compiling" = yes; then
ac_cv_func_memcmp=no
else
cat > conftest.$ac_ext <<EOF
! #line 1762 "configure"
#include "confdefs.h"
main()
--- 1752,1773 ----
fi
rm -fr conftest*
fi
! /bin/echo "$ac_t""$ac_cv_c_stack_direction" 1>&4
cat >> confdefs.h <<EOF
#define STACK_DIRECTION $ac_cv_c_stack_direction
EOF
fi
! /bin/echo $ac_n "checking for 8-bit clean memcmp""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_func_memcmp'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
if test "$cross_compiling" = yes; then
ac_cv_func_memcmp=no
else
cat > conftest.$ac_ext <<EOF
! #line 1771 "configure"
#include "confdefs.h"
main()
***************
*** 1777,1793 ****
fi
rm -fr conftest*
fi
! echo "$ac_t""$ac_cv_func_memcmp" 1>&4
test $ac_cv_func_memcmp = no && LIBOBJS="$LIBOBJS memcmp.o"
! echo $ac_n "checking for vprintf""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_func_vprintf'+set}'`\" = set"; then
! echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1789 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
int main() { return 0; }
int t() {
--- 1786,1805 ----
fi
rm -fr conftest*
fi
! /bin/echo "$ac_t""$ac_cv_func_memcmp" 1>&4
test $ac_cv_func_memcmp = no && LIBOBJS="$LIBOBJS memcmp.o"
! /bin/echo $ac_n "checking for vprintf""... $ac_c" 1>&4
if eval "test \"`echo '${'ac_cv_func_vprintf'+set}'`\" = set"; then
! /bin/echo $ac_n "(cached) $ac_c" 1>&4
else
cat > conftest.$ac_ext <<EOF
! #line 1798 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
+ /* Override any gcc2 internal prototype to avoid an error. */
+ char vprintf();
+
int main() { return 0; }
int t() {
***************
*** 1797,1804 ****
#if defined (__stub_vprintf) || defined (__stub___vprintf)
choke me
#else
! /* Override any gcc2 internal prototype to avoid an error. */
! char vprintf(); vprintf();
#endif
; return 0; }
--- 1809,1815 ----
#if defined (__stub_vprintf) || defined (__stub___vprintf)
choke me
#else
! vprintf();
#endif
; return 0; }
***************
*** 1814,1837 ****
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 1833 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
int main() { return 0; }
int t() {
--- 1825,1851 ----
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 1844 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
+ /* Override any gcc2 internal prototype to avoid an error. */
+ char _doprnt();
+
int main() { return 0; }
int t() {
***************
*** 1841,1848 ****
#if defined (__stub__doprnt) || defined (__stub____doprnt)
choke me
#else
! /* Override any gcc2 internal prototype to avoid an error. */
! char _doprnt(); _doprnt();
#endif
; return 0; }
--- 1855,1861 ----
#if defined (__stub__doprnt) || defined (__stub____doprnt)
choke me
#else
! _doprnt();
#endif
; return 0; }
***************
*** 1858,1884 ****
fi
if eval "test \"`echo '$ac_cv_func_'_doprnt`\" = yes"; then
! echo "$ac_t""yes" 1>&4
cat >> confdefs.h <<\EOF
#define HAVE_DOPRNT 1
EOF
else
! echo "$ac_t""no" 1>&4
fi
fi
for ac_func in bcopy memset stpcpy strtoul
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 1880 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
int main() { return 0; }
int t() {
--- 1871,1900 ----
fi
if eval "test \"`echo '$ac_cv_func_'_doprnt`\" = yes"; then
! /bin/echo "$ac_t""yes" 1>&4
cat >> confdefs.h <<\EOF
#define HAVE_DOPRNT 1
EOF
else
! /bin/echo "$ac_t""no" 1>&4
fi
fi
for ac_func in bcopy memset stpcpy strtoul
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 1893 "configure"
#include "confdefs.h"
#include <ctype.h> /* Arbitrary system header to define __stub macros. */
+ /* Override any gcc2 internal prototype to avoid an error. */
+ char $ac_func();
+
int main() { return 0; }
int t() {
***************
*** 1888,1895 ****
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
! /* Override any gcc2 internal prototype to avoid an error. */
! char $ac_func(); $ac_func();
#endif
; return 0; }
--- 1904,1910 ----
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
! $ac_func();
#endif
; return 0; }
***************
*** 1905,1914 ****
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
--- 1920,1929 ----
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
***************
*** 1963,1969 ****
: ${CONFIG_STATUS=./config.status}
echo creating $CONFIG_STATUS
! rm -f $CONFIG_STATUS
cat > $CONFIG_STATUS <<EOF
#!/bin/sh
# Generated automatically by configure.
--- 1978,1986 ----
: ${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.
***************
*** 1984,1990 ****
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.0"
exit 0 ;;
-help | --help | --hel | --he | --h)
echo "\$ac_cs_usage"; exit 0 ;;
--- 2001,2007 ----
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 ;;
***************
*** 2030,2050 ****
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
--- 2047,2067 ----
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
***************
*** 2052,2058 ****
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"
--- 2069,2075 ----
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"
***************
*** 2065,2071 ****
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" ;;
--- 2082,2088 ----
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" ;;
***************
*** 2103,2110 ****
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
--- 2120,2127 ----
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
***************
*** 2168,2174 ****
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
--- 2185,2191 ----
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 textutils-1.11/src/cat.c /gnu/src/amiga/textutils-1.11/src/cat.c
*** textutils-1.11/src/cat.c Tue Nov 1 04:40:25 1994
--- /gnu/src/amiga/textutils-1.11/src/cat.c Sat Nov 12 23:02:40 1994
***************
*** 112,118 ****
}
- void
main (argc, argv)
int argc;
char *argv[];
--- 112,117 ----
diff -rc --new-file textutils-1.11/src/cksum.c /gnu/src/amiga/textutils-1.11/src/cksum.c
*** textutils-1.11/src/cksum.c Wed Oct 19 03:02:26 1994
--- /gnu/src/amiga/textutils-1.11/src/cksum.c Sat Nov 12 23:02:41 1994
***************
*** 85,91 ****
return rem & 0xFFFFFFFF; /* Make it run on 64-bit machine. */
}
- void
main ()
{
int i;
--- 85,90 ----
***************
*** 283,289 ****
exit (status);
}
- void
main (argc, argv)
int argc;
char **argv;
--- 282,287 ----
diff -rc --new-file textutils-1.11/src/comm.c /gnu/src/amiga/textutils-1.11/src/comm.c
*** textutils-1.11/src/comm.c Wed Oct 19 03:02:27 1994
--- /gnu/src/amiga/textutils-1.11/src/comm.c Sat Nov 12 23:02:42 1994
***************
*** 58,64 ****
static void writeline ();
static void usage ();
- void
main (argc, argv)
int argc;
char *argv[];
--- 58,63 ----
diff -rc --new-file textutils-1.11/src/csplit.c /gnu/src/amiga/textutils-1.11/src/csplit.c
*** textutils-1.11/src/csplit.c Wed Oct 19 03:02:30 1994
--- /gnu/src/amiga/textutils-1.11/src/csplit.c Sat Nov 12 23:02:43 1994
***************
*** 27,34 ****
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif /* HAVE_LIMITS_H */
- #include "regex.h"
#include "system.h"
#include "version.h"
#ifdef STDC_HEADERS
--- 27,34 ----
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif /* HAVE_LIMITS_H */
#include "system.h"
+ #include "regex.h" /* After system.h to avoid clashes with system defines */
#include "version.h"
#ifdef STDC_HEADERS
***************
*** 1432,1438 ****
cleanup ();
}
- void
main (argc, argv)
int argc;
char **argv;
--- 1432,1437 ----
diff -rc --new-file textutils-1.11/src/cut.c /gnu/src/amiga/textutils-1.11/src/cut.c
*** textutils-1.11/src/cut.c Wed Nov 2 05:03:14 1994
--- /gnu/src/amiga/textutils-1.11/src/cut.c Sat Nov 12 23:02:44 1994
***************
*** 681,687 ****
return 0;
}
- void
main (argc, argv)
int argc;
char **argv;
--- 681,686 ----
diff -rc --new-file textutils-1.11/src/expand.c /gnu/src/amiga/textutils-1.11/src/expand.c
*** textutils-1.11/src/expand.c Wed Oct 19 03:02:35 1994
--- /gnu/src/amiga/textutils-1.11/src/expand.c Sat Nov 12 23:02:45 1994
***************
*** 112,118 ****
{NULL, 0, NULL, 0}
};
- void
main (argc, argv)
int argc;
char **argv;
--- 112,117 ----
diff -rc --new-file textutils-1.11/src/fold.c /gnu/src/amiga/textutils-1.11/src/fold.c
*** textutils-1.11/src/fold.c Wed Oct 19 03:02:38 1994
--- /gnu/src/amiga/textutils-1.11/src/fold.c Sat Nov 12 23:02:46 1994
***************
*** 86,92 ****
exit (status);
}
- void
main (argc, argv)
int argc;
char **argv;
--- 86,91 ----
diff -rc --new-file textutils-1.11/src/head.c /gnu/src/amiga/textutils-1.11/src/head.c
*** textutils-1.11/src/head.c Wed Oct 19 03:02:41 1994
--- /gnu/src/amiga/textutils-1.11/src/head.c Sat Nov 12 23:02:46 1994
***************
*** 96,102 ****
{NULL, 0, NULL, 0}
};
- void
main (argc, argv)
int argc;
char **argv;
--- 96,101 ----
diff -rc --new-file textutils-1.11/src/join.c /gnu/src/amiga/textutils-1.11/src/join.c
*** textutils-1.11/src/join.c Mon Oct 31 12:53:09 1994
--- /gnu/src/amiga/textutils-1.11/src/join.c Sat Nov 12 23:02:47 1994
***************
*** 576,582 ****
blank->lim = &blank->beg[i];
}
- void
main (argc, argv)
int argc;
char *argv[];
--- 576,581 ----
diff -rc --new-file textutils-1.11/src/nl.c /gnu/src/amiga/textutils-1.11/src/nl.c
*** textutils-1.11/src/nl.c Wed Oct 19 03:02:47 1994
--- /gnu/src/amiga/textutils-1.11/src/nl.c Sat Nov 12 23:02:48 1994
***************
*** 23,31 ****
#include <stdio.h>
#include <sys/types.h>
#include <getopt.h>
- #include <regex.h>
#include "linebuffer.h"
#include "system.h"
#include "version.h"
#ifndef TRUE
--- 23,31 ----
#include <stdio.h>
#include <sys/types.h>
#include <getopt.h>
#include "linebuffer.h"
#include "system.h"
+ #include "regex.h" /* After "system.h" to avoid clashes with system defines */
#include "version.h"
#ifndef TRUE
***************
*** 175,181 ****
{NULL, 0, NULL, 0}
};
- void
main (argc, argv)
int argc;
char **argv;
--- 175,180 ----
diff -rc --new-file textutils-1.11/src/od.c /gnu/src/amiga/textutils-1.11/src/od.c
*** textutils-1.11/src/od.c Wed Oct 19 03:02:53 1994
--- /gnu/src/amiga/textutils-1.11/src/od.c Sat Nov 12 23:02:50 1994
***************
*** 1681,1687 ****
return err;
}
- int
main (argc, argv)
int argc;
char **argv;
--- 1681,1686 ----
diff -rc --new-file textutils-1.11/src/paste.c /gnu/src/amiga/textutils-1.11/src/paste.c
*** textutils-1.11/src/paste.c Wed Oct 19 03:02:55 1994
--- /gnu/src/amiga/textutils-1.11/src/paste.c Sat Nov 12 23:02:51 1994
***************
*** 95,101 ****
{0, 0, 0, 0}
};
- void
main (argc, argv)
int argc;
char **argv;
--- 95,100 ----
diff -rc --new-file textutils-1.11/src/pr.c /gnu/src/amiga/textutils-1.11/src/pr.c
*** textutils-1.11/src/pr.c Wed Oct 19 03:02:58 1994
--- /gnu/src/amiga/textutils-1.11/src/pr.c Sat Nov 12 23:02:52 1994
***************
*** 458,464 ****
return n;
}
- void
main (argc, argv)
int argc;
char **argv;
--- 458,463 ----
diff -rc --new-file textutils-1.11/src/sort.c /gnu/src/amiga/textutils-1.11/src/sort.c
*** textutils-1.11/src/sort.c Mon Oct 31 12:53:07 1994
--- /gnu/src/amiga/textutils-1.11/src/sort.c Sat Nov 12 23:02:53 1994
***************
*** 1437,1443 ****
return s;
}
- void
main (argc, argv)
int argc;
char *argv[];
--- 1437,1442 ----
diff -rc --new-file textutils-1.11/src/split.c /gnu/src/amiga/textutils-1.11/src/split.c
*** textutils-1.11/src/split.c Wed Oct 19 03:03:05 1994
--- /gnu/src/amiga/textutils-1.11/src/split.c Sat Nov 12 23:02:54 1994
***************
*** 120,126 ****
exit (status);
}
- void
main (argc, argv)
int argc;
char *argv[];
--- 120,125 ----
diff -rc --new-file textutils-1.11/src/sum.c /gnu/src/amiga/textutils-1.11/src/sum.c
*** textutils-1.11/src/sum.c Wed Oct 19 03:03:09 1994
--- /gnu/src/amiga/textutils-1.11/src/sum.c Sat Nov 12 23:02:55 1994
***************
*** 82,88 ****
exit (status);
}
- void
main (argc, argv)
int argc;
char **argv;
--- 82,87 ----
diff -rc --new-file textutils-1.11/src/tac.c /gnu/src/amiga/textutils-1.11/src/tac.c
*** textutils-1.11/src/tac.c Wed Oct 19 03:03:13 1994
--- /gnu/src/amiga/textutils-1.11/src/tac.c Sat Nov 12 23:02:56 1994
***************
*** 41,48 ****
#include <getopt.h>
#include <sys/types.h>
#include <signal.h>
- #include <regex.h>
#include "system.h"
#include "version.h"
#ifndef STDC_HEADERS
--- 41,48 ----
#include <getopt.h>
#include <sys/types.h>
#include <signal.h>
#include "system.h"
+ #include "regex.h" /* After "system.h" to avoid clashes with system defines */
#include "version.h"
#ifndef STDC_HEADERS
***************
*** 149,155 ****
exit (status);
}
- void
main (argc, argv)
int argc;
char **argv;
--- 149,154 ----
diff -rc --new-file textutils-1.11/src/tail.c /gnu/src/amiga/textutils-1.11/src/tail.c
*** textutils-1.11/src/tail.c Wed Nov 2 22:35:46 1994
--- /gnu/src/amiga/textutils-1.11/src/tail.c Sat Nov 12 23:02:57 1994
***************
*** 148,154 ****
{NULL, 0, NULL, 0}
};
- void
main (argc, argv)
int argc;
char **argv;
--- 148,153 ----
diff -rc --new-file textutils-1.11/src/tr.c /gnu/src/amiga/textutils-1.11/src/tr.c
*** textutils-1.11/src/tr.c Wed Nov 2 22:35:48 1994
--- /gnu/src/amiga/textutils-1.11/src/tr.c Sat Nov 12 23:02:59 1994
***************
*** 1698,1704 ****
in_set[i] = (!in_set[i]);
}
- void
main (argc, argv)
int argc;
char **argv;
--- 1698,1703 ----
diff -rc --new-file textutils-1.11/src/unexpand.c /gnu/src/amiga/textutils-1.11/src/unexpand.c
*** textutils-1.11/src/unexpand.c Wed Oct 19 03:03:23 1994
--- /gnu/src/amiga/textutils-1.11/src/unexpand.c Sat Nov 12 23:03:00 1994
***************
*** 114,120 ****
{NULL, 0, NULL, 0}
};
- void
main (argc, argv)
int argc;
char **argv;
--- 114,119 ----
diff -rc --new-file textutils-1.11/src/uniq.c /gnu/src/amiga/textutils-1.11/src/uniq.c
*** textutils-1.11/src/uniq.c Wed Oct 19 03:03:26 1994
--- /gnu/src/amiga/textutils-1.11/src/uniq.c Sat Nov 12 23:03:01 1994
***************
*** 90,96 ****
{NULL, 0, NULL, 0}
};
- void
main (argc, argv)
int argc;
char *argv[];
--- 90,95 ----
diff -rc --new-file textutils-1.11/src/wc.c /gnu/src/amiga/textutils-1.11/src/wc.c
*** textutils-1.11/src/wc.c Wed Oct 19 03:02:01 1994
--- /gnu/src/amiga/textutils-1.11/src/wc.c Sat Nov 12 23:03:02 1994
***************
*** 96,102 ****
exit (status);
}
- void
main (argc, argv)
int argc;
char **argv;
--- 96,101 ----
***************
*** 192,203 ****
}
}
static void
wc (fd, file)
int fd;
char *file;
{
- char buf[BUFFER_SIZE];
register int bytes_read;
register int in_word = 0;
register unsigned long lines, words, chars;
--- 191,203 ----
}
}
+ char buf[BUFFER_SIZE]; /* Move buffer off stack; David Gay */
+
static void
wc (fd, file)
int fd;
char *file;
{
register int bytes_read;
register int in_word = 0;
register unsigned long lines, words, chars;