home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-01-22 | 66.8 KB | 1,996 lines |
- diff -rc --new-file autoconf-1.11/Makefile.in /gnu/src/amiga/autoconf-1.11/Makefile.in
- *** autoconf-1.11/Makefile.in Thu May 5 19:18:49 1994
- --- /gnu/src/amiga/autoconf-1.11/Makefile.in Sun Jun 12 19:24:24 1994
- ***************
- *** 27,33 ****
- TEXI2DVI = texi2dvi
- M4 = @M4@
-
- ! prefix = /usr/local
- exec_prefix = $(prefix)
-
- # Directory in which to install scripts.
- --- 27,33 ----
- TEXI2DVI = texi2dvi
- M4 = @M4@
-
- ! prefix = /gnu
- exec_prefix = $(prefix)
-
- # Directory in which to install scripts.
- diff -rc --new-file autoconf-1.11/Product-Info /gnu/src/amiga/autoconf-1.11/Product-Info
- *** autoconf-1.11/Product-Info Thu Jan 1 00:00:00 1970
- --- /gnu/src/amiga/autoconf-1.11/Product-Info Mon Jul 11 22:57:17 1994
- ***************
- *** 0 ****
- --- 1,28 ----
- + .name
- + autoconf
- + .fullname
- + GNU autoconfig
- + .type
- + Programmer Tool
- + .short
- + GNU automatic configuration generator.
- + .description
- + Autoconf is an extensible package of m4 macros that produce shell
- + scripts to automatically configure software source code packages.
- + These scripts can adapt the packages to many kinds of UNIX-like
- + systems without manual user intervention. Autoconf creates a
- + configuration script for a package from a template file that lists the
- + operating system features that the package can use, in the form of m4
- + macro calls.
- +
- + Autoconf requires GNU m4. The configuration scripts produced by
- + Autoconf are independent of Autoconf when they are run, so their users
- + do not need to have Autoconf (or GNU m4).
- + .version
- + 1.11
- + .author
- + Free Software Foundation
- + .distribution
- + GNU Public License
- + .described-by
- + Fred Fish (fnf@amigalib.com)
- diff -rc --new-file autoconf-1.11/acgeneral.m4 /gnu/src/amiga/autoconf-1.11/acgeneral.m4
- *** autoconf-1.11/acgeneral.m4 Thu May 12 14:11:17 1994
- --- /gnu/src/amiga/autoconf-1.11/acgeneral.m4 Sun Jun 12 20:39:31 1994
- ***************
- *** 143,149 ****
-
- case "$ac_option" in
- changequote(,)dnl
- ! -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- changequote([,])dnl
- *) ac_optarg= ;;
- esac
- --- 143,149 ----
-
- case "$ac_option" in
- changequote(,)dnl
- ! -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- changequote([,])dnl
- *) ac_optarg= ;;
- esac
- ***************
- *** 156,180 ****
- build="$ac_optarg" ;;
-
- -disable-* | --disable-*)
- ! ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
- # Reject names that aren't valid shell variable names.
- changequote(,)dnl
- ! if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
- changequote([,])dnl
- AC_ERROR($ac_feature: invalid feature name)
- 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 aren't valid shell variable names.
- changequote(,)dnl
- ! if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
- changequote([,])dnl
- AC_ERROR($ac_feature: invalid feature name)
- fi
- ! ac_feature=`echo $ac_feature| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- --- 156,180 ----
- build="$ac_optarg" ;;
-
- -disable-* | --disable-*)
- ! ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
- # Reject names that aren't valid shell variable names.
- changequote(,)dnl
- ! if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
- changequote([,])dnl
- AC_ERROR($ac_feature: invalid feature name)
- 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 aren't valid shell variable names.
- changequote(,)dnl
- ! if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
- changequote([,])dnl
- AC_ERROR($ac_feature: invalid feature name)
- fi
- ! ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- ***************
- *** 270,287 ****
- verbose=yes ;;
-
- -version | --version | --versio | --versi | --vers)
- ! echo "configure generated by autoconf version AC_ACVERSION"
- exit 0 ;;
-
- -with-* | --with-*)
- ! ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
- # Reject names that aren't valid shell variable names.
- changequote(,)dnl
- ! if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
- changequote([,])dnl
- AC_ERROR($ac_package: invalid package name)
- fi
- ! ac_package=`echo $ac_package| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- --- 270,287 ----
- verbose=yes ;;
-
- -version | --version | --versio | --versi | --vers)
- ! /bin/echo "configure generated by autoconf version AC_ACVERSION"
- exit 0 ;;
-
- -with-* | --with-*)
- ! ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
- # Reject names that aren't valid shell variable names.
- changequote(,)dnl
- ! if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
- changequote([,])dnl
- AC_ERROR($ac_package: invalid package name)
- fi
- ! ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- ***************
- *** 289,302 ****
- eval "with_${ac_package}='$ac_optarg'" ;;
-
- -without-* | --without-*)
- ! ac_package=`echo $ac_option|sed -e 's/-*without-//'`
- # Reject names that aren't valid shell variable names.
- changequote(,)dnl
- ! if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
- changequote([,])dnl
- AC_ERROR($ac_package: invalid package name)
- fi
- ! ac_package=`echo $ac_package| sed 's/-/_/g'`
- eval "with_${ac_package}=no" ;;
-
- --x) with_x=yes ;; # Obsolete; use --with-x.
- --- 289,302 ----
- eval "with_${ac_package}='$ac_optarg'" ;;
-
- -without-* | --without-*)
- ! ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
- # Reject names that aren't valid shell variable names.
- changequote(,)dnl
- ! if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
- changequote([,])dnl
- AC_ERROR($ac_package: invalid package name)
- fi
- ! ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
- eval "with_${ac_package}=no" ;;
-
- --x) with_x=yes ;; # Obsolete; use --with-x.
- ***************
- *** 320,326 ****
-
- *)
- changequote(,)dnl
- ! if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
- changequote([,])dnl
- AC_WARN($ac_option: invalid host type)
- fi
- --- 320,326 ----
-
- *)
- changequote(,)dnl
- ! if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
- changequote([,])dnl
- AC_WARN($ac_option: invalid host type)
- fi
- ***************
- *** 334,340 ****
- done
-
- if test -n "$ac_prev"; then
- ! AC_ERROR(missing argument to --`echo $ac_prev | sed 's/_/-/g'`)
- fi
- ])dnl
- dnl
- --- 334,340 ----
- done
-
- if test -n "$ac_prev"; then
- ! AC_ERROR(missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`)
- fi
- ])dnl
- dnl
- ***************
- *** 371,377 ****
- # 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.
- --- 371,377 ----
- # 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.
- ***************
- *** 383,389 ****
- # Try the directory containing this script, then `..'.
- ac_prog=[$]0
- changequote(,)dnl
- ! ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
- changequote([,])dnl
- test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
- srcdir=$ac_confdir
- --- 383,389 ----
- # Try the directory containing this script, then `..'.
- ac_prog=[$]0
- changequote(,)dnl
- ! ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
- changequote([,])dnl
- test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
- srcdir=$ac_confdir
- ***************
- *** 438,444 ****
- if test $ac_dir != . && test -f $ac_dir/$1; then
- changequote(,)dnl
- # Not all systems have dirname.
- ! prefix=`echo $ac_dir|sed 's%/[^/][^/]*$%%'`
- changequote([,])dnl
- break
- fi
- --- 438,444 ----
- if test $ac_dir != . && test -f $ac_dir/$1; then
- changequote(,)dnl
- # Not all systems have dirname.
- ! prefix=`/bin/echo $ac_dir|sed 's%/[^/][^/]*$%%'`
- changequote([,])dnl
- break
- fi
- ***************
- *** 531,541 ****
- test -n "$verbose" && \
- ifelse($#, 2,
- [define([AC_VAL], $2)dnl
- ! echo " defining" $1 to be ifelse(AC_VAL,, empty, "AC_QUOTE_SQUOTE(AC_VAL)")],
- [define([AC_VAL], 1)dnl
- ! echo " defining $1"])
- dnl
- ! echo "[#][define]" $1 "AC_QUOTE_SQUOTE(AC_VAL)" >> confdefs.h
- dnl Define DEFS even if AC_CONFIG_NAMES for use in user case statements.
- DEFS="$DEFS -D$1=AC_QUOTE_SQUOTE(AC_VAL)"
- ifdef([AC_CONFIG_NAMES],
- --- 531,541 ----
- test -n "$verbose" && \
- ifelse($#, 2,
- [define([AC_VAL], $2)dnl
- ! /bin/echo " defining" $1 to be ifelse(AC_VAL,, empty, "AC_QUOTE_SQUOTE(AC_VAL)")],
- [define([AC_VAL], 1)dnl
- ! /bin/echo " defining $1"])
- dnl
- ! /bin/echo "[#][define]" $1 "AC_QUOTE_SQUOTE(AC_VAL)" >> confdefs.h
- dnl Define DEFS even if AC_CONFIG_NAMES for use in user case statements.
- DEFS="$DEFS -D$1=AC_QUOTE_SQUOTE(AC_VAL)"
- ifdef([AC_CONFIG_NAMES],
- ***************
- *** 584,599 ****
- dnl
- dnl
- define(AC_CHECKING,
- ! [test -n "$silent" || echo "checking $1"])dnl
- dnl
- define(AC_VERBOSE,
- ! [test -n "$verbose" && echo " $1"])dnl
- dnl
- define(AC_WARN,
- ! [echo "configure: warning: $1" >&2])dnl
- dnl
- define(AC_ERROR,
- ! [echo "configure: $1" >&2; exit 1])dnl
- dnl
- dnl
- dnl Selecting which language to use for testing
- --- 584,599 ----
- dnl
- dnl
- define(AC_CHECKING,
- ! [test -n "$silent" || /bin/echo "checking $1"])dnl
- dnl
- define(AC_VERBOSE,
- ! [test -n "$verbose" && /bin/echo " $1"])dnl
- dnl
- define(AC_WARN,
- ! [/bin/echo "configure: warning: $1" >&2])dnl
- dnl
- define(AC_ERROR,
- ! [/bin/echo "configure: $1" >&2; exit 1])dnl
- dnl
- dnl
- dnl Selecting which language to use for testing
- ***************
- *** 700,706 ****
- ifelse([$3],,, [test -n "[$]$1" || $1="$3"
- ])])dnl
- define(AC_HEADER_EGREP,
- ! [AC_REQUIRE_CPP()AC_PROVIDE([$0])echo '#include "confdefs.h"
- #include <$2>' > conftest.${ac_ext}
- eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
- if egrep "$1" conftest.out >/dev/null 2>&1; then
- --- 700,706 ----
- ifelse([$3],,, [test -n "[$]$1" || $1="$3"
- ])])dnl
- define(AC_HEADER_EGREP,
- ! [AC_REQUIRE_CPP()AC_PROVIDE([$0])/bin/echo '#include "confdefs.h"
- #include <$2>' > conftest.${ac_ext}
- eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
- if egrep "$1" conftest.out >/dev/null 2>&1; then
- ***************
- *** 856,862 ****
- [for ac_func in $1
- do
- changequote(,)dnl
- ! ac_tr_func=HAVE_`echo $ac_func | tr '[a-z]' '[A-Z]'`
- changequote([,])dnl
- AC_FUNC_CHECK(${ac_func},
- AC_DEFINE(${ac_tr_func}))dnl
- --- 856,862 ----
- [for ac_func in $1
- do
- changequote(,)dnl
- ! ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
- changequote([,])dnl
- AC_FUNC_CHECK(${ac_func},
- AC_DEFINE(${ac_tr_func}))dnl
- ***************
- *** 868,874 ****
- for ac_hdr in $1
- do
- changequote(,)dnl
- ! ac_tr_hdr=HAVE_`echo $ac_hdr | tr '[a-z]./' '[A-Z]__'`
- changequote([,])dnl
- AC_HEADER_CHECK(${ac_hdr},
- AC_DEFINE(${ac_tr_hdr}))dnl
- --- 868,874 ----
- for ac_hdr in $1
- do
- changequote(,)dnl
- ! ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./' '[A-Z]__'`
- changequote([,])dnl
- AC_HEADER_CHECK(${ac_hdr},
- AC_DEFINE(${ac_tr_hdr}))dnl
- ***************
- *** 968,975 ****
- divert(0)dnl
-
- trap 'rm -f config.status; exit 1' 1 2 15
- ! echo creating config.status
- ! rm -f config.status
- cat > config.status <<EOF
- #!/bin/sh
- # Generated automatically by configure.
- --- 968,977 ----
- divert(0)dnl
-
- trap 'rm -f config.status; exit 1' 1 2 15
- ! /bin/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.
- ***************
- *** 988,1001 ****
- do
- case "[\$]ac_option" in
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ! echo running [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]configure_args --no-create
- exec [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]configure_args --no-create ;;
- -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
- ! echo "config.status generated by autoconf version AC_ACVERSION"
- exit 0 ;;
- -help | --help | --hel | --he | --h)
- ! echo "[\$]ac_cs_usage"; exit 0 ;;
- ! *) echo "[\$]ac_cs_usage"; exit 1 ;;
- esac
- done
-
- --- 990,1003 ----
- do
- case "[\$]ac_option" in
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ! /bin/echo running [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]configure_args --no-create
- exec [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]configure_args --no-create ;;
- -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
- ! /bin/echo "config.status generated by autoconf version AC_ACVERSION"
- exit 0 ;;
- -help | --help | --hel | --he | --h)
- ! /bin/echo "[\$]ac_cs_usage"; exit 0 ;;
- ! *) /bin/echo "[\$]ac_cs_usage"; exit 1 ;;
- esac
- done
-
- ***************
- *** 1013,1019 ****
- for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
- # Remove last slash and all that follows it. Not all systems have dirname.
- changequote(,)dnl
- ! ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
- changequote([,])dnl
- if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
- # The file is in a subdirectory.
- --- 1015,1021 ----
- for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
- # Remove last slash and all that follows it. Not all systems have dirname.
- changequote(,)dnl
- ! ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
- changequote([,])dnl
- if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
- # The file is in a subdirectory.
- ***************
- *** 1025,1048 ****
-
- changequote(,)dnl
- # A "../" for each directory in $ac_dir_suffix.
- ! ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
- changequote([,])dnl
- case "$ac_given_srcdir" in
- .) srcdir=.
- if test -z "$ac_dir_suffix"; 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"
- top_srcdir="$ac_dots$ac_given_srcdir" ;;
- esac
-
- ! echo creating "$ac_file"
- rm -f "$ac_file"
- ! comment_str="Generated automatically from `echo $ac_file|sed 's|.*/||'`.in by configure."
- case "$ac_file" in
- ! *.c | *.h | *.C | *.cc | *.m ) echo "/* $comment_str */" > "$ac_file" ;;
- ! * ) echo "# $comment_str" > "$ac_file" ;;
- esac
- sed -e "
- $ac_prsub
- --- 1027,1050 ----
-
- changequote(,)dnl
- # A "../" for each directory in $ac_dir_suffix.
- ! ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
- changequote([,])dnl
- case "$ac_given_srcdir" in
- .) srcdir=.
- if test -z "$ac_dir_suffix"; 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"
- top_srcdir="$ac_dots$ac_given_srcdir" ;;
- esac
-
- ! /bin/echo creating "$ac_file"
- rm -f "$ac_file"
- ! comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
- case "$ac_file" in
- ! *.c | *.h | *.C | *.cc | *.m ) /bin/echo "/* $comment_str */" > "$ac_file" ;;
- ! * ) /bin/echo "# $comment_str" > "$ac_file" ;;
- esac
- sed -e "
- $ac_prsub
- ***************
- *** 1115,1123 ****
- sed ${ac_max_sh_lines}q conftest.sh > conftest.s1 # Like head -9.
- sed 1,${ac_max_sh_lines}d conftest.sh > conftest.s2 # Like tail +10.
- # Write a limited-size here document to append to conftest.sed.
- ! echo 'cat >> conftest.sed <<CONFEOF' >> config.status
- cat conftest.s1 >> config.status
- ! echo 'CONFEOF' >> config.status
- rm -f conftest.s1 conftest.sh
- mv conftest.s2 conftest.sh
- done
- --- 1117,1125 ----
- sed ${ac_max_sh_lines}q conftest.sh > conftest.s1 # Like head -9.
- sed 1,${ac_max_sh_lines}d conftest.sh > conftest.s2 # Like tail +10.
- # Write a limited-size here document to append to conftest.sed.
- ! /bin/echo 'cat >> conftest.sed <<CONFEOF' >> config.status
- cat conftest.s1 >> config.status
- ! /bin/echo 'CONFEOF' >> config.status
- rm -f conftest.s1 conftest.sh
- mv conftest.s2 conftest.sh
- done
- ***************
- *** 1140,1146 ****
-
- CONFIG_HEADERS=${CONFIG_HEADERS-"AC_CONFIG_NAMES"}
- for ac_file in .. ${CONFIG_HEADERS}; do if test "x$ac_file" != x..; then
- ! echo creating $ac_file
-
- cp $ac_given_srcdir/$ac_file.in conftest.h1
- cp conftest.sed conftest.stm
- --- 1142,1148 ----
-
- CONFIG_HEADERS=${CONFIG_HEADERS-"AC_CONFIG_NAMES"}
- for ac_file in .. ${CONFIG_HEADERS}; do if test "x$ac_file" != x..; then
- ! /bin/echo creating $ac_file
-
- cp $ac_given_srcdir/$ac_file.in conftest.h1
- cp conftest.sed conftest.stm
- ***************
- *** 1157,1168 ****
- mv conftest.s2 conftest.stm
- done
- rm -f conftest.stm conftest.h
- ! echo "/* $ac_file. Generated automatically by configure. */" > conftest.h
- cat conftest.h1 >> conftest.h
- rm -f conftest.h1
- if cmp -s $ac_file conftest.h 2>/dev/null; then
- # The file exists and we would not be changing it.
- ! echo "$ac_file is unchanged"
- rm -f conftest.h
- else
- rm -f $ac_file
- --- 1159,1170 ----
- mv conftest.s2 conftest.stm
- done
- rm -f conftest.stm conftest.h
- ! /bin/echo "/* $ac_file. Generated automatically by configure. */" > conftest.h
- cat conftest.h1 >> conftest.h
- rm -f conftest.h1
- if cmp -s $ac_file conftest.h 2>/dev/null; then
- # The file exists and we would not be changing it.
- ! /bin/echo "$ac_file is unchanged"
- rm -f conftest.h
- else
- rm -f $ac_file
- diff -rc --new-file autoconf-1.11/acspecific.m4 /gnu/src/amiga/autoconf-1.11/acspecific.m4
- *** autoconf-1.11/acspecific.m4 Sun May 8 02:23:39 1994
- --- /gnu/src/amiga/autoconf-1.11/acspecific.m4 Sun Jun 12 19:28:25 1994
- ***************
- *** 76,82 ****
- dnl
- define(AC_MINUS_C_MINUS_O,
- [AC_CHECKING(whether $CC and cc understand -c and -o together)
- ! echo 'foo(){}' > conftest.c
- # Make sure it works both with $CC and with simple cc.
- # We do the test twice because some compilers refuse to overwrite an
- # existing .o file with -o, though they will create one.
- --- 76,82 ----
- dnl
- define(AC_MINUS_C_MINUS_O,
- [AC_CHECKING(whether $CC and cc understand -c and -o together)
- ! /bin/echo 'foo(){}' > conftest.c
- # Make sure it works both with $CC and with simple cc.
- # We do the test twice because some compilers refuse to overwrite an
- # existing .o file with -o, though they will create one.
- ***************
- *** 104,110 ****
- define(AC_SET_MAKE,
- [cat > conftestmake <<'EOF'
- all:
- ! @echo 'ac_maketemp="${MAKE}"'
- EOF
- changequote(,)dnl
- # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
- --- 104,110 ----
- define(AC_SET_MAKE,
- [cat > conftestmake <<'EOF'
- all:
- ! @/bin/echo 'ac_maketemp="${MAKE}"'
- EOF
- changequote(,)dnl
- # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
- ***************
- *** 180,186 ****
- #
- # The minimal lex program is just a single line: %%. But some broken lexes
- # (Solaris, I think it was) want two %% lines, so accommodate them.
- ! echo '%%
- %%' | ${LEX}
- if test -f lex.yy.c; then
- LEX_OUTPUT_ROOT=lex.yy
- --- 180,186 ----
- #
- # The minimal lex program is just a single line: %%. But some broken lexes
- # (Solaris, I think it was) want two %% lines, so accommodate them.
- ! /bin/echo '%%
- %%' | ${LEX}
- if test -f lex.yy.c; then
- LEX_OUTPUT_ROOT=lex.yy
- ***************
- *** 192,198 ****
- LEX_OUTPUT_ROOT=
- fi
- if test -n "$LEX_OUTPUT_ROOT"; then
- ! echo 'extern char *yytext; main () { exit (0); }' >>$LEX_OUTPUT_ROOT.c
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS $LEXLIB"
- AC_TEST_PROGRAM(`cat $LEX_OUTPUT_ROOT.c`, AC_DEFINE(YYTEXT_POINTER))
- --- 192,198 ----
- LEX_OUTPUT_ROOT=
- fi
- if test -n "$LEX_OUTPUT_ROOT"; then
- ! /bin/echo 'extern char *yytext; main () { exit (0); }' >>$LEX_OUTPUT_ROOT.c
- ac_save_LIBS="$LIBS"
- LIBS="$LIBS $LEXLIB"
- AC_TEST_PROGRAM(`cat $LEX_OUTPUT_ROOT.c`, AC_DEFINE(YYTEXT_POINTER))
- ***************
- *** 224,230 ****
- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- for ac_dir in $PATH; do
- case "$ac_dir" in
- ! ''|.|/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
- *)
- # OSF1 and SCO ODT 3.0 have their own names for install.
- for ac_prog in installbsd scoinst install; do
- --- 224,230 ----
- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- for ac_dir in $PATH; do
- case "$ac_dir" in
- ! ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
- *)
- # OSF1 and SCO ODT 3.0 have their own names for install.
- for ac_prog in installbsd scoinst install; do
- ***************
- *** 286,297 ****
- dnl
- define(AC_RSH,
- [AC_CHECKING(for remote shell)
- ! if test -f /usr/ucb/rsh || test -f /usr/bin/remsh || test -f /usr/bin/rsh ||
- ! test -f /usr/bsd/rsh || test -f /usr/bin/nsh; then
- RTAPELIB=rtapelib.o
- else
- ! AC_HEADER_CHECK(netdb.h, AC_DEFINE(HAVE_NETDB_H) RTAPELIB=rtapelib.o,
- ! AC_DEFINE(NO_REMOTE))
- fi
- AC_SUBST(RTAPELIB)dnl
- ])dnl
- --- 286,297 ----
- dnl
- define(AC_RSH,
- [AC_CHECKING(for remote shell)
- ! if test -f /gnu/bin/remsh || test -f /gnu/bin/rsh || test -f /gnu/bin/nsh; then
- RTAPELIB=rtapelib.o
- else
- ! dnl The rmt executable doesn't currently build on AmigaDOS because
- ! dnl setsockopt() is missing, so disable rmt features. -fnf
- ! AC_DEFINE(NO_REMOTE)
- fi
- AC_SUBST(RTAPELIB)dnl
- ])dnl
- ***************
- *** 551,556 ****
- --- 551,561 ----
- pid_t parent = getpid ();
- pid_t child;
-
- + #ifdef __amigados__
- + /* Force this test to succeed for AmigaDOS, which has a fairly good
- + vfork() emulation, but doesn't support fork() at all. -fnf */
- + exit (0);
- + #endif
- signal (SIGINT, catch);
-
- child = vfork ();
- ***************
- *** 726,732 ****
- # There is a commonly available library for RS/6000 AIX.
- # Since it is not a standard part of AIX, it might be installed locally.
- LIBS_old="$LIBS"
- ! LIBS="-L/usr/local/lib $LIBS"
- AC_HAVE_LIBRARY(getloadavg, LIBS="$LIBS -lgetloadavg" ac_need_func=false,
- LIBS="$LIBS_old")
- fi
- --- 731,737 ----
- # There is a commonly available library for RS/6000 AIX.
- # Since it is not a standard part of AIX, it might be installed locally.
- LIBS_old="$LIBS"
- ! LIBS="-L/local/lib $LIBS"
- AC_HAVE_LIBRARY(getloadavg, LIBS="$LIBS -lgetloadavg" ac_need_func=false,
- LIBS="$LIBS_old")
- fi
- ***************
- *** 785,791 ****
- ac_ls_output=`ls -lgL /dev/kmem 2>/dev/null`
- # If we got an error (system does not support symlinks), try without -L.
- test -z "$ac_ls_output" && ac_ls_output=`ls -lg /dev/kmem`
- ! KMEM_GROUP=`echo $ac_ls_output \
- | sed -ne 's/[ ][ ]*/ /g;
- s/^.[sSrwx-]* *[0-9]* *\([^0-9]*\) *.*/\1/;
- / /s/.* //;p;'`
- --- 790,796 ----
- ac_ls_output=`ls -lgL /dev/kmem 2>/dev/null`
- # If we got an error (system does not support symlinks), try without -L.
- test -z "$ac_ls_output" && ac_ls_output=`ls -lg /dev/kmem`
- ! KMEM_GROUP=`/bin/echo $ac_ls_output \
- | sed -ne 's/[ ][ ]*/ /g;
- s/^.[sSrwx-]* *[0-9]* *\([^0-9]*\) *.*/\1/;
- / /s/.* //;p;'`
- ***************
- *** 821,826 ****
- --- 826,838 ----
- [AC_TEST_PROGRAM([#include <stdio.h>
- /* If setvbuf has the reversed format, exit 0. */
- main () {
- + #ifdef __amigados__
- + /* AmigaDOS is a non-reversed system. Instead of the test program
- + getting a segfault (no memory protection), it causes enforcer hits
- + or other nastiness, so don't run the test program, just exit with
- + status 1 to indicate that it is non-reversed. -fnf */
- + exit(1);
- + #endif
- /* This call has the arguments reversed.
- A reversed system may check and see that the address of main
- is not _IOLBF, _IONBF, or _IOFBF, and return nonzero. */
- ***************
- *** 934,947 ****
- ])dnl
- dnl
- define(AC_INT_16_BITS,
- ! [AC_OBSOLETE([$0], [; instead use AC_SIZEOF_TYPE(int)])
- AC_CHECKING(integer size)
- AC_TEST_PROGRAM([main() { exit(sizeof(int) != 2); }],
- AC_DEFINE(INT_16_BITS))
- ])dnl
- dnl
- define(AC_LONG_64_BITS,
- ! [AC_OBSOLETE([$0], [; instead use AC_SIZEOF_TYPE(long)])
- AC_CHECKING(for 64-bit long ints)
- AC_TEST_PROGRAM([main() { exit(sizeof(long int) != 8); }],
- AC_DEFINE(LONG_64_BITS))
- --- 946,959 ----
- ])dnl
- dnl
- define(AC_INT_16_BITS,
- ! [AC_OBSOLETE([$0], [; instead use AC_SIZEOF_TYPE(int, sizevar)])
- AC_CHECKING(integer size)
- AC_TEST_PROGRAM([main() { exit(sizeof(int) != 2); }],
- AC_DEFINE(INT_16_BITS))
- ])dnl
- dnl
- define(AC_LONG_64_BITS,
- ! [AC_OBSOLETE([$0], [; instead use AC_SIZEOF_TYPE(long, sizevar)])
- AC_CHECKING(for 64-bit long ints)
- AC_TEST_PROGRAM([main() { exit(sizeof(long int) != 8); }],
- AC_DEFINE(LONG_64_BITS))
- ***************
- *** 1033,1039 ****
- dnl
- define(AC_HAVE_POUNDBANG, [dnl
- AC_CHECKING(whether \`[#]!' works in shell scripts)
- ! echo '#!/bin/cat
- exit 69
- ' > conftest
- chmod u+x conftest
- --- 1045,1051 ----
- dnl
- define(AC_HAVE_POUNDBANG, [dnl
- AC_CHECKING(whether \`[#]!' works in shell scripts)
- ! /bin/echo '#!/bin/cat
- exit 69
- ' > conftest
- chmod u+x conftest
- ***************
- *** 1050,1056 ****
- AC_HEADER_CHECK(sys/mtio.h, AC_DEFINE(HAVE_SYS_MTIO_H) ac_have_mtio_h=1)
- if test -n "$ac_have_mtio_h"; then
- AC_TEST_CPP([#include <sgtty.h>
- ! #include <sys/socket.h>], PROGS="$PROGS rmt")
- fi
- ])dnl
- dnl
- --- 1062,1068 ----
- AC_HEADER_CHECK(sys/mtio.h, AC_DEFINE(HAVE_SYS_MTIO_H) ac_have_mtio_h=1)
- if test -n "$ac_have_mtio_h"; then
- AC_TEST_CPP([#include <sgtty.h>
- ! #include <sys/socket.h>], PROGS="$PROGS")
- fi
- ])dnl
- dnl
- ***************
- *** 1065,1075 ****
- # $prefix/lib where we will be installing things
- # $exec_prefix/lib likewise
- # eval it to expand exec_prefix.
- ! for ac_dir in `eval echo . /tmp /var/tmp /usr/tmp $prefix/lib $exec_prefix/lib` ; do
- test -d $ac_dir || continue
- test -w $ac_dir || continue # It's less confusing to not echo anything here.
- ! (echo 1 > $ac_dir/conftest9012345) 2>/dev/null
- ! (echo 2 > $ac_dir/conftest9012346) 2>/dev/null
- val=`cat $ac_dir/conftest9012345 2>/dev/null`
- test -f $ac_dir/conftest9012345 && test "$val" = 1 || ac_some_dir_failed=true
- rm -f $ac_dir/conftest9012345 $ac_dir/conftest9012346 2> /dev/null
- --- 1077,1087 ----
- # $prefix/lib where we will be installing things
- # $exec_prefix/lib likewise
- # eval it to expand exec_prefix.
- ! for ac_dir in `eval /bin/echo . /tmp $prefix/lib $exec_prefix/lib` ; do
- test -d $ac_dir || continue
- test -w $ac_dir || continue # It's less confusing to not echo anything here.
- ! (/bin/echo 1 > $ac_dir/conftest9012345) 2>/dev/null
- ! (/bin/echo 2 > $ac_dir/conftest9012346) 2>/dev/null
- val=`cat $ac_dir/conftest9012345 2>/dev/null`
- test -f $ac_dir/conftest9012345 && test "$val" = 1 || ac_some_dir_failed=true
- rm -f $ac_dir/conftest9012345 $ac_dir/conftest9012346 2> /dev/null
- ***************
- *** 1120,1126 ****
- # Make sure to not put "make" in the Imakefile rules, since we grep it out.
- cat > Imakefile <<'EOF'
- acfindx:
- ! @echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
- EOF
- if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
- no_x=
- --- 1132,1138 ----
- # Make sure to not put "make" in the Imakefile rules, since we grep it out.
- cat > Imakefile <<'EOF'
- acfindx:
- ! @/bin/echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
- EOF
- if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
- no_x=
- ***************
- *** 1132,1138 ****
- ac_im_usrlibdir=$ac_im_libdir
- fi
- case "$ac_im_incroot" in
- ! /usr/include) ;;
- *) test -z "$x_includes" && x_includes="$ac_im_incroot" ;;
- esac
- case "$ac_im_usrlibdir" in
- --- 1144,1150 ----
- ac_im_usrlibdir=$ac_im_libdir
- fi
- case "$ac_im_incroot" in
- ! /gnu/include) ;;
- *) test -z "$x_includes" && x_includes="$ac_im_incroot" ;;
- esac
- case "$ac_im_usrlibdir" in
- ***************
- *** 1160,1168 ****
- /usr/X11R5/include \
- /usr/X11R4/include \
- \
- ! /usr/include/X11R6 \
- ! /usr/include/X11R5 \
- ! /usr/include/X11R4 \
- \
- /usr/local/X11R6/include \
- /usr/local/X11R5/include \
- --- 1172,1180 ----
- /usr/X11R5/include \
- /usr/X11R4/include \
- \
- ! /gnu/include/X11R6 \
- ! /gnu/include/X11R5 \
- ! /gnu/include/X11R4 \
- \
- /usr/local/X11R6/include \
- /usr/local/X11R5/include \
- ***************
- *** 1173,1179 ****
- /usr/local/include/X11R4 \
- \
- /usr/X11/include \
- ! /usr/include/X11 \
- /usr/local/X11/include \
- /usr/local/include/X11 \
- \
- --- 1185,1191 ----
- /usr/local/include/X11R4 \
- \
- /usr/X11/include \
- ! /gnu/include/X11 \
- /usr/local/X11/include \
- /usr/local/include/X11 \
- \
- ***************
- *** 1181,1187 ****
- /usr/x386/include \
- /usr/XFree86/include/X11 \
- \
- ! /usr/include \
- /usr/local/include \
- /usr/unsupported/include \
- /usr/athena/include \
- --- 1193,1199 ----
- /usr/x386/include \
- /usr/XFree86/include/X11 \
- \
- ! /gnu/include \
- /usr/local/include \
- /usr/unsupported/include \
- /usr/athena/include \
- ***************
- *** 1202,1208 ****
- # Check for the libraries. First see if replacing the `include' by
- # `lib' works.
- AC_HAVE_LIBRARY("$x_direct_test_library", no_x=,
- ! for ac_dir in `echo "$x_includes" | sed s/include/lib/` \
- /usr/X11R6/lib \
- /usr/X11R5/lib \
- /usr/X11R4/lib \
- --- 1214,1220 ----
- # Check for the libraries. First see if replacing the `include' by
- # `lib' works.
- AC_HAVE_LIBRARY("$x_direct_test_library", no_x=,
- ! for ac_dir in `/bin/echo "$x_includes" | sed s/include/lib/` \
- /usr/X11R6/lib \
- /usr/X11R5/lib \
- /usr/X11R4/lib \
- ***************
- *** 1324,1331 ****
- dnl
- define(AC_ISC_POSIX,
- [AC_PROVIDE([$0])AC_BEFORE([$0], [AC_COMPILE_CHECK])AC_BEFORE([$0], [AC_TEST_PROGRAM])AC_BEFORE([$0], [AC_HEADER_EGREP])AC_BEFORE([$0], [AC_TEST_CPP])AC_CHECKING(for POSIXized ISC)
- ! if test -d /etc/conf/kconfig.d &&
- ! grep _POSIX_VERSION [/usr/include/sys/unistd.h] >/dev/null 2>&1
- then
- ISC=1 # If later tests want to check for ISC.
- AC_DEFINE(_POSIX_SOURCE)
- --- 1336,1343 ----
- dnl
- define(AC_ISC_POSIX,
- [AC_PROVIDE([$0])AC_BEFORE([$0], [AC_COMPILE_CHECK])AC_BEFORE([$0], [AC_TEST_PROGRAM])AC_BEFORE([$0], [AC_HEADER_EGREP])AC_BEFORE([$0], [AC_TEST_CPP])AC_CHECKING(for POSIXized ISC)
- ! if test -d /gnu/etc/conf/kconfig.d &&
- ! grep _POSIX_VERSION [/gnu/include/sys/unistd.h] >/dev/null 2>&1
- then
- ISC=1 # If later tests want to check for ISC.
- AC_DEFINE(_POSIX_SOURCE)
- diff -rc --new-file autoconf-1.11/autoconf.info /gnu/src/amiga/autoconf-1.11/autoconf.info
- *** autoconf-1.11/autoconf.info Thu May 12 20:18:55 1994
- --- /gnu/src/amiga/autoconf-1.11/autoconf.info Sun Jun 12 19:58:58 1994
- ***************
- *** 1,5 ****
- ! This is Info file autoconf.info, produced by Makeinfo-1.55 from the
- ! input file ./autoconf.texi.
-
- START-INFO-DIR-ENTRY
- * autoconf: (autoconf). The Autoconf configuration system.
- --- 1,6 ----
- ! This is Info file /gnu/src/amiga/autoconf-1.11/autoconf.info, produced
- ! by Makeinfo-1.55 from the input file
- ! /gnu/src/amiga/autoconf-1.11/autoconf.texi.
-
- START-INFO-DIR-ENTRY
- * autoconf: (autoconf). The Autoconf configuration system.
- ***************
- *** 1384,1390 ****
- asterisks changed to `P'. For example, the call
- AC_SIZEOF_TYPE(int *)
-
- ! defines `SIZEOF_INT_P' to be 8 on DEC Alpha AXP systems.
-
- - Macro: AC_TEST_PROGRAM (PROGRAM, ACTION-IF-TRUE [, ACTION-IF-FALSE
- [, ACTION-IF-CROSS-COMPILING]])
- --- 1385,1391 ----
- asterisks changed to `P'. For example, the call
- AC_SIZEOF_TYPE(int *)
-
- ! defines `SIZEOF_INT_P' to be 64 on DEC Alpha AXP systems.
-
- - Macro: AC_TEST_PROGRAM (PROGRAM, ACTION-IF-TRUE [, ACTION-IF-FALSE
- [, ACTION-IF-CROSS-COMPILING]])
- ***************
- *** 2661,2668 ****
- * CONFIG_SHELL: Invoking config.status.
- * const: Compiler Characteristics.
- * C_ALLOCA: Library Functions.
- - * DEFS: Overriding variables.
- * DEFS: Predefined Variables.
- * DGUX: Library Functions.
- * DIRENT: Header Files.
- * exec_prefix: Predefined Variables.
- --- 2662,2669 ----
- * CONFIG_SHELL: Invoking config.status.
- * const: Compiler Characteristics.
- * C_ALLOCA: Library Functions.
- * DEFS: Predefined Variables.
- + * DEFS: Overriding variables.
- * DGUX: Library Functions.
- * DIRENT: Header Files.
- * exec_prefix: Predefined Variables.
- ***************
- *** 2695,2702 ****
- * INSTALL: Overriding variables.
- * INT_16_BITS: Compiler Characteristics.
- * LIBOBJS: Predefined Variables.
- - * LIBS: Predefined Variables.
- * LIBS: Overriding variables.
- * LONG_64_BITS: Compiler Characteristics.
- * MAJOR_IN_MKDEV: Header Files.
- * MAJOR_IN_SYSMACROS: Header Files.
- --- 2696,2703 ----
- * INSTALL: Overriding variables.
- * INT_16_BITS: Compiler Characteristics.
- * LIBOBJS: Predefined Variables.
- * LIBS: Overriding variables.
- + * LIBS: Predefined Variables.
- * LONG_64_BITS: Compiler Characteristics.
- * MAJOR_IN_MKDEV: Header Files.
- * MAJOR_IN_SYSMACROS: Header Files.
- ***************
- *** 2729,2736 ****
- * UMAX4_3: Library Functions.
- * USG: Header Files.
- * vfork: Library Functions.
- - * VOID_CLOSEDIR: Header Files.
- * VOID_CLOSEDIR: UNIX Variants.
- * WORDS_BIGENDIAN: Compiler Characteristics.
- * YYTEXT_POINTER: Alternative Programs.
- * _ALL_SOURCE: UNIX Variants.
- --- 2730,2737 ----
- * UMAX4_3: Library Functions.
- * USG: Header Files.
- * vfork: Library Functions.
- * VOID_CLOSEDIR: UNIX Variants.
- + * VOID_CLOSEDIR: Header Files.
- * WORDS_BIGENDIAN: Compiler Characteristics.
- * YYTEXT_POINTER: Alternative Programs.
- * _ALL_SOURCE: UNIX Variants.
- ***************
- *** 2865,2918 ****
-
-
- Tag Table:
- ! Node: Top1070
- ! Node: Introduction4458
- ! Node: Distributing8287
- ! Node: Making configure Scripts9395
- ! Node: Writing configure.in11992
- ! Node: Invoking autoconf14425
- ! Node: Invoking autoheader16274
- ! Node: Specific Tests18427
- ! Node: Alternative Programs20099
- ! Node: Header Files25593
- ! Node: Typedefs31278
- ! Node: Library Functions32495
- ! Node: Structures37266
- ! Node: Compiler Characteristics39356
- ! Node: System Services42168
- ! Node: UNIX Variants44673
- ! Node: General Purpose Macros46581
- ! Node: Setup47732
- ! Node: General Feature Tests52686
- ! Node: Command Line61952
- ! Node: Setting Variables65766
- ! Node: Printing Messages69098
- ! Node: Language Choice71326
- ! Node: Macro Ordering72947
- ! Node: Writing Macros75693
- ! Node: Macro Format77189
- ! Node: Quoting78686
- ! Node: Dependencies Between Macros80144
- ! Node: Prerequisite Macros80731
- ! Node: Suggested Ordering81780
- ! Node: Checking for Files83159
- ! Node: Checking for Symbols83945
- ! Node: Test Programs85424
- ! Node: Guidelines87089
- ! Node: Tricks88232
- ! Node: Multiple Cases89235
- ! Node: Makefiles90439
- ! Node: Predefined Variables91840
- ! Node: Installation Prefixes93348
- ! Node: VPATH Substitutions94918
- ! Node: Automatic Remaking96639
- ! Node: Invoking configure98223
- ! Node: Overriding variables101711
- ! Node: Invoking config.status103334
- ! Node: Example106313
- ! Node: Sample configure.in106893
- ! Node: Sample Makefile.in108030
- ! Node: Preprocessor Symbol Index112015
- ! Node: Macro Index117272
-
- End Tag Table
- --- 2866,2919 ----
-
-
- Tag Table:
- ! Node: Top1126
- ! Node: Introduction4514
- ! Node: Distributing8343
- ! Node: Making configure Scripts9451
- ! Node: Writing configure.in12048
- ! Node: Invoking autoconf14481
- ! Node: Invoking autoheader16330
- ! Node: Specific Tests18483
- ! Node: Alternative Programs20155
- ! Node: Header Files25649
- ! Node: Typedefs31334
- ! Node: Library Functions32551
- ! Node: Structures37322
- ! Node: Compiler Characteristics39412
- ! Node: System Services42224
- ! Node: UNIX Variants44729
- ! Node: General Purpose Macros46637
- ! Node: Setup47788
- ! Node: General Feature Tests52742
- ! Node: Command Line62009
- ! Node: Setting Variables65823
- ! Node: Printing Messages69155
- ! Node: Language Choice71383
- ! Node: Macro Ordering73004
- ! Node: Writing Macros75750
- ! Node: Macro Format77246
- ! Node: Quoting78743
- ! Node: Dependencies Between Macros80201
- ! Node: Prerequisite Macros80788
- ! Node: Suggested Ordering81837
- ! Node: Checking for Files83216
- ! Node: Checking for Symbols84002
- ! Node: Test Programs85481
- ! Node: Guidelines87146
- ! Node: Tricks88289
- ! Node: Multiple Cases89292
- ! Node: Makefiles90496
- ! Node: Predefined Variables91897
- ! Node: Installation Prefixes93405
- ! Node: VPATH Substitutions94975
- ! Node: Automatic Remaking96696
- ! Node: Invoking configure98280
- ! Node: Overriding variables101768
- ! Node: Invoking config.status103391
- ! Node: Example106370
- ! Node: Sample configure.in106950
- ! Node: Sample Makefile.in108087
- ! Node: Preprocessor Symbol Index112072
- ! Node: Macro Index117329
-
- End Tag Table
- diff -rc --new-file autoconf-1.11/autoconf.sh /gnu/src/amiga/autoconf-1.11/autoconf.sh
- *** autoconf-1.11/autoconf.sh Thu May 5 16:28:53 1994
- --- /gnu/src/amiga/autoconf-1.11/autoconf.sh Sun Jun 12 19:24:49 1994
- ***************
- *** 43,55 ****
- while test $# -gt 0 ; do
- case "z${1}" in
- z-h | z--help | z--h* )
- ! echo "${usage}" 1>&2; exit 0 ;;
- z--macrodir=* | z--m*=* )
- ! AC_MACRODIR="`echo \"${1}\" | sed -e 's/^[^=]*=//'`"
- shift ;;
- z-m | z--macrodir | z--m* )
- shift
- ! test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; }
- AC_MACRODIR="${1}"
- shift ;;
- z-v | z--version | z--v* )
- --- 43,55 ----
- while test $# -gt 0 ; do
- case "z${1}" in
- z-h | z--help | z--h* )
- ! /bin/echo "${usage}" 1>&2; exit 0 ;;
- z--macrodir=* | z--m*=* )
- ! AC_MACRODIR="`/bin/echo \"${1}\" | sed -e 's/^[^=]*=//'`"
- shift ;;
- z-m | z--macrodir | z--m* )
- shift
- ! test $# -eq 0 && { /bin/echo "${usage}" 1>&2; exit 1; }
- AC_MACRODIR="${1}"
- shift ;;
- z-v | z--version | z--v* )
- ***************
- *** 61,67 ****
- z- ) # Use stdin as input.
- break ;;
- z-* )
- ! echo "${usage}" 1>&2; exit 1 ;;
- * )
- break ;;
- esac
- --- 61,67 ----
- z- ) # Use stdin as input.
- break ;;
- z-* )
- ! /bin/echo "${usage}" 1>&2; exit 1 ;;
- * )
- break ;;
- esac
- ***************
- *** 71,77 ****
- case $# in
- 0) infile=configure.in ;;
- 1) infile="$1" ;;
- ! *) echo "$usage" >&2; exit 1 ;;
- esac
-
- trap 'rm -f $tmpin $tmpout; exit 1' 1 2 15
- --- 71,77 ----
- case $# in
- 0) infile=configure.in ;;
- 1) infile="$1" ;;
- ! *) /bin/echo "$usage" >&2; exit 1 ;;
- esac
-
- trap 'rm -f $tmpin $tmpout; exit 1' 1 2 15
- ***************
- *** 81,87 ****
- infile=$tmpin
- cat > $infile
- elif test ! -s "${infile}"; then
- ! echo "autoconf: ${infile}: No such file or directory" >&2
- exit 1
- fi
- fi
- --- 81,87 ----
- infile=$tmpin
- cat > $infile
- elif test ! -s "${infile}"; then
- ! /bin/echo "autoconf: ${infile}: No such file or directory" >&2
- exit 1
- fi
- fi
- ***************
- *** 103,109 ****
-
- status=0
- if grep "${pattern}" $tmpout > /dev/null 2>&1; then
- ! echo "autoconf: Undefined macros:" >&2
- grep "${pattern}" $tmpout | sed "s/.*\(${pattern}[_A-Z0-9]*\).*/\1/" |
- while read name; do
- grep -n $name $infile /dev/null
- --- 103,109 ----
-
- status=0
- if grep "${pattern}" $tmpout > /dev/null 2>&1; then
- ! /bin/echo "autoconf: Undefined macros:" >&2
- grep "${pattern}" $tmpout | sed "s/.*\(${pattern}[_A-Z0-9]*\).*/\1/" |
- while read name; do
- grep -n $name $infile /dev/null
- diff -rc --new-file autoconf-1.11/autoconf.texi /gnu/src/amiga/autoconf-1.11/autoconf.texi
- *** autoconf-1.11/autoconf.texi Thu May 12 20:17:59 1994
- --- /gnu/src/amiga/autoconf-1.11/autoconf.texi Sun Jun 12 19:24:56 1994
- ***************
- *** 1703,1709 ****
- AC_SIZEOF_TYPE(int *)
- @end example
- @noindent
- ! defines @code{SIZEOF_INT_P} to be 8 on DEC Alpha AXP systems.
- @end defmac
-
- @defmac AC_TEST_PROGRAM (@var{program}, @var{action-if-true} @r{[}, @var{action-if-false} @r{[}, @var{action-if-cross-compiling}@r{]]})
- --- 1703,1709 ----
- AC_SIZEOF_TYPE(int *)
- @end example
- @noindent
- ! defines @code{SIZEOF_INT_P} to be 64 on DEC Alpha AXP systems.
- @end defmac
-
- @defmac AC_TEST_PROGRAM (@var{program}, @var{action-if-true} @r{[}, @var{action-if-false} @r{[}, @var{action-if-cross-compiling}@r{]]})
- diff -rc --new-file autoconf-1.11/autoheader.sh /gnu/src/amiga/autoconf-1.11/autoheader.sh
- *** autoconf-1.11/autoheader.sh Thu May 5 16:19:11 1994
- --- /gnu/src/amiga/autoconf-1.11/autoheader.sh Sun Jun 12 19:31:08 1994
- ***************
- *** 43,55 ****
- while test $# -gt 0 ; do
- case "z${1}" in
- z-h | z--help | z--h* )
- ! echo "${usage}"; exit 0 ;;
- z--macrodir=* | z--m*=* )
- ! AC_MACRODIR="`echo \"${1}\" | sed -e 's/^[^=]*=//'`"
- shift ;;
- z-m | z--macrodir | z--m* )
- shift
- ! test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; }
- AC_MACRODIR="${1}"
- shift ;;
- z-v | z--version | z--v* )
- --- 43,55 ----
- while test $# -gt 0 ; do
- case "z${1}" in
- z-h | z--help | z--h* )
- ! /bin/echo "${usage}"; exit 0 ;;
- z--macrodir=* | z--m*=* )
- ! AC_MACRODIR="`/bin/echo \"${1}\" | sed -e 's/^[^=]*=//'`"
- shift ;;
- z-m | z--macrodir | z--m* )
- shift
- ! test $# -eq 0 && { /bin/echo "${usage}" 1>&2; exit 1; }
- AC_MACRODIR="${1}"
- shift ;;
- z-v | z--version | z--v* )
- ***************
- *** 60,66 ****
- z- ) # Use stdin as input.
- break ;;
- z-* )
- ! echo "${usage}" 1>&2; exit 1 ;;
- * )
- break ;;
- esac
- --- 60,66 ----
- z- ) # Use stdin as input.
- break ;;
- z-* )
- ! /bin/echo "${usage}" 1>&2; exit 1 ;;
- * )
- break ;;
- esac
- ***************
- *** 79,85 ****
- then infile=/dev/null
- else infile=configure.in; fi ;;
- 1) infile=$1 ;;
- ! *) echo "$usage" >&2; exit 1 ;;
- esac
-
- # These are the alternate definitions of the acgeneral.m4 macros we want to
- --- 79,85 ----
- then infile=/dev/null
- else infile=configure.in; fi ;;
- 1) infile=$1 ;;
- ! *) /bin/echo "$usage" >&2; exit 1 ;;
- esac
-
- # These are the alternate definitions of the acgeneral.m4 macros we want to
- ***************
- *** 125,131 ****
- # We extract assignments of SYMS, TYPES, FUNCS, HEADERS, and LIBS from the
- # modified autoconf processing of the input file. The sed hair is
- # necessary to win for multi-line macro invocations.
- ! eval "`echo \"$frob\" \
- | $M4 $MACROFILES - $infile \
- | sed -n -e '
- : again
- --- 125,131 ----
- # We extract assignments of SYMS, TYPES, FUNCS, HEADERS, and LIBS from the
- # modified autoconf processing of the input file. The sed hair is
- # necessary to win for multi-line macro invocations.
- ! eval "`/bin/echo \"$frob\" \
- | $M4 $MACROFILES - $infile \
- | sed -n -e '
- : again
- ***************
- *** 140,146 ****
- test -n "$print_version" && exit 0
-
- # Make SYMS newline-separated rather than blank-separated, and remove dups.
- ! syms="`for sym in $syms; do echo $sym; done | sort | uniq`"
-
- if test $# -eq 0; then
- tmpout=autoh$$
- --- 140,146 ----
- test -n "$print_version" && exit 0
-
- # Make SYMS newline-separated rather than blank-separated, and remove dups.
- ! syms="`for sym in $syms; do /bin/echo $sym; done | sort | uniq`"
-
- if test $# -eq 0; then
- tmpout=autoh$$
- ***************
- *** 150,156 ****
-
- # Don't write "do not edit" -- it will get copied into the
- # config.h, which it's ok to edit.
- ! echo "/* ${config_h}.in. Generated automatically from $infile by autoheader. */"
-
- test -f ${config_h}.top && cat ${config_h}.top
-
- --- 150,156 ----
-
- # Don't write "do not edit" -- it will get copied into the
- # config.h, which it's ok to edit.
- ! /bin/echo "/* ${config_h}.in. Generated automatically from $infile by autoheader. */"
-
- test -f ${config_h}.top && cat ${config_h}.top
-
- ***************
- *** 159,165 ****
- # Make sure the boundary of template files is also the boundary
- # of the paragraph. Extra newlines don't hurt since they will
- # be removed.
- ! for t in $TEMPLATES; do cat $t; echo; echo; done |
- # The sed script is suboptimal because it has to take care of
- # some broken seds (e.g. AIX) that remove '\n' from the
- # pattern/hold space if the line is empty. (junio@twinsun.com).
- --- 159,165 ----
- # Make sure the boundary of template files is also the boundary
- # of the paragraph. Extra newlines don't hurt since they will
- # be removed.
- ! for t in $TEMPLATES; do cat $t; /bin/echo; /bin/echo; done |
- # The sed script is suboptimal because it has to take care of
- # some broken seds (e.g. AIX) that remove '\n' from the
- # pattern/hold space if the line is empty. (junio@twinsun.com).
- ***************
- *** 177,208 ****
- tr @ \\012
- fi
-
- ! echo "$types" | tr , \\012 | sort | uniq | while read ctype; do
- test -z "$ctype" && continue
- # Solaris 2.3 tr rejects noncontiguous characters in character classes.
- ! sym="`echo "${ctype}" | tr '[a-z] *' '[A-Z]_P'`"
- ! echo "
- /* The number of bytes in a ${ctype}. */
- #undef SIZEOF_${sym}"
- done
-
- ! for func in `for x in $funcs; do echo $x; done | sort | uniq`; do
- ! sym="`echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
- ! echo "
- /* Define if you have ${func}. */
- #undef HAVE_${sym}"
- done
-
- ! for header in `for x in $headers; do echo $x; done | sort | uniq`; do
- ! sym="`echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
- ! echo "
- /* Define if you have the <${header}> header file. */
- #undef HAVE_${sym}"
- done
-
- ! for lib in `for x in $libs; do echo $x; done | sort | uniq`; do
- ! sym="`echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
- ! echo "
- /* Define if you have the ${lib} library (-l${lib}). */
- #undef HAVE_LIB${sym}"
- done
- --- 177,208 ----
- tr @ \\012
- fi
-
- ! /bin/echo "$types" | tr , \\012 | sort | uniq | while read ctype; do
- test -z "$ctype" && continue
- # Solaris 2.3 tr rejects noncontiguous characters in character classes.
- ! sym="`/bin/echo "${ctype}" | tr '[a-z] *' '[A-Z]_P'`"
- ! /bin/echo "
- /* The number of bytes in a ${ctype}. */
- #undef SIZEOF_${sym}"
- done
-
- ! for func in `for x in $funcs; do /bin/echo $x; done | sort | uniq`; do
- ! sym="`/bin/echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
- ! /bin/echo "
- /* Define if you have ${func}. */
- #undef HAVE_${sym}"
- done
-
- ! for header in `for x in $headers; do /bin/echo $x; done | sort | uniq`; do
- ! sym="`/bin/echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
- ! /bin/echo "
- /* Define if you have the <${header}> header file. */
- #undef HAVE_${sym}"
- done
-
- ! for lib in `for x in $libs; do /bin/echo $x; done | sort | uniq`; do
- ! sym="`/bin/echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
- ! /bin/echo "
- /* Define if you have the ${lib} library (-l${lib}). */
- #undef HAVE_LIB${sym}"
- done
- ***************
- *** 215,221 ****
- if fgrep $sym $TEMPLATES >/dev/null; then
- : # All is well.
- else
- ! echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
- status=1
- fi
- done
- --- 215,221 ----
- if fgrep $sym $TEMPLATES >/dev/null; then
- : # All is well.
- else
- ! /bin/echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
- status=1
- fi
- done
- diff -rc --new-file autoconf-1.11/configure /gnu/src/amiga/autoconf-1.11/configure
- *** autoconf-1.11/configure Thu May 12 19:58:03 1994
- --- /gnu/src/amiga/autoconf-1.11/configure Sun Jun 19 22:18:23 1994
- ***************
- *** 75,81 ****
- # options, so we can diagnose typos.
-
- case "$ac_option" in
- ! -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) ac_optarg= ;;
- esac
-
- --- 75,81 ----
- # options, so we can diagnose typos.
-
- case "$ac_option" in
- ! -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) ac_optarg= ;;
- esac
-
- ***************
- *** 87,107 ****
- build="$ac_optarg" ;;
-
- -disable-* | --disable-*)
- ! ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
- # Reject names that aren't valid shell variable names.
- ! if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
- ! echo "configure: $ac_feature: invalid feature name" >&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 aren't valid shell variable names.
- ! if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
- ! echo "configure: $ac_feature: invalid feature name" >&2; exit 1
- fi
- ! ac_feature=`echo $ac_feature| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- --- 87,107 ----
- build="$ac_optarg" ;;
-
- -disable-* | --disable-*)
- ! ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
- # Reject names that aren't valid shell variable names.
- ! if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
- ! /bin/echo "configure: $ac_feature: invalid feature name" >&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 aren't valid shell variable names.
- ! if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
- ! /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
- fi
- ! ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- ***************
- *** 197,212 ****
- verbose=yes ;;
-
- -version | --version | --versio | --versi | --vers)
- ! echo "configure generated by autoconf version 1.11"
- exit 0 ;;
-
- -with-* | --with-*)
- ! ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
- # Reject names that aren't valid shell variable names.
- ! if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
- ! echo "configure: $ac_package: invalid package name" >&2; exit 1
- fi
- ! ac_package=`echo $ac_package| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- --- 197,212 ----
- verbose=yes ;;
-
- -version | --version | --versio | --versi | --vers)
- ! /bin/echo "configure generated by autoconf version 1.11"
- exit 0 ;;
-
- -with-* | --with-*)
- ! ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
- # Reject names that aren't valid shell variable names.
- ! if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
- ! /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
- fi
- ! ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
- case "$ac_option" in
- *=*) ;;
- *) ac_optarg=yes ;;
- ***************
- *** 214,225 ****
- eval "with_${ac_package}='$ac_optarg'" ;;
-
- -without-* | --without-*)
- ! ac_package=`echo $ac_option|sed -e 's/-*without-//'`
- # Reject names that aren't valid shell variable names.
- ! if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
- ! echo "configure: $ac_package: invalid package name" >&2; exit 1
- fi
- ! ac_package=`echo $ac_package| sed 's/-/_/g'`
- eval "with_${ac_package}=no" ;;
-
- --x) with_x=yes ;; # Obsolete; use --with-x.
- --- 214,225 ----
- eval "with_${ac_package}='$ac_optarg'" ;;
-
- -without-* | --without-*)
- ! ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
- # Reject names that aren't valid shell variable names.
- ! if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
- ! /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
- fi
- ! ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
- eval "with_${ac_package}=no" ;;
-
- --x) with_x=yes ;; # Obsolete; use --with-x.
- ***************
- *** 238,252 ****
- | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
- x_libraries="$ac_optarg" ;;
-
- ! -*) echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
- ;;
-
- *)
- ! if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
- ! echo "configure: warning: $ac_option: invalid host type" >&2
- fi
- if test "x$nonopt" != xNONE; then
- ! echo "configure: can only configure for one host and one target at a time" >&2; exit 1
- fi
- nonopt="$ac_option"
- ;;
- --- 238,252 ----
- | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
- x_libraries="$ac_optarg" ;;
-
- ! -*) /bin/echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
- ;;
-
- *)
- ! if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
- ! /bin/echo "configure: warning: $ac_option: invalid host type" >&2
- fi
- if test "x$nonopt" != xNONE; then
- ! /bin/echo "configure: can only configure for one host and one target at a time" >&2; exit 1
- fi
- nonopt="$ac_option"
- ;;
- ***************
- *** 255,261 ****
- done
-
- if test -n "$ac_prev"; then
- ! echo "configure: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" >&2; exit 1
- fi
-
- trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
- --- 255,261 ----
- done
-
- if test -n "$ac_prev"; then
- ! /bin/echo "configure: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" >&2; exit 1
- fi
-
- trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
- ***************
- *** 284,290 ****
- # 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.
- --- 284,290 ----
- # 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.
- ***************
- *** 295,301 ****
- ac_srcdir_defaulted=yes
- # Try the directory containing this script, then `..'.
- 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
- --- 295,301 ----
- ac_srcdir_defaulted=yes
- # Try the directory containing this script, then `..'.
- 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
- ***************
- *** 304,312 ****
- fi
- if test ! -r $srcdir/$ac_unique_file; then
- if test x$ac_srcdir_defaulted = xyes; then
- ! echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
- else
- ! echo "configure: can not find sources in ${srcdir}" >&2; exit 1
- fi
- fi
- ac_ext=c
- --- 304,312 ----
- fi
- if test ! -r $srcdir/$ac_unique_file; then
- if test x$ac_srcdir_defaulted = xyes; then
- ! /bin/echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
- else
- ! /bin/echo "configure: can not find sources in ${srcdir}" >&2; exit 1
- fi
- fi
- ac_ext=c
- ***************
- *** 320,326 ****
- if test -z "$M4"; then
- # Extract the first word of `$ac_prog', so it can be a program name with args.
- set ac_dummy $ac_prog; ac_word=$2
- ! test -n "$silent" || echo "checking for $ac_word"
- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- for ac_dir in $PATH; do
- test -z "$ac_dir" && ac_dir=.
- --- 320,326 ----
- if test -z "$M4"; then
- # Extract the first word of `$ac_prog', so it can be a program name with args.
- set ac_dummy $ac_prog; ac_word=$2
- ! test -n "$silent" || /bin/echo "checking for $ac_word"
- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- for ac_dir in $PATH; do
- test -z "$ac_dir" && ac_dir=.
- ***************
- *** 332,338 ****
- IFS="$ac_save_ifs"
- fi
-
- ! test -n "$M4" && test -n "$verbose" && echo " setting M4 to $M4"
-
- test -n "$M4" && break
- done
- --- 332,338 ----
- IFS="$ac_save_ifs"
- fi
-
- ! test -n "$M4" && test -n "$verbose" && /bin/echo " setting M4 to $M4"
-
- test -n "$M4" && break
- done
- ***************
- *** 355,365 ****
- # Avoid using ./install, which might have been erroneously created
- # by make from ./install.sh.
- if test -z "${INSTALL}"; then
- ! test -n "$silent" || echo "checking for a BSD compatible install"
- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- for ac_dir in $PATH; do
- case "$ac_dir" in
- ! ''|.|/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
- *)
- # OSF1 and SCO ODT 3.0 have their own names for install.
- for ac_prog in installbsd scoinst install; do
- --- 355,365 ----
- # Avoid using ./install, which might have been erroneously created
- # by make from ./install.sh.
- if test -z "${INSTALL}"; then
- ! test -n "$silent" || /bin/echo "checking for a BSD compatible install"
- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- for ac_dir in $PATH; do
- case "$ac_dir" in
- ! ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
- *)
- # OSF1 and SCO ODT 3.0 have their own names for install.
- for ac_prog in installbsd scoinst install; do
- ***************
- *** 390,406 ****
- done
- fi
- if test -z "$INSTALL"; then
- ! echo "configure: can not find install.sh in ${srcdir} or ${srcdir}/.. or ${srcdir}/../.." >&2; exit 1
- fi
- ! test -n "$verbose" && echo " setting INSTALL to $INSTALL"
-
- # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
- # It thinks the first close brace ends the variable substitution.
- test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
- ! test -n "$verbose" && echo " setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
-
- test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
- ! test -n "$verbose" && echo " setting INSTALL_DATA to $INSTALL_DATA"
-
-
- # The preferred way to propogate these variables is regular @ substitutions.
- --- 390,406 ----
- done
- fi
- if test -z "$INSTALL"; then
- ! /bin/echo "configure: can not find install.sh in ${srcdir} or ${srcdir}/.. or ${srcdir}/../.." >&2; exit 1
- fi
- ! test -n "$verbose" && /bin/echo " setting INSTALL to $INSTALL"
-
- # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
- # It thinks the first close brace ends the variable substitution.
- test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
- ! test -n "$verbose" && /bin/echo " setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
-
- test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
- ! test -n "$verbose" && /bin/echo " setting INSTALL_DATA to $INSTALL_DATA"
-
-
- # The preferred way to propogate these variables is regular @ substitutions.
- ***************
- *** 433,440 ****
- # Substitute for predefined variables.
-
- trap 'rm -f config.status; exit 1' 1 2 15
- ! echo creating config.status
- ! rm -f config.status
- cat > config.status <<EOF
- #!/bin/sh
- # Generated automatically by configure.
- --- 433,442 ----
- # Substitute for predefined variables.
-
- trap 'rm -f config.status; exit 1' 1 2 15
- ! /bin/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.
- ***************
- *** 449,462 ****
- do
- case "\$ac_option" in
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ! echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
- exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
- -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
- ! echo "config.status generated by autoconf version 1.11"
- exit 0 ;;
- -help | --help | --hel | --he | --h)
- ! echo "\$ac_cs_usage"; exit 0 ;;
- ! *) echo "\$ac_cs_usage"; exit 1 ;;
- esac
- done
-
- --- 451,464 ----
- do
- case "\$ac_option" in
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ! /bin/echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
- exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
- -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
- ! /bin/echo "config.status generated by autoconf version 1.11"
- exit 0 ;;
- -help | --help | --hel | --he | --h)
- ! /bin/echo "\$ac_cs_usage"; exit 0 ;;
- ! *) /bin/echo "\$ac_cs_usage"; exit 1 ;;
- esac
- done
-
- ***************
- *** 482,488 ****
- CONFIG_FILES=${CONFIG_FILES-"Makefile"}
- for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
- # 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"
- --- 484,490 ----
- CONFIG_FILES=${CONFIG_FILES-"Makefile"}
- for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
- # 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"
- ***************
- *** 492,514 ****
- fi
-
- # A "../" for each directory in $ac_dir_suffix.
- ! ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
- case "$ac_given_srcdir" in
- .) srcdir=.
- if test -z "$ac_dir_suffix"; 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"
- top_srcdir="$ac_dots$ac_given_srcdir" ;;
- esac
-
- ! echo creating "$ac_file"
- rm -f "$ac_file"
- ! comment_str="Generated automatically from `echo $ac_file|sed 's|.*/||'`.in by configure."
- case "$ac_file" in
- ! *.c | *.h | *.C | *.cc | *.m ) echo "/* $comment_str */" > "$ac_file" ;;
- ! * ) echo "# $comment_str" > "$ac_file" ;;
- esac
- sed -e "
- $ac_prsub
- --- 494,516 ----
- fi
-
- # A "../" for each directory in $ac_dir_suffix.
- ! ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
- case "$ac_given_srcdir" in
- .) srcdir=.
- if test -z "$ac_dir_suffix"; 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"
- top_srcdir="$ac_dots$ac_given_srcdir" ;;
- esac
-
- ! /bin/echo creating "$ac_file"
- rm -f "$ac_file"
- ! comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
- case "$ac_file" in
- ! *.c | *.h | *.C | *.cc | *.m ) /bin/echo "/* $comment_str */" > "$ac_file" ;;
- ! * ) /bin/echo "# $comment_str" > "$ac_file" ;;
- esac
- sed -e "
- $ac_prsub
- diff -rc --new-file autoconf-1.11/mkinstalldirs /gnu/src/amiga/autoconf-1.11/mkinstalldirs
- *** autoconf-1.11/mkinstalldirs Sat Mar 26 04:01:14 1994
- --- /gnu/src/amiga/autoconf-1.11/mkinstalldirs Sun Jun 12 19:37:14 1994
- ***************
- *** 8,14 ****
- errstatus=0
-
- for file in ${1+"$@"} ; do
- ! set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
- shift
-
- pathcomp=
- --- 8,14 ----
- errstatus=0
-
- for file in ${1+"$@"} ; do
- ! set fnord `/bin/echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
- shift
-
- pathcomp=
- ***************
- *** 19,25 ****
- esac
-
- if test ! -d "$pathcomp"; then
- ! echo "mkdir $pathcomp" 1>&2
- mkdir "$pathcomp" || errstatus=$?
- fi
-
- --- 19,25 ----
- esac
-
- if test ! -d "$pathcomp"; then
- ! /bin/echo "mkdir $pathcomp" 1>&2
- mkdir "$pathcomp" || errstatus=$?
- fi
-
-