home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / diffs / autoconf-1.11.diffs < prev    next >
Encoding:
Text File  |  1995-01-22  |  66.8 KB  |  1,996 lines

  1. diff -rc --new-file autoconf-1.11/Makefile.in /gnu/src/amiga/autoconf-1.11/Makefile.in
  2. *** autoconf-1.11/Makefile.in    Thu May  5 19:18:49 1994
  3. --- /gnu/src/amiga/autoconf-1.11/Makefile.in    Sun Jun 12 19:24:24 1994
  4. ***************
  5. *** 27,33 ****
  6.   TEXI2DVI = texi2dvi
  7.   M4 = @M4@
  8.   
  9. ! prefix = /usr/local
  10.   exec_prefix = $(prefix)
  11.   
  12.   # Directory in which to install scripts.
  13. --- 27,33 ----
  14.   TEXI2DVI = texi2dvi
  15.   M4 = @M4@
  16.   
  17. ! prefix = /gnu
  18.   exec_prefix = $(prefix)
  19.   
  20.   # Directory in which to install scripts.
  21. diff -rc --new-file autoconf-1.11/Product-Info /gnu/src/amiga/autoconf-1.11/Product-Info
  22. *** autoconf-1.11/Product-Info    Thu Jan  1 00:00:00 1970
  23. --- /gnu/src/amiga/autoconf-1.11/Product-Info    Mon Jul 11 22:57:17 1994
  24. ***************
  25. *** 0 ****
  26. --- 1,28 ----
  27. + .name
  28. + autoconf
  29. + .fullname
  30. + GNU autoconfig
  31. + .type
  32. + Programmer Tool
  33. + .short
  34. + GNU automatic configuration generator.
  35. + .description
  36. + Autoconf is an extensible package of m4 macros that produce shell
  37. + scripts to automatically configure software source code packages.
  38. + These scripts can adapt the packages to many kinds of UNIX-like
  39. + systems without manual user intervention.  Autoconf creates a
  40. + configuration script for a package from a template file that lists the
  41. + operating system features that the package can use, in the form of m4
  42. + macro calls.
  43. + Autoconf requires GNU m4.  The configuration scripts produced by
  44. + Autoconf are independent of Autoconf when they are run, so their users
  45. + do not need to have Autoconf (or GNU m4).
  46. + .version
  47. + 1.11
  48. + .author
  49. + Free Software Foundation
  50. + .distribution
  51. + GNU Public License
  52. + .described-by
  53. + Fred Fish (fnf@amigalib.com)
  54. diff -rc --new-file autoconf-1.11/acgeneral.m4 /gnu/src/amiga/autoconf-1.11/acgeneral.m4
  55. *** autoconf-1.11/acgeneral.m4    Thu May 12 14:11:17 1994
  56. --- /gnu/src/amiga/autoconf-1.11/acgeneral.m4    Sun Jun 12 20:39:31 1994
  57. ***************
  58. *** 143,149 ****
  59.   
  60.     case "$ac_option" in
  61.   changequote(,)dnl
  62. !   -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  63.   changequote([,])dnl
  64.     *) ac_optarg= ;;
  65.     esac
  66. --- 143,149 ----
  67.   
  68.     case "$ac_option" in
  69.   changequote(,)dnl
  70. !   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  71.   changequote([,])dnl
  72.     *) ac_optarg= ;;
  73.     esac
  74. ***************
  75. *** 156,180 ****
  76.       build="$ac_optarg" ;;
  77.   
  78.     -disable-* | --disable-*)
  79. !     ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  80.       # Reject names that aren't valid shell variable names.
  81.   changequote(,)dnl
  82. !     if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  83.   changequote([,])dnl
  84.         AC_ERROR($ac_feature: invalid feature name)
  85.       fi
  86. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  87.       eval "enable_${ac_feature}=no" ;;
  88.   
  89.     -enable-* | --enable-*)
  90. !     ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  91.       # Reject names that aren't valid shell variable names.
  92.   changequote(,)dnl
  93. !     if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  94.   changequote([,])dnl
  95.         AC_ERROR($ac_feature: invalid feature name)
  96.       fi
  97. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  98.       case "$ac_option" in
  99.         *=*) ;;
  100.         *) ac_optarg=yes ;;
  101. --- 156,180 ----
  102.       build="$ac_optarg" ;;
  103.   
  104.     -disable-* | --disable-*)
  105. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  106.       # Reject names that aren't valid shell variable names.
  107.   changequote(,)dnl
  108. !     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  109.   changequote([,])dnl
  110.         AC_ERROR($ac_feature: invalid feature name)
  111.       fi
  112. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  113.       eval "enable_${ac_feature}=no" ;;
  114.   
  115.     -enable-* | --enable-*)
  116. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  117.       # Reject names that aren't valid shell variable names.
  118.   changequote(,)dnl
  119. !     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  120.   changequote([,])dnl
  121.         AC_ERROR($ac_feature: invalid feature name)
  122.       fi
  123. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  124.       case "$ac_option" in
  125.         *=*) ;;
  126.         *) ac_optarg=yes ;;
  127. ***************
  128. *** 270,287 ****
  129.       verbose=yes ;;
  130.   
  131.     -version | --version | --versio | --versi | --vers)
  132. !     echo "configure generated by autoconf version AC_ACVERSION"
  133.       exit 0 ;;
  134.   
  135.     -with-* | --with-*)
  136. !     ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  137.       # Reject names that aren't valid shell variable names.
  138.   changequote(,)dnl
  139. !     if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  140.   changequote([,])dnl
  141.         AC_ERROR($ac_package: invalid package name)
  142.       fi
  143. !     ac_package=`echo $ac_package| sed 's/-/_/g'`
  144.       case "$ac_option" in
  145.         *=*) ;;
  146.         *) ac_optarg=yes ;;
  147. --- 270,287 ----
  148.       verbose=yes ;;
  149.   
  150.     -version | --version | --versio | --versi | --vers)
  151. !     /bin/echo "configure generated by autoconf version AC_ACVERSION"
  152.       exit 0 ;;
  153.   
  154.     -with-* | --with-*)
  155. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  156.       # Reject names that aren't valid shell variable names.
  157.   changequote(,)dnl
  158. !     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  159.   changequote([,])dnl
  160.         AC_ERROR($ac_package: invalid package name)
  161.       fi
  162. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  163.       case "$ac_option" in
  164.         *=*) ;;
  165.         *) ac_optarg=yes ;;
  166. ***************
  167. *** 289,302 ****
  168.       eval "with_${ac_package}='$ac_optarg'" ;;
  169.   
  170.     -without-* | --without-*)
  171. !     ac_package=`echo $ac_option|sed -e 's/-*without-//'`
  172.       # Reject names that aren't valid shell variable names.
  173.   changequote(,)dnl
  174. !     if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  175.   changequote([,])dnl
  176.         AC_ERROR($ac_package: invalid package name)
  177.       fi
  178. !     ac_package=`echo $ac_package| sed 's/-/_/g'`
  179.       eval "with_${ac_package}=no" ;;
  180.   
  181.     --x) with_x=yes ;; # Obsolete; use --with-x.
  182. --- 289,302 ----
  183.       eval "with_${ac_package}='$ac_optarg'" ;;
  184.   
  185.     -without-* | --without-*)
  186. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  187.       # Reject names that aren't valid shell variable names.
  188.   changequote(,)dnl
  189. !     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  190.   changequote([,])dnl
  191.         AC_ERROR($ac_package: invalid package name)
  192.       fi
  193. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  194.       eval "with_${ac_package}=no" ;;
  195.   
  196.     --x) with_x=yes ;; # Obsolete; use --with-x.
  197. ***************
  198. *** 320,326 ****
  199.   
  200.     *) 
  201.   changequote(,)dnl
  202. !     if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  203.   changequote([,])dnl
  204.         AC_WARN($ac_option: invalid host type)
  205.       fi
  206. --- 320,326 ----
  207.   
  208.     *) 
  209.   changequote(,)dnl
  210. !     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  211.   changequote([,])dnl
  212.         AC_WARN($ac_option: invalid host type)
  213.       fi
  214. ***************
  215. *** 334,340 ****
  216.   done
  217.   
  218.   if test -n "$ac_prev"; then
  219. !   AC_ERROR(missing argument to --`echo $ac_prev | sed 's/_/-/g'`)
  220.   fi
  221.   ])dnl
  222.   dnl
  223. --- 334,340 ----
  224.   done
  225.   
  226.   if test -n "$ac_prev"; then
  227. !   AC_ERROR(missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`)
  228.   fi
  229.   ])dnl
  230.   dnl
  231. ***************
  232. *** 371,377 ****
  233.   # confdefs.h avoids OS command line length limits that DEFS can exceed.
  234.   rm -rf conftest* confdefs.h
  235.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  236. ! echo > confdefs.h
  237.   
  238.   # A filename unique to this package, relative to the directory that
  239.   # configure is in, which we can look for to find out if srcdir is correct.
  240. --- 371,377 ----
  241.   # confdefs.h avoids OS command line length limits that DEFS can exceed.
  242.   rm -rf conftest* confdefs.h
  243.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  244. ! /bin/echo > confdefs.h
  245.   
  246.   # A filename unique to this package, relative to the directory that
  247.   # configure is in, which we can look for to find out if srcdir is correct.
  248. ***************
  249. *** 383,389 ****
  250.     # Try the directory containing this script, then `..'.
  251.     ac_prog=[$]0
  252.   changequote(,)dnl
  253. !   ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  254.   changequote([,])dnl
  255.     test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  256.     srcdir=$ac_confdir
  257. --- 383,389 ----
  258.     # Try the directory containing this script, then `..'.
  259.     ac_prog=[$]0
  260.   changequote(,)dnl
  261. !   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  262.   changequote([,])dnl
  263.     test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  264.     srcdir=$ac_confdir
  265. ***************
  266. *** 438,444 ****
  267.       if test $ac_dir != . && test -f $ac_dir/$1; then
  268.   changequote(,)dnl
  269.         # Not all systems have dirname.
  270. !       prefix=`echo $ac_dir|sed 's%/[^/][^/]*$%%'`
  271.   changequote([,])dnl
  272.         break
  273.       fi
  274. --- 438,444 ----
  275.       if test $ac_dir != . && test -f $ac_dir/$1; then
  276.   changequote(,)dnl
  277.         # Not all systems have dirname.
  278. !       prefix=`/bin/echo $ac_dir|sed 's%/[^/][^/]*$%%'`
  279.   changequote([,])dnl
  280.         break
  281.       fi
  282. ***************
  283. *** 531,541 ****
  284.   test -n "$verbose" && \
  285.   ifelse($#, 2,
  286.   [define([AC_VAL], $2)dnl
  287. ! echo "    defining" $1 to be ifelse(AC_VAL,, empty, "AC_QUOTE_SQUOTE(AC_VAL)")],
  288.   [define([AC_VAL], 1)dnl
  289. ! echo "    defining $1"])
  290.   dnl
  291. ! echo "[#][define]" $1 "AC_QUOTE_SQUOTE(AC_VAL)" >> confdefs.h
  292.   dnl Define DEFS even if AC_CONFIG_NAMES for use in user case statements.
  293.   DEFS="$DEFS -D$1=AC_QUOTE_SQUOTE(AC_VAL)"
  294.   ifdef([AC_CONFIG_NAMES],
  295. --- 531,541 ----
  296.   test -n "$verbose" && \
  297.   ifelse($#, 2,
  298.   [define([AC_VAL], $2)dnl
  299. ! /bin/echo "    defining" $1 to be ifelse(AC_VAL,, empty, "AC_QUOTE_SQUOTE(AC_VAL)")],
  300.   [define([AC_VAL], 1)dnl
  301. ! /bin/echo "    defining $1"])
  302.   dnl
  303. ! /bin/echo "[#][define]" $1 "AC_QUOTE_SQUOTE(AC_VAL)" >> confdefs.h
  304.   dnl Define DEFS even if AC_CONFIG_NAMES for use in user case statements.
  305.   DEFS="$DEFS -D$1=AC_QUOTE_SQUOTE(AC_VAL)"
  306.   ifdef([AC_CONFIG_NAMES],
  307. ***************
  308. *** 584,599 ****
  309.   dnl
  310.   dnl
  311.   define(AC_CHECKING,
  312. ! [test -n "$silent" || echo "checking $1"])dnl
  313.   dnl
  314.   define(AC_VERBOSE,
  315. ! [test -n "$verbose" && echo "    $1"])dnl
  316.   dnl
  317.   define(AC_WARN,
  318. ! [echo "configure: warning: $1" >&2])dnl
  319.   dnl
  320.   define(AC_ERROR,
  321. ! [echo "configure: $1" >&2; exit 1])dnl
  322.   dnl
  323.   dnl
  324.   dnl Selecting which language to use for testing
  325. --- 584,599 ----
  326.   dnl
  327.   dnl
  328.   define(AC_CHECKING,
  329. ! [test -n "$silent" || /bin/echo "checking $1"])dnl
  330.   dnl
  331.   define(AC_VERBOSE,
  332. ! [test -n "$verbose" && /bin/echo "    $1"])dnl
  333.   dnl
  334.   define(AC_WARN,
  335. ! [/bin/echo "configure: warning: $1" >&2])dnl
  336.   dnl
  337.   define(AC_ERROR,
  338. ! [/bin/echo "configure: $1" >&2; exit 1])dnl
  339.   dnl
  340.   dnl
  341.   dnl Selecting which language to use for testing
  342. ***************
  343. *** 700,706 ****
  344.   ifelse([$3],,, [test -n "[$]$1" || $1="$3"
  345.   ])])dnl
  346.   define(AC_HEADER_EGREP,
  347. ! [AC_REQUIRE_CPP()AC_PROVIDE([$0])echo '#include "confdefs.h"
  348.   #include <$2>' > conftest.${ac_ext}
  349.   eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  350.   if egrep "$1" conftest.out >/dev/null 2>&1; then
  351. --- 700,706 ----
  352.   ifelse([$3],,, [test -n "[$]$1" || $1="$3"
  353.   ])])dnl
  354.   define(AC_HEADER_EGREP,
  355. ! [AC_REQUIRE_CPP()AC_PROVIDE([$0])/bin/echo '#include "confdefs.h"
  356.   #include <$2>' > conftest.${ac_ext}
  357.   eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  358.   if egrep "$1" conftest.out >/dev/null 2>&1; then
  359. ***************
  360. *** 856,862 ****
  361.   [for ac_func in $1
  362.   do
  363.   changequote(,)dnl
  364. ! ac_tr_func=HAVE_`echo $ac_func | tr '[a-z]' '[A-Z]'`
  365.   changequote([,])dnl
  366.   AC_FUNC_CHECK(${ac_func},
  367.   AC_DEFINE(${ac_tr_func}))dnl
  368. --- 856,862 ----
  369.   [for ac_func in $1
  370.   do
  371.   changequote(,)dnl
  372. ! ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
  373.   changequote([,])dnl
  374.   AC_FUNC_CHECK(${ac_func},
  375.   AC_DEFINE(${ac_tr_func}))dnl
  376. ***************
  377. *** 868,874 ****
  378.   for ac_hdr in $1
  379.   do
  380.   changequote(,)dnl
  381. ! ac_tr_hdr=HAVE_`echo $ac_hdr | tr '[a-z]./' '[A-Z]__'`
  382.   changequote([,])dnl
  383.   AC_HEADER_CHECK(${ac_hdr},
  384.   AC_DEFINE(${ac_tr_hdr}))dnl
  385. --- 868,874 ----
  386.   for ac_hdr in $1
  387.   do
  388.   changequote(,)dnl
  389. ! ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./' '[A-Z]__'`
  390.   changequote([,])dnl
  391.   AC_HEADER_CHECK(${ac_hdr},
  392.   AC_DEFINE(${ac_tr_hdr}))dnl
  393. ***************
  394. *** 968,975 ****
  395.   divert(0)dnl
  396.   
  397.   trap 'rm -f config.status; exit 1' 1 2 15
  398. ! echo creating config.status
  399. ! rm -f config.status
  400.   cat > config.status <<EOF
  401.   #!/bin/sh
  402.   # Generated automatically by configure.
  403. --- 968,977 ----
  404.   divert(0)dnl
  405.   
  406.   trap 'rm -f config.status; exit 1' 1 2 15
  407. ! /bin/echo creating config.status
  408. ! # Some systems, like AmigaDOS, won't allow you to remove a script that is
  409. ! # being executed, so just move it out of the way instead.
  410. ! if test -f config.status; then mv config.status config.status.old; else true; fi
  411.   cat > config.status <<EOF
  412.   #!/bin/sh
  413.   # Generated automatically by configure.
  414. ***************
  415. *** 988,1001 ****
  416.   do
  417.     case "[\$]ac_option" in
  418.     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  419. !     echo running [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]configure_args --no-create
  420.       exec [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]configure_args --no-create ;;
  421.     -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  422. !     echo "config.status generated by autoconf version AC_ACVERSION"
  423.       exit 0 ;;
  424.     -help | --help | --hel | --he | --h)
  425. !     echo "[\$]ac_cs_usage"; exit 0 ;;
  426. !   *) echo "[\$]ac_cs_usage"; exit 1 ;;
  427.     esac
  428.   done
  429.   
  430. --- 990,1003 ----
  431.   do
  432.     case "[\$]ac_option" in
  433.     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  434. !     /bin/echo running [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]configure_args --no-create
  435.       exec [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]configure_args --no-create ;;
  436.     -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  437. !     /bin/echo "config.status generated by autoconf version AC_ACVERSION"
  438.       exit 0 ;;
  439.     -help | --help | --hel | --he | --h)
  440. !     /bin/echo "[\$]ac_cs_usage"; exit 0 ;;
  441. !   *) /bin/echo "[\$]ac_cs_usage"; exit 1 ;;
  442.     esac
  443.   done
  444.   
  445. ***************
  446. *** 1013,1019 ****
  447.   for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  448.     # Remove last slash and all that follows it.  Not all systems have dirname.
  449.   changequote(,)dnl
  450. !   ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
  451.   changequote([,])dnl
  452.     if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  453.       # The file is in a subdirectory.
  454. --- 1015,1021 ----
  455.   for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  456.     # Remove last slash and all that follows it.  Not all systems have dirname.
  457.   changequote(,)dnl
  458. !   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  459.   changequote([,])dnl
  460.     if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  461.       # The file is in a subdirectory.
  462. ***************
  463. *** 1025,1048 ****
  464.   
  465.   changequote(,)dnl
  466.     # A "../" for each directory in $ac_dir_suffix.
  467. !   ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  468.   changequote([,])dnl
  469.     case "$ac_given_srcdir" in
  470.     .)  srcdir=.
  471.         if test -z "$ac_dir_suffix"; then top_srcdir=.
  472. !       else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
  473.     /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  474.     *) # Relative path.
  475.       srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  476.       top_srcdir="$ac_dots$ac_given_srcdir" ;;
  477.     esac
  478.   
  479. !   echo creating "$ac_file"
  480.     rm -f "$ac_file"
  481. !   comment_str="Generated automatically from `echo $ac_file|sed 's|.*/||'`.in by configure."
  482.     case "$ac_file" in
  483. !     *.c | *.h | *.C | *.cc | *.m )  echo "/* $comment_str */" > "$ac_file" ;;
  484. !     * )          echo "# $comment_str"     > "$ac_file" ;;
  485.     esac
  486.     sed -e "
  487.   $ac_prsub
  488. --- 1027,1050 ----
  489.   
  490.   changequote(,)dnl
  491.     # A "../" for each directory in $ac_dir_suffix.
  492. !   ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  493.   changequote([,])dnl
  494.     case "$ac_given_srcdir" in
  495.     .)  srcdir=.
  496.         if test -z "$ac_dir_suffix"; then top_srcdir=.
  497. !       else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
  498.     /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  499.     *) # Relative path.
  500.       srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  501.       top_srcdir="$ac_dots$ac_given_srcdir" ;;
  502.     esac
  503.   
  504. !   /bin/echo creating "$ac_file"
  505.     rm -f "$ac_file"
  506. !   comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
  507.     case "$ac_file" in
  508. !     *.c | *.h | *.C | *.cc | *.m )  /bin/echo "/* $comment_str */" > "$ac_file" ;;
  509. !     * )          /bin/echo "# $comment_str"     > "$ac_file" ;;
  510.     esac
  511.     sed -e "
  512.   $ac_prsub
  513. ***************
  514. *** 1115,1123 ****
  515.     sed ${ac_max_sh_lines}q conftest.sh > conftest.s1 # Like head -9.
  516.     sed 1,${ac_max_sh_lines}d conftest.sh > conftest.s2 # Like tail +10.
  517.     # Write a limited-size here document to append to conftest.sed.
  518. !   echo 'cat >> conftest.sed <<CONFEOF' >> config.status
  519.     cat conftest.s1 >> config.status
  520. !   echo 'CONFEOF' >> config.status
  521.     rm -f conftest.s1 conftest.sh
  522.     mv conftest.s2 conftest.sh
  523.   done
  524. --- 1117,1125 ----
  525.     sed ${ac_max_sh_lines}q conftest.sh > conftest.s1 # Like head -9.
  526.     sed 1,${ac_max_sh_lines}d conftest.sh > conftest.s2 # Like tail +10.
  527.     # Write a limited-size here document to append to conftest.sed.
  528. !   /bin/echo 'cat >> conftest.sed <<CONFEOF' >> config.status
  529.     cat conftest.s1 >> config.status
  530. !   /bin/echo 'CONFEOF' >> config.status
  531.     rm -f conftest.s1 conftest.sh
  532.     mv conftest.s2 conftest.sh
  533.   done
  534. ***************
  535. *** 1140,1146 ****
  536.   
  537.   CONFIG_HEADERS=${CONFIG_HEADERS-"AC_CONFIG_NAMES"}
  538.   for ac_file in .. ${CONFIG_HEADERS}; do if test "x$ac_file" != x..; then
  539. !   echo creating $ac_file
  540.   
  541.     cp $ac_given_srcdir/$ac_file.in conftest.h1
  542.     cp conftest.sed conftest.stm
  543. --- 1142,1148 ----
  544.   
  545.   CONFIG_HEADERS=${CONFIG_HEADERS-"AC_CONFIG_NAMES"}
  546.   for ac_file in .. ${CONFIG_HEADERS}; do if test "x$ac_file" != x..; then
  547. !   /bin/echo creating $ac_file
  548.   
  549.     cp $ac_given_srcdir/$ac_file.in conftest.h1
  550.     cp conftest.sed conftest.stm
  551. ***************
  552. *** 1157,1168 ****
  553.       mv conftest.s2 conftest.stm
  554.     done
  555.     rm -f conftest.stm conftest.h
  556. !   echo "/* $ac_file.  Generated automatically by configure.  */" > conftest.h
  557.     cat conftest.h1 >> conftest.h
  558.     rm -f conftest.h1
  559.     if cmp -s $ac_file conftest.h 2>/dev/null; then
  560.       # The file exists and we would not be changing it.
  561. !     echo "$ac_file is unchanged"
  562.       rm -f conftest.h
  563.     else
  564.       rm -f $ac_file
  565. --- 1159,1170 ----
  566.       mv conftest.s2 conftest.stm
  567.     done
  568.     rm -f conftest.stm conftest.h
  569. !   /bin/echo "/* $ac_file.  Generated automatically by configure.  */" > conftest.h
  570.     cat conftest.h1 >> conftest.h
  571.     rm -f conftest.h1
  572.     if cmp -s $ac_file conftest.h 2>/dev/null; then
  573.       # The file exists and we would not be changing it.
  574. !     /bin/echo "$ac_file is unchanged"
  575.       rm -f conftest.h
  576.     else
  577.       rm -f $ac_file
  578. diff -rc --new-file autoconf-1.11/acspecific.m4 /gnu/src/amiga/autoconf-1.11/acspecific.m4
  579. *** autoconf-1.11/acspecific.m4    Sun May  8 02:23:39 1994
  580. --- /gnu/src/amiga/autoconf-1.11/acspecific.m4    Sun Jun 12 19:28:25 1994
  581. ***************
  582. *** 76,82 ****
  583.   dnl
  584.   define(AC_MINUS_C_MINUS_O,
  585.   [AC_CHECKING(whether $CC and cc understand -c and -o together)
  586. ! echo 'foo(){}' > conftest.c
  587.   # Make sure it works both with $CC and with simple cc.
  588.   # We do the test twice because some compilers refuse to overwrite an
  589.   # existing .o file with -o, though they will create one.
  590. --- 76,82 ----
  591.   dnl
  592.   define(AC_MINUS_C_MINUS_O,
  593.   [AC_CHECKING(whether $CC and cc understand -c and -o together)
  594. ! /bin/echo 'foo(){}' > conftest.c
  595.   # Make sure it works both with $CC and with simple cc.
  596.   # We do the test twice because some compilers refuse to overwrite an
  597.   # existing .o file with -o, though they will create one.
  598. ***************
  599. *** 104,110 ****
  600.   define(AC_SET_MAKE,
  601.   [cat > conftestmake <<'EOF'
  602.   all:
  603. !     @echo 'ac_maketemp="${MAKE}"'
  604.   EOF
  605.   changequote(,)dnl
  606.   # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  607. --- 104,110 ----
  608.   define(AC_SET_MAKE,
  609.   [cat > conftestmake <<'EOF'
  610.   all:
  611. !     @/bin/echo 'ac_maketemp="${MAKE}"'
  612.   EOF
  613.   changequote(,)dnl
  614.   # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  615. ***************
  616. *** 180,186 ****
  617.   #
  618.   # The minimal lex program is just a single line: %%.  But some broken lexes
  619.   # (Solaris, I think it was) want two %% lines, so accommodate them.
  620. !   echo '%%
  621.   %%' | ${LEX}
  622.   if test -f lex.yy.c; then
  623.     LEX_OUTPUT_ROOT=lex.yy
  624. --- 180,186 ----
  625.   #
  626.   # The minimal lex program is just a single line: %%.  But some broken lexes
  627.   # (Solaris, I think it was) want two %% lines, so accommodate them.
  628. !   /bin/echo '%%
  629.   %%' | ${LEX}
  630.   if test -f lex.yy.c; then
  631.     LEX_OUTPUT_ROOT=lex.yy
  632. ***************
  633. *** 192,198 ****
  634.     LEX_OUTPUT_ROOT=
  635.   fi
  636.   if test -n "$LEX_OUTPUT_ROOT"; then
  637. !   echo 'extern char *yytext; main () { exit (0); }' >>$LEX_OUTPUT_ROOT.c
  638.     ac_save_LIBS="$LIBS"
  639.     LIBS="$LIBS $LEXLIB"
  640.     AC_TEST_PROGRAM(`cat $LEX_OUTPUT_ROOT.c`, AC_DEFINE(YYTEXT_POINTER))
  641. --- 192,198 ----
  642.     LEX_OUTPUT_ROOT=
  643.   fi
  644.   if test -n "$LEX_OUTPUT_ROOT"; then
  645. !   /bin/echo 'extern char *yytext; main () { exit (0); }' >>$LEX_OUTPUT_ROOT.c
  646.     ac_save_LIBS="$LIBS"
  647.     LIBS="$LIBS $LEXLIB"
  648.     AC_TEST_PROGRAM(`cat $LEX_OUTPUT_ROOT.c`, AC_DEFINE(YYTEXT_POINTER))
  649. ***************
  650. *** 224,230 ****
  651.     IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  652.     for ac_dir in $PATH; do
  653.       case "$ac_dir" in
  654. !     ''|.|/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  655.       *)
  656.         # OSF1 and SCO ODT 3.0 have their own names for install.
  657.         for ac_prog in installbsd scoinst install; do
  658. --- 224,230 ----
  659.     IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  660.     for ac_dir in $PATH; do
  661.       case "$ac_dir" in
  662. !     ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  663.       *)
  664.         # OSF1 and SCO ODT 3.0 have their own names for install.
  665.         for ac_prog in installbsd scoinst install; do
  666. ***************
  667. *** 286,297 ****
  668.   dnl
  669.   define(AC_RSH,
  670.   [AC_CHECKING(for remote shell)
  671. ! if test -f /usr/ucb/rsh || test -f /usr/bin/remsh || test -f /usr/bin/rsh ||
  672. !   test -f /usr/bsd/rsh || test -f /usr/bin/nsh; then
  673.     RTAPELIB=rtapelib.o
  674.   else
  675. !   AC_HEADER_CHECK(netdb.h, AC_DEFINE(HAVE_NETDB_H) RTAPELIB=rtapelib.o,
  676. !     AC_DEFINE(NO_REMOTE))
  677.   fi
  678.   AC_SUBST(RTAPELIB)dnl
  679.   ])dnl
  680. --- 286,297 ----
  681.   dnl
  682.   define(AC_RSH,
  683.   [AC_CHECKING(for remote shell)
  684. ! if test -f /gnu/bin/remsh || test -f /gnu/bin/rsh || test -f /gnu/bin/nsh; then
  685.     RTAPELIB=rtapelib.o
  686.   else
  687. ! dnl The rmt executable doesn't currently build on AmigaDOS because
  688. ! dnl setsockopt() is missing, so disable rmt features.  -fnf
  689. !   AC_DEFINE(NO_REMOTE)
  690.   fi
  691.   AC_SUBST(RTAPELIB)dnl
  692.   ])dnl
  693. ***************
  694. *** 551,556 ****
  695. --- 551,561 ----
  696.     pid_t parent = getpid ();
  697.     pid_t child;
  698.   
  699. + #ifdef __amigados__
  700. +   /* Force this test to succeed for AmigaDOS, which has a fairly good
  701. +      vfork() emulation, but doesn't support fork() at all.  -fnf */
  702. +   exit (0);
  703. + #endif
  704.     signal (SIGINT, catch);
  705.   
  706.     child = vfork ();
  707. ***************
  708. *** 726,732 ****
  709.   # There is a commonly available library for RS/6000 AIX.
  710.   # Since it is not a standard part of AIX, it might be installed locally.
  711.   LIBS_old="$LIBS"
  712. ! LIBS="-L/usr/local/lib $LIBS"
  713.   AC_HAVE_LIBRARY(getloadavg, LIBS="$LIBS -lgetloadavg" ac_need_func=false,
  714.       LIBS="$LIBS_old")
  715.   fi
  716. --- 731,737 ----
  717.   # There is a commonly available library for RS/6000 AIX.
  718.   # Since it is not a standard part of AIX, it might be installed locally.
  719.   LIBS_old="$LIBS"
  720. ! LIBS="-L/local/lib $LIBS"
  721.   AC_HAVE_LIBRARY(getloadavg, LIBS="$LIBS -lgetloadavg" ac_need_func=false,
  722.       LIBS="$LIBS_old")
  723.   fi
  724. ***************
  725. *** 785,791 ****
  726.     ac_ls_output=`ls -lgL /dev/kmem 2>/dev/null`
  727.     # If we got an error (system does not support symlinks), try without -L.
  728.     test -z "$ac_ls_output" && ac_ls_output=`ls -lg /dev/kmem`
  729. !   KMEM_GROUP=`echo $ac_ls_output \
  730.       | sed -ne 's/[     ][     ]*/ /g;
  731.              s/^.[sSrwx-]* *[0-9]* *\([^0-9]*\)  *.*/\1/;
  732.              / /s/.* //;p;'`
  733. --- 790,796 ----
  734.     ac_ls_output=`ls -lgL /dev/kmem 2>/dev/null`
  735.     # If we got an error (system does not support symlinks), try without -L.
  736.     test -z "$ac_ls_output" && ac_ls_output=`ls -lg /dev/kmem`
  737. !   KMEM_GROUP=`/bin/echo $ac_ls_output \
  738.       | sed -ne 's/[     ][     ]*/ /g;
  739.              s/^.[sSrwx-]* *[0-9]* *\([^0-9]*\)  *.*/\1/;
  740.              / /s/.* //;p;'`
  741. ***************
  742. *** 821,826 ****
  743. --- 826,838 ----
  744.   [AC_TEST_PROGRAM([#include <stdio.h>
  745.   /* If setvbuf has the reversed format, exit 0. */
  746.   main () {
  747. + #ifdef __amigados__
  748. +   /* AmigaDOS is a non-reversed system.  Instead of the test program
  749. +      getting a segfault (no memory protection), it causes enforcer hits
  750. +      or other nastiness, so don't run the test program, just exit with
  751. +      status 1 to indicate that it is non-reversed.  -fnf */
  752. +   exit(1);
  753. + #endif
  754.     /* This call has the arguments reversed.
  755.        A reversed system may check and see that the address of main
  756.        is not _IOLBF, _IONBF, or _IOFBF, and return nonzero.  */
  757. ***************
  758. *** 934,947 ****
  759.   ])dnl
  760.   dnl
  761.   define(AC_INT_16_BITS,
  762. ! [AC_OBSOLETE([$0], [; instead use AC_SIZEOF_TYPE(int)])
  763.   AC_CHECKING(integer size)
  764.   AC_TEST_PROGRAM([main() { exit(sizeof(int) != 2); }],
  765.    AC_DEFINE(INT_16_BITS))
  766.   ])dnl
  767.   dnl
  768.   define(AC_LONG_64_BITS,
  769. ! [AC_OBSOLETE([$0], [; instead use AC_SIZEOF_TYPE(long)])
  770.   AC_CHECKING(for 64-bit long ints)
  771.   AC_TEST_PROGRAM([main() { exit(sizeof(long int) != 8); }],
  772.    AC_DEFINE(LONG_64_BITS))
  773. --- 946,959 ----
  774.   ])dnl
  775.   dnl
  776.   define(AC_INT_16_BITS,
  777. ! [AC_OBSOLETE([$0], [; instead use AC_SIZEOF_TYPE(int, sizevar)])
  778.   AC_CHECKING(integer size)
  779.   AC_TEST_PROGRAM([main() { exit(sizeof(int) != 2); }],
  780.    AC_DEFINE(INT_16_BITS))
  781.   ])dnl
  782.   dnl
  783.   define(AC_LONG_64_BITS,
  784. ! [AC_OBSOLETE([$0], [; instead use AC_SIZEOF_TYPE(long, sizevar)])
  785.   AC_CHECKING(for 64-bit long ints)
  786.   AC_TEST_PROGRAM([main() { exit(sizeof(long int) != 8); }],
  787.    AC_DEFINE(LONG_64_BITS))
  788. ***************
  789. *** 1033,1039 ****
  790.   dnl
  791.   define(AC_HAVE_POUNDBANG, [dnl
  792.   AC_CHECKING(whether \`[#]!' works in shell scripts)
  793. ! echo '#!/bin/cat
  794.   exit 69
  795.   ' > conftest
  796.   chmod u+x conftest
  797. --- 1045,1051 ----
  798.   dnl
  799.   define(AC_HAVE_POUNDBANG, [dnl
  800.   AC_CHECKING(whether \`[#]!' works in shell scripts)
  801. ! /bin/echo '#!/bin/cat
  802.   exit 69
  803.   ' > conftest
  804.   chmod u+x conftest
  805. ***************
  806. *** 1050,1056 ****
  807.   AC_HEADER_CHECK(sys/mtio.h, AC_DEFINE(HAVE_SYS_MTIO_H) ac_have_mtio_h=1)
  808.   if test -n "$ac_have_mtio_h"; then
  809.   AC_TEST_CPP([#include <sgtty.h>
  810. ! #include <sys/socket.h>], PROGS="$PROGS rmt")
  811.   fi
  812.   ])dnl
  813.   dnl
  814. --- 1062,1068 ----
  815.   AC_HEADER_CHECK(sys/mtio.h, AC_DEFINE(HAVE_SYS_MTIO_H) ac_have_mtio_h=1)
  816.   if test -n "$ac_have_mtio_h"; then
  817.   AC_TEST_CPP([#include <sgtty.h>
  818. ! #include <sys/socket.h>], PROGS="$PROGS")
  819.   fi
  820.   ])dnl
  821.   dnl
  822. ***************
  823. *** 1065,1075 ****
  824.   #      $prefix/lib    where we will be installing things
  825.   #      $exec_prefix/lib    likewise
  826.   # eval it to expand exec_prefix.
  827. ! for ac_dir in `eval echo . /tmp /var/tmp /usr/tmp $prefix/lib $exec_prefix/lib` ; do
  828.     test -d $ac_dir || continue
  829.     test -w $ac_dir || continue # It's less confusing to not echo anything here.
  830. !   (echo 1 > $ac_dir/conftest9012345) 2>/dev/null
  831. !   (echo 2 > $ac_dir/conftest9012346) 2>/dev/null
  832.     val=`cat $ac_dir/conftest9012345 2>/dev/null`
  833.     test -f $ac_dir/conftest9012345 && test "$val" = 1 || ac_some_dir_failed=true
  834.     rm -f $ac_dir/conftest9012345 $ac_dir/conftest9012346 2> /dev/null
  835. --- 1077,1087 ----
  836.   #      $prefix/lib    where we will be installing things
  837.   #      $exec_prefix/lib    likewise
  838.   # eval it to expand exec_prefix.
  839. ! for ac_dir in `eval /bin/echo . /tmp $prefix/lib $exec_prefix/lib` ; do
  840.     test -d $ac_dir || continue
  841.     test -w $ac_dir || continue # It's less confusing to not echo anything here.
  842. !   (/bin/echo 1 > $ac_dir/conftest9012345) 2>/dev/null
  843. !   (/bin/echo 2 > $ac_dir/conftest9012346) 2>/dev/null
  844.     val=`cat $ac_dir/conftest9012345 2>/dev/null`
  845.     test -f $ac_dir/conftest9012345 && test "$val" = 1 || ac_some_dir_failed=true
  846.     rm -f $ac_dir/conftest9012345 $ac_dir/conftest9012346 2> /dev/null
  847. ***************
  848. *** 1120,1126 ****
  849.     # Make sure to not put "make" in the Imakefile rules, since we grep it out.
  850.     cat > Imakefile <<'EOF'
  851.   acfindx:
  852. !     @echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
  853.   EOF
  854.     if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
  855.       no_x=
  856. --- 1132,1138 ----
  857.     # Make sure to not put "make" in the Imakefile rules, since we grep it out.
  858.     cat > Imakefile <<'EOF'
  859.   acfindx:
  860. !     @/bin/echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
  861.   EOF
  862.     if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
  863.       no_x=
  864. ***************
  865. *** 1132,1138 ****
  866.         ac_im_usrlibdir=$ac_im_libdir
  867.       fi
  868.       case "$ac_im_incroot" in
  869. !     /usr/include) ;;
  870.       *) test -z "$x_includes" && x_includes="$ac_im_incroot" ;;
  871.       esac
  872.       case "$ac_im_usrlibdir" in
  873. --- 1144,1150 ----
  874.         ac_im_usrlibdir=$ac_im_libdir
  875.       fi
  876.       case "$ac_im_incroot" in
  877. !     /gnu/include) ;;
  878.       *) test -z "$x_includes" && x_includes="$ac_im_incroot" ;;
  879.       esac
  880.       case "$ac_im_usrlibdir" in
  881. ***************
  882. *** 1160,1168 ****
  883.       /usr/X11R5/include        \
  884.       /usr/X11R4/include        \
  885.                                 \
  886. !     /usr/include/X11R6        \
  887. !     /usr/include/X11R5        \
  888. !     /usr/include/X11R4        \
  889.                                 \
  890.       /usr/local/X11R6/include  \
  891.       /usr/local/X11R5/include  \
  892. --- 1172,1180 ----
  893.       /usr/X11R5/include        \
  894.       /usr/X11R4/include        \
  895.                                 \
  896. !     /gnu/include/X11R6        \
  897. !     /gnu/include/X11R5        \
  898. !     /gnu/include/X11R4        \
  899.                                 \
  900.       /usr/local/X11R6/include  \
  901.       /usr/local/X11R5/include  \
  902. ***************
  903. *** 1173,1179 ****
  904.       /usr/local/include/X11R4  \
  905.                                 \
  906.       /usr/X11/include          \
  907. !     /usr/include/X11          \
  908.       /usr/local/X11/include    \
  909.       /usr/local/include/X11    \
  910.                                 \
  911. --- 1185,1191 ----
  912.       /usr/local/include/X11R4  \
  913.                                 \
  914.       /usr/X11/include          \
  915. !     /gnu/include/X11          \
  916.       /usr/local/X11/include    \
  917.       /usr/local/include/X11    \
  918.                                 \
  919. ***************
  920. *** 1181,1187 ****
  921.       /usr/x386/include         \
  922.       /usr/XFree86/include/X11  \
  923.                                 \
  924. !     /usr/include              \
  925.       /usr/local/include        \
  926.       /usr/unsupported/include  \
  927.       /usr/athena/include       \
  928. --- 1193,1199 ----
  929.       /usr/x386/include         \
  930.       /usr/XFree86/include/X11  \
  931.                                 \
  932. !     /gnu/include              \
  933.       /usr/local/include        \
  934.       /usr/unsupported/include  \
  935.       /usr/athena/include       \
  936. ***************
  937. *** 1202,1208 ****
  938.   # Check for the libraries.  First see if replacing the `include' by
  939.   # `lib' works.
  940.   AC_HAVE_LIBRARY("$x_direct_test_library", no_x=,
  941. ! for ac_dir in `echo "$x_includes" | sed s/include/lib/` \
  942.       /usr/X11R6/lib        \
  943.       /usr/X11R5/lib        \
  944.       /usr/X11R4/lib        \
  945. --- 1214,1220 ----
  946.   # Check for the libraries.  First see if replacing the `include' by
  947.   # `lib' works.
  948.   AC_HAVE_LIBRARY("$x_direct_test_library", no_x=,
  949. ! for ac_dir in `/bin/echo "$x_includes" | sed s/include/lib/` \
  950.       /usr/X11R6/lib        \
  951.       /usr/X11R5/lib        \
  952.       /usr/X11R4/lib        \
  953. ***************
  954. *** 1324,1331 ****
  955.   dnl
  956.   define(AC_ISC_POSIX,
  957.   [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)
  958. ! if test -d /etc/conf/kconfig.d &&
  959. !   grep _POSIX_VERSION [/usr/include/sys/unistd.h] >/dev/null 2>&1
  960.   then
  961.     ISC=1 # If later tests want to check for ISC.
  962.     AC_DEFINE(_POSIX_SOURCE)
  963. --- 1336,1343 ----
  964.   dnl
  965.   define(AC_ISC_POSIX,
  966.   [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)
  967. ! if test -d /gnu/etc/conf/kconfig.d &&
  968. !   grep _POSIX_VERSION [/gnu/include/sys/unistd.h] >/dev/null 2>&1
  969.   then
  970.     ISC=1 # If later tests want to check for ISC.
  971.     AC_DEFINE(_POSIX_SOURCE)
  972. diff -rc --new-file autoconf-1.11/autoconf.info /gnu/src/amiga/autoconf-1.11/autoconf.info
  973. *** autoconf-1.11/autoconf.info    Thu May 12 20:18:55 1994
  974. --- /gnu/src/amiga/autoconf-1.11/autoconf.info    Sun Jun 12 19:58:58 1994
  975. ***************
  976. *** 1,5 ****
  977. ! This is Info file autoconf.info, produced by Makeinfo-1.55 from the
  978. ! input file ./autoconf.texi.
  979.   
  980.   START-INFO-DIR-ENTRY
  981.   * autoconf: (autoconf).    The Autoconf configuration system.
  982. --- 1,6 ----
  983. ! This is Info file /gnu/src/amiga/autoconf-1.11/autoconf.info, produced
  984. ! by Makeinfo-1.55 from the input file
  985. ! /gnu/src/amiga/autoconf-1.11/autoconf.texi.
  986.   
  987.   START-INFO-DIR-ENTRY
  988.   * autoconf: (autoconf).    The Autoconf configuration system.
  989. ***************
  990. *** 1384,1390 ****
  991.        asterisks changed to `P'.  For example, the call
  992.             AC_SIZEOF_TYPE(int *)
  993.   
  994. !      defines `SIZEOF_INT_P' to be 8 on DEC Alpha AXP systems.
  995.   
  996.    - Macro: AC_TEST_PROGRAM (PROGRAM, ACTION-IF-TRUE [, ACTION-IF-FALSE
  997.             [, ACTION-IF-CROSS-COMPILING]])
  998. --- 1385,1391 ----
  999.        asterisks changed to `P'.  For example, the call
  1000.             AC_SIZEOF_TYPE(int *)
  1001.   
  1002. !      defines `SIZEOF_INT_P' to be 64 on DEC Alpha AXP systems.
  1003.   
  1004.    - Macro: AC_TEST_PROGRAM (PROGRAM, ACTION-IF-TRUE [, ACTION-IF-FALSE
  1005.             [, ACTION-IF-CROSS-COMPILING]])
  1006. ***************
  1007. *** 2661,2668 ****
  1008.   * CONFIG_SHELL:                         Invoking config.status.
  1009.   * const:                                Compiler Characteristics.
  1010.   * C_ALLOCA:                             Library Functions.
  1011. - * DEFS:                                 Overriding variables.
  1012.   * DEFS:                                 Predefined Variables.
  1013.   * DGUX:                                 Library Functions.
  1014.   * DIRENT:                               Header Files.
  1015.   * exec_prefix:                          Predefined Variables.
  1016. --- 2662,2669 ----
  1017.   * CONFIG_SHELL:                         Invoking config.status.
  1018.   * const:                                Compiler Characteristics.
  1019.   * C_ALLOCA:                             Library Functions.
  1020.   * DEFS:                                 Predefined Variables.
  1021. + * DEFS:                                 Overriding variables.
  1022.   * DGUX:                                 Library Functions.
  1023.   * DIRENT:                               Header Files.
  1024.   * exec_prefix:                          Predefined Variables.
  1025. ***************
  1026. *** 2695,2702 ****
  1027.   * INSTALL:                              Overriding variables.
  1028.   * INT_16_BITS:                          Compiler Characteristics.
  1029.   * LIBOBJS:                              Predefined Variables.
  1030. - * LIBS:                                 Predefined Variables.
  1031.   * LIBS:                                 Overriding variables.
  1032.   * LONG_64_BITS:                         Compiler Characteristics.
  1033.   * MAJOR_IN_MKDEV:                       Header Files.
  1034.   * MAJOR_IN_SYSMACROS:                   Header Files.
  1035. --- 2696,2703 ----
  1036.   * INSTALL:                              Overriding variables.
  1037.   * INT_16_BITS:                          Compiler Characteristics.
  1038.   * LIBOBJS:                              Predefined Variables.
  1039.   * LIBS:                                 Overriding variables.
  1040. + * LIBS:                                 Predefined Variables.
  1041.   * LONG_64_BITS:                         Compiler Characteristics.
  1042.   * MAJOR_IN_MKDEV:                       Header Files.
  1043.   * MAJOR_IN_SYSMACROS:                   Header Files.
  1044. ***************
  1045. *** 2729,2736 ****
  1046.   * UMAX4_3:                              Library Functions.
  1047.   * USG:                                  Header Files.
  1048.   * vfork:                                Library Functions.
  1049. - * VOID_CLOSEDIR:                        Header Files.
  1050.   * VOID_CLOSEDIR:                        UNIX Variants.
  1051.   * WORDS_BIGENDIAN:                      Compiler Characteristics.
  1052.   * YYTEXT_POINTER:                       Alternative Programs.
  1053.   * _ALL_SOURCE:                          UNIX Variants.
  1054. --- 2730,2737 ----
  1055.   * UMAX4_3:                              Library Functions.
  1056.   * USG:                                  Header Files.
  1057.   * vfork:                                Library Functions.
  1058.   * VOID_CLOSEDIR:                        UNIX Variants.
  1059. + * VOID_CLOSEDIR:                        Header Files.
  1060.   * WORDS_BIGENDIAN:                      Compiler Characteristics.
  1061.   * YYTEXT_POINTER:                       Alternative Programs.
  1062.   * _ALL_SOURCE:                          UNIX Variants.
  1063. ***************
  1064. *** 2865,2918 ****
  1065.   
  1066.   
  1067.   Tag Table:
  1068. ! Node: Top1070
  1069. ! Node: Introduction4458
  1070. ! Node: Distributing8287
  1071. ! Node: Making configure Scripts9395
  1072. ! Node: Writing configure.in11992
  1073. ! Node: Invoking autoconf14425
  1074. ! Node: Invoking autoheader16274
  1075. ! Node: Specific Tests18427
  1076. ! Node: Alternative Programs20099
  1077. ! Node: Header Files25593
  1078. ! Node: Typedefs31278
  1079. ! Node: Library Functions32495
  1080. ! Node: Structures37266
  1081. ! Node: Compiler Characteristics39356
  1082. ! Node: System Services42168
  1083. ! Node: UNIX Variants44673
  1084. ! Node: General Purpose Macros46581
  1085. ! Node: Setup47732
  1086. ! Node: General Feature Tests52686
  1087. ! Node: Command Line61952
  1088. ! Node: Setting Variables65766
  1089. ! Node: Printing Messages69098
  1090. ! Node: Language Choice71326
  1091. ! Node: Macro Ordering72947
  1092. ! Node: Writing Macros75693
  1093. ! Node: Macro Format77189
  1094. ! Node: Quoting78686
  1095. ! Node: Dependencies Between Macros80144
  1096. ! Node: Prerequisite Macros80731
  1097. ! Node: Suggested Ordering81780
  1098. ! Node: Checking for Files83159
  1099. ! Node: Checking for Symbols83945
  1100. ! Node: Test Programs85424
  1101. ! Node: Guidelines87089
  1102. ! Node: Tricks88232
  1103. ! Node: Multiple Cases89235
  1104. ! Node: Makefiles90439
  1105. ! Node: Predefined Variables91840
  1106. ! Node: Installation Prefixes93348
  1107. ! Node: VPATH Substitutions94918
  1108. ! Node: Automatic Remaking96639
  1109. ! Node: Invoking configure98223
  1110. ! Node: Overriding variables101711
  1111. ! Node: Invoking config.status103334
  1112. ! Node: Example106313
  1113. ! Node: Sample configure.in106893
  1114. ! Node: Sample Makefile.in108030
  1115. ! Node: Preprocessor Symbol Index112015
  1116. ! Node: Macro Index117272
  1117.   
  1118.   End Tag Table
  1119. --- 2866,2919 ----
  1120.   
  1121.   
  1122.   Tag Table:
  1123. ! Node: Top1126
  1124. ! Node: Introduction4514
  1125. ! Node: Distributing8343
  1126. ! Node: Making configure Scripts9451
  1127. ! Node: Writing configure.in12048
  1128. ! Node: Invoking autoconf14481
  1129. ! Node: Invoking autoheader16330
  1130. ! Node: Specific Tests18483
  1131. ! Node: Alternative Programs20155
  1132. ! Node: Header Files25649
  1133. ! Node: Typedefs31334
  1134. ! Node: Library Functions32551
  1135. ! Node: Structures37322
  1136. ! Node: Compiler Characteristics39412
  1137. ! Node: System Services42224
  1138. ! Node: UNIX Variants44729
  1139. ! Node: General Purpose Macros46637
  1140. ! Node: Setup47788
  1141. ! Node: General Feature Tests52742
  1142. ! Node: Command Line62009
  1143. ! Node: Setting Variables65823
  1144. ! Node: Printing Messages69155
  1145. ! Node: Language Choice71383
  1146. ! Node: Macro Ordering73004
  1147. ! Node: Writing Macros75750
  1148. ! Node: Macro Format77246
  1149. ! Node: Quoting78743
  1150. ! Node: Dependencies Between Macros80201
  1151. ! Node: Prerequisite Macros80788
  1152. ! Node: Suggested Ordering81837
  1153. ! Node: Checking for Files83216
  1154. ! Node: Checking for Symbols84002
  1155. ! Node: Test Programs85481
  1156. ! Node: Guidelines87146
  1157. ! Node: Tricks88289
  1158. ! Node: Multiple Cases89292
  1159. ! Node: Makefiles90496
  1160. ! Node: Predefined Variables91897
  1161. ! Node: Installation Prefixes93405
  1162. ! Node: VPATH Substitutions94975
  1163. ! Node: Automatic Remaking96696
  1164. ! Node: Invoking configure98280
  1165. ! Node: Overriding variables101768
  1166. ! Node: Invoking config.status103391
  1167. ! Node: Example106370
  1168. ! Node: Sample configure.in106950
  1169. ! Node: Sample Makefile.in108087
  1170. ! Node: Preprocessor Symbol Index112072
  1171. ! Node: Macro Index117329
  1172.   
  1173.   End Tag Table
  1174. diff -rc --new-file autoconf-1.11/autoconf.sh /gnu/src/amiga/autoconf-1.11/autoconf.sh
  1175. *** autoconf-1.11/autoconf.sh    Thu May  5 16:28:53 1994
  1176. --- /gnu/src/amiga/autoconf-1.11/autoconf.sh    Sun Jun 12 19:24:49 1994
  1177. ***************
  1178. *** 43,55 ****
  1179.   while test $# -gt 0 ; do
  1180.      case "z${1}" in 
  1181.         z-h | z--help | z--h* )
  1182. !          echo "${usage}" 1>&2; exit 0 ;;
  1183.         z--macrodir=* | z--m*=* )
  1184. !          AC_MACRODIR="`echo \"${1}\" | sed -e 's/^[^=]*=//'`"
  1185.            shift ;;
  1186.         z-m | z--macrodir | z--m* ) 
  1187.            shift
  1188. !          test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; }
  1189.            AC_MACRODIR="${1}"
  1190.            shift ;;
  1191.         z-v | z--version | z--v* )
  1192. --- 43,55 ----
  1193.   while test $# -gt 0 ; do
  1194.      case "z${1}" in 
  1195.         z-h | z--help | z--h* )
  1196. !          /bin/echo "${usage}" 1>&2; exit 0 ;;
  1197.         z--macrodir=* | z--m*=* )
  1198. !          AC_MACRODIR="`/bin/echo \"${1}\" | sed -e 's/^[^=]*=//'`"
  1199.            shift ;;
  1200.         z-m | z--macrodir | z--m* ) 
  1201.            shift
  1202. !          test $# -eq 0 && { /bin/echo "${usage}" 1>&2; exit 1; }
  1203.            AC_MACRODIR="${1}"
  1204.            shift ;;
  1205.         z-v | z--version | z--v* )
  1206. ***************
  1207. *** 61,67 ****
  1208.         z- )    # Use stdin as input.
  1209.           break ;;
  1210.         z-* )
  1211. !         echo "${usage}" 1>&2; exit 1 ;;
  1212.         * )
  1213.           break ;;
  1214.      esac
  1215. --- 61,67 ----
  1216.         z- )    # Use stdin as input.
  1217.           break ;;
  1218.         z-* )
  1219. !         /bin/echo "${usage}" 1>&2; exit 1 ;;
  1220.         * )
  1221.           break ;;
  1222.      esac
  1223. ***************
  1224. *** 71,77 ****
  1225.     case $# in
  1226.       0) infile=configure.in ;;
  1227.       1) infile="$1" ;;
  1228. !     *) echo "$usage" >&2; exit 1 ;;
  1229.     esac
  1230.   
  1231.     trap 'rm -f $tmpin $tmpout; exit 1' 1 2 15
  1232. --- 71,77 ----
  1233.     case $# in
  1234.       0) infile=configure.in ;;
  1235.       1) infile="$1" ;;
  1236. !     *) /bin/echo "$usage" >&2; exit 1 ;;
  1237.     esac
  1238.   
  1239.     trap 'rm -f $tmpin $tmpout; exit 1' 1 2 15
  1240. ***************
  1241. *** 81,87 ****
  1242.       infile=$tmpin
  1243.       cat > $infile
  1244.     elif test ! -s "${infile}"; then
  1245. !     echo "autoconf: ${infile}: No such file or directory" >&2
  1246.       exit 1
  1247.     fi
  1248.   fi
  1249. --- 81,87 ----
  1250.       infile=$tmpin
  1251.       cat > $infile
  1252.     elif test ! -s "${infile}"; then
  1253. !     /bin/echo "autoconf: ${infile}: No such file or directory" >&2
  1254.       exit 1
  1255.     fi
  1256.   fi
  1257. ***************
  1258. *** 103,109 ****
  1259.   
  1260.   status=0
  1261.   if grep "${pattern}" $tmpout > /dev/null 2>&1; then
  1262. !   echo "autoconf: Undefined macros:" >&2
  1263.     grep "${pattern}" $tmpout | sed "s/.*\(${pattern}[_A-Z0-9]*\).*/\1/" |
  1264.       while read name; do
  1265.         grep -n $name $infile /dev/null
  1266. --- 103,109 ----
  1267.   
  1268.   status=0
  1269.   if grep "${pattern}" $tmpout > /dev/null 2>&1; then
  1270. !   /bin/echo "autoconf: Undefined macros:" >&2
  1271.     grep "${pattern}" $tmpout | sed "s/.*\(${pattern}[_A-Z0-9]*\).*/\1/" |
  1272.       while read name; do
  1273.         grep -n $name $infile /dev/null
  1274. diff -rc --new-file autoconf-1.11/autoconf.texi /gnu/src/amiga/autoconf-1.11/autoconf.texi
  1275. *** autoconf-1.11/autoconf.texi    Thu May 12 20:17:59 1994
  1276. --- /gnu/src/amiga/autoconf-1.11/autoconf.texi    Sun Jun 12 19:24:56 1994
  1277. ***************
  1278. *** 1703,1709 ****
  1279.   AC_SIZEOF_TYPE(int *)
  1280.   @end example
  1281.   @noindent
  1282. ! defines @code{SIZEOF_INT_P} to be 8 on DEC Alpha AXP systems.
  1283.   @end defmac
  1284.   
  1285.   @defmac AC_TEST_PROGRAM (@var{program}, @var{action-if-true} @r{[}, @var{action-if-false} @r{[}, @var{action-if-cross-compiling}@r{]]})
  1286. --- 1703,1709 ----
  1287.   AC_SIZEOF_TYPE(int *)
  1288.   @end example
  1289.   @noindent
  1290. ! defines @code{SIZEOF_INT_P} to be 64 on DEC Alpha AXP systems.
  1291.   @end defmac
  1292.   
  1293.   @defmac AC_TEST_PROGRAM (@var{program}, @var{action-if-true} @r{[}, @var{action-if-false} @r{[}, @var{action-if-cross-compiling}@r{]]})
  1294. diff -rc --new-file autoconf-1.11/autoheader.sh /gnu/src/amiga/autoconf-1.11/autoheader.sh
  1295. *** autoconf-1.11/autoheader.sh    Thu May  5 16:19:11 1994
  1296. --- /gnu/src/amiga/autoconf-1.11/autoheader.sh    Sun Jun 12 19:31:08 1994
  1297. ***************
  1298. *** 43,55 ****
  1299.   while test $# -gt 0 ; do
  1300.      case "z${1}" in 
  1301.         z-h | z--help | z--h* )
  1302. !          echo "${usage}"; exit 0 ;;
  1303.         z--macrodir=* | z--m*=* )
  1304. !          AC_MACRODIR="`echo \"${1}\" | sed -e 's/^[^=]*=//'`"
  1305.            shift ;;
  1306.         z-m | z--macrodir | z--m* ) 
  1307.            shift
  1308. !          test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; }
  1309.            AC_MACRODIR="${1}"
  1310.            shift ;;
  1311.         z-v | z--version | z--v* )
  1312. --- 43,55 ----
  1313.   while test $# -gt 0 ; do
  1314.      case "z${1}" in 
  1315.         z-h | z--help | z--h* )
  1316. !          /bin/echo "${usage}"; exit 0 ;;
  1317.         z--macrodir=* | z--m*=* )
  1318. !          AC_MACRODIR="`/bin/echo \"${1}\" | sed -e 's/^[^=]*=//'`"
  1319.            shift ;;
  1320.         z-m | z--macrodir | z--m* ) 
  1321.            shift
  1322. !          test $# -eq 0 && { /bin/echo "${usage}" 1>&2; exit 1; }
  1323.            AC_MACRODIR="${1}"
  1324.            shift ;;
  1325.         z-v | z--version | z--v* )
  1326. ***************
  1327. *** 60,66 ****
  1328.         z- )    # Use stdin as input.
  1329.           break ;;
  1330.         z-* )
  1331. !         echo "${usage}" 1>&2; exit 1 ;;
  1332.         * )
  1333.           break ;;
  1334.      esac
  1335. --- 60,66 ----
  1336.         z- )    # Use stdin as input.
  1337.           break ;;
  1338.         z-* )
  1339. !         /bin/echo "${usage}" 1>&2; exit 1 ;;
  1340.         * )
  1341.           break ;;
  1342.      esac
  1343. ***************
  1344. *** 79,85 ****
  1345.          then infile=/dev/null
  1346.          else infile=configure.in; fi ;;
  1347.     1) infile=$1 ;;
  1348. !   *) echo "$usage" >&2; exit 1 ;;
  1349.   esac
  1350.   
  1351.   # These are the alternate definitions of the acgeneral.m4 macros we want to
  1352. --- 79,85 ----
  1353.          then infile=/dev/null
  1354.          else infile=configure.in; fi ;;
  1355.     1) infile=$1 ;;
  1356. !   *) /bin/echo "$usage" >&2; exit 1 ;;
  1357.   esac
  1358.   
  1359.   # These are the alternate definitions of the acgeneral.m4 macros we want to
  1360. ***************
  1361. *** 125,131 ****
  1362.   # We extract assignments of SYMS, TYPES, FUNCS, HEADERS, and LIBS from the
  1363.   # modified autoconf processing of the input file.  The sed hair is
  1364.   # necessary to win for multi-line macro invocations.
  1365. ! eval "`echo \"$frob\" \
  1366.          | $M4 $MACROFILES - $infile \
  1367.          | sed -n -e '
  1368.           : again
  1369. --- 125,131 ----
  1370.   # We extract assignments of SYMS, TYPES, FUNCS, HEADERS, and LIBS from the
  1371.   # modified autoconf processing of the input file.  The sed hair is
  1372.   # necessary to win for multi-line macro invocations.
  1373. ! eval "`/bin/echo \"$frob\" \
  1374.          | $M4 $MACROFILES - $infile \
  1375.          | sed -n -e '
  1376.           : again
  1377. ***************
  1378. *** 140,146 ****
  1379.   test -n "$print_version" && exit 0
  1380.   
  1381.   # Make SYMS newline-separated rather than blank-separated, and remove dups.
  1382. ! syms="`for sym in $syms; do echo $sym; done | sort | uniq`"
  1383.   
  1384.   if test $# -eq 0; then
  1385.     tmpout=autoh$$
  1386. --- 140,146 ----
  1387.   test -n "$print_version" && exit 0
  1388.   
  1389.   # Make SYMS newline-separated rather than blank-separated, and remove dups.
  1390. ! syms="`for sym in $syms; do /bin/echo $sym; done | sort | uniq`"
  1391.   
  1392.   if test $# -eq 0; then
  1393.     tmpout=autoh$$
  1394. ***************
  1395. *** 150,156 ****
  1396.   
  1397.   # Don't write "do not edit" -- it will get copied into the
  1398.   # config.h, which it's ok to edit.
  1399. ! echo "/* ${config_h}.in.  Generated automatically from $infile by autoheader.  */"
  1400.   
  1401.   test -f ${config_h}.top && cat ${config_h}.top
  1402.   
  1403. --- 150,156 ----
  1404.   
  1405.   # Don't write "do not edit" -- it will get copied into the
  1406.   # config.h, which it's ok to edit.
  1407. ! /bin/echo "/* ${config_h}.in.  Generated automatically from $infile by autoheader.  */"
  1408.   
  1409.   test -f ${config_h}.top && cat ${config_h}.top
  1410.   
  1411. ***************
  1412. *** 159,165 ****
  1413.      # Make sure the boundary of template files is also the boundary
  1414.      # of the paragraph.  Extra newlines don't hurt since they will
  1415.      # be removed.
  1416. !    for t in $TEMPLATES; do cat $t; echo; echo; done |
  1417.      # The sed script is suboptimal because it has to take care of
  1418.      # some broken seds (e.g. AIX) that remove '\n' from the
  1419.      # pattern/hold space if the line is empty. (junio@twinsun.com).
  1420. --- 159,165 ----
  1421.      # Make sure the boundary of template files is also the boundary
  1422.      # of the paragraph.  Extra newlines don't hurt since they will
  1423.      # be removed.
  1424. !    for t in $TEMPLATES; do cat $t; /bin/echo; /bin/echo; done |
  1425.      # The sed script is suboptimal because it has to take care of
  1426.      # some broken seds (e.g. AIX) that remove '\n' from the
  1427.      # pattern/hold space if the line is empty. (junio@twinsun.com).
  1428. ***************
  1429. *** 177,208 ****
  1430.      tr @ \\012
  1431.   fi
  1432.   
  1433. ! echo "$types" | tr , \\012 | sort | uniq | while read ctype; do
  1434.     test -z "$ctype" && continue
  1435.     # Solaris 2.3 tr rejects noncontiguous characters in character classes.
  1436. !   sym="`echo "${ctype}" | tr '[a-z] *' '[A-Z]_P'`"
  1437. !   echo "
  1438.   /* The number of bytes in a ${ctype}.  */
  1439.   #undef SIZEOF_${sym}"
  1440.   done
  1441.   
  1442. ! for func in `for x in $funcs; do echo $x; done | sort | uniq`; do
  1443. !   sym="`echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1444. !   echo "
  1445.   /* Define if you have ${func}.  */
  1446.   #undef HAVE_${sym}"
  1447.   done
  1448.   
  1449. ! for header in `for x in $headers; do echo $x; done | sort | uniq`; do
  1450. !   sym="`echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1451. !   echo "
  1452.   /* Define if you have the <${header}> header file.  */
  1453.   #undef HAVE_${sym}"
  1454.   done
  1455.   
  1456. ! for lib in `for x in $libs; do echo $x; done | sort | uniq`; do
  1457. !   sym="`echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1458. !   echo "
  1459.   /* Define if you have the ${lib} library (-l${lib}).  */
  1460.   #undef HAVE_LIB${sym}"
  1461.   done
  1462. --- 177,208 ----
  1463.      tr @ \\012
  1464.   fi
  1465.   
  1466. ! /bin/echo "$types" | tr , \\012 | sort | uniq | while read ctype; do
  1467.     test -z "$ctype" && continue
  1468.     # Solaris 2.3 tr rejects noncontiguous characters in character classes.
  1469. !   sym="`/bin/echo "${ctype}" | tr '[a-z] *' '[A-Z]_P'`"
  1470. !   /bin/echo "
  1471.   /* The number of bytes in a ${ctype}.  */
  1472.   #undef SIZEOF_${sym}"
  1473.   done
  1474.   
  1475. ! for func in `for x in $funcs; do /bin/echo $x; done | sort | uniq`; do
  1476. !   sym="`/bin/echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1477. !   /bin/echo "
  1478.   /* Define if you have ${func}.  */
  1479.   #undef HAVE_${sym}"
  1480.   done
  1481.   
  1482. ! for header in `for x in $headers; do /bin/echo $x; done | sort | uniq`; do
  1483. !   sym="`/bin/echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1484. !   /bin/echo "
  1485.   /* Define if you have the <${header}> header file.  */
  1486.   #undef HAVE_${sym}"
  1487.   done
  1488.   
  1489. ! for lib in `for x in $libs; do /bin/echo $x; done | sort | uniq`; do
  1490. !   sym="`/bin/echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1491. !   /bin/echo "
  1492.   /* Define if you have the ${lib} library (-l${lib}).  */
  1493.   #undef HAVE_LIB${sym}"
  1494.   done
  1495. ***************
  1496. *** 215,221 ****
  1497.     if fgrep $sym $TEMPLATES >/dev/null; then
  1498.       : # All is well.
  1499.     else
  1500. !     echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
  1501.       status=1
  1502.     fi
  1503.   done
  1504. --- 215,221 ----
  1505.     if fgrep $sym $TEMPLATES >/dev/null; then
  1506.       : # All is well.
  1507.     else
  1508. !     /bin/echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
  1509.       status=1
  1510.     fi
  1511.   done
  1512. diff -rc --new-file autoconf-1.11/configure /gnu/src/amiga/autoconf-1.11/configure
  1513. *** autoconf-1.11/configure    Thu May 12 19:58:03 1994
  1514. --- /gnu/src/amiga/autoconf-1.11/configure    Sun Jun 19 22:18:23 1994
  1515. ***************
  1516. *** 75,81 ****
  1517.     # options, so we can diagnose typos.
  1518.   
  1519.     case "$ac_option" in
  1520. !   -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  1521.     *) ac_optarg= ;;
  1522.     esac
  1523.   
  1524. --- 75,81 ----
  1525.     # options, so we can diagnose typos.
  1526.   
  1527.     case "$ac_option" in
  1528. !   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  1529.     *) ac_optarg= ;;
  1530.     esac
  1531.   
  1532. ***************
  1533. *** 87,107 ****
  1534.       build="$ac_optarg" ;;
  1535.   
  1536.     -disable-* | --disable-*)
  1537. !     ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  1538.       # Reject names that aren't valid shell variable names.
  1539. !     if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  1540. !       echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  1541.       fi
  1542. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  1543.       eval "enable_${ac_feature}=no" ;;
  1544.   
  1545.     -enable-* | --enable-*)
  1546. !     ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  1547.       # Reject names that aren't valid shell variable names.
  1548. !     if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  1549. !       echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  1550.       fi
  1551. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  1552.       case "$ac_option" in
  1553.         *=*) ;;
  1554.         *) ac_optarg=yes ;;
  1555. --- 87,107 ----
  1556.       build="$ac_optarg" ;;
  1557.   
  1558.     -disable-* | --disable-*)
  1559. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  1560.       # Reject names that aren't valid shell variable names.
  1561. !     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  1562. !       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  1563.       fi
  1564. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  1565.       eval "enable_${ac_feature}=no" ;;
  1566.   
  1567.     -enable-* | --enable-*)
  1568. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  1569.       # Reject names that aren't valid shell variable names.
  1570. !     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  1571. !       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  1572.       fi
  1573. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  1574.       case "$ac_option" in
  1575.         *=*) ;;
  1576.         *) ac_optarg=yes ;;
  1577. ***************
  1578. *** 197,212 ****
  1579.       verbose=yes ;;
  1580.   
  1581.     -version | --version | --versio | --versi | --vers)
  1582. !     echo "configure generated by autoconf version 1.11"
  1583.       exit 0 ;;
  1584.   
  1585.     -with-* | --with-*)
  1586. !     ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  1587.       # Reject names that aren't valid shell variable names.
  1588. !     if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  1589. !       echo "configure: $ac_package: invalid package name" >&2; exit 1
  1590.       fi
  1591. !     ac_package=`echo $ac_package| sed 's/-/_/g'`
  1592.       case "$ac_option" in
  1593.         *=*) ;;
  1594.         *) ac_optarg=yes ;;
  1595. --- 197,212 ----
  1596.       verbose=yes ;;
  1597.   
  1598.     -version | --version | --versio | --versi | --vers)
  1599. !     /bin/echo "configure generated by autoconf version 1.11"
  1600.       exit 0 ;;
  1601.   
  1602.     -with-* | --with-*)
  1603. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  1604.       # Reject names that aren't valid shell variable names.
  1605. !     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  1606. !       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  1607.       fi
  1608. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  1609.       case "$ac_option" in
  1610.         *=*) ;;
  1611.         *) ac_optarg=yes ;;
  1612. ***************
  1613. *** 214,225 ****
  1614.       eval "with_${ac_package}='$ac_optarg'" ;;
  1615.   
  1616.     -without-* | --without-*)
  1617. !     ac_package=`echo $ac_option|sed -e 's/-*without-//'`
  1618.       # Reject names that aren't valid shell variable names.
  1619. !     if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  1620. !       echo "configure: $ac_package: invalid package name" >&2; exit 1
  1621.       fi
  1622. !     ac_package=`echo $ac_package| sed 's/-/_/g'`
  1623.       eval "with_${ac_package}=no" ;;
  1624.   
  1625.     --x) with_x=yes ;; # Obsolete; use --with-x.
  1626. --- 214,225 ----
  1627.       eval "with_${ac_package}='$ac_optarg'" ;;
  1628.   
  1629.     -without-* | --without-*)
  1630. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  1631.       # Reject names that aren't valid shell variable names.
  1632. !     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  1633. !       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  1634.       fi
  1635. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  1636.       eval "with_${ac_package}=no" ;;
  1637.   
  1638.     --x) with_x=yes ;; # Obsolete; use --with-x.
  1639. ***************
  1640. *** 238,252 ****
  1641.     | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  1642.       x_libraries="$ac_optarg" ;;
  1643.   
  1644. !   -*) echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
  1645.       ;;
  1646.   
  1647.     *) 
  1648. !     if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  1649. !       echo "configure: warning: $ac_option: invalid host type" >&2
  1650.       fi
  1651.       if test "x$nonopt" != xNONE; then
  1652. !       echo "configure: can only configure for one host and one target at a time" >&2; exit 1
  1653.       fi
  1654.       nonopt="$ac_option"
  1655.       ;;
  1656. --- 238,252 ----
  1657.     | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  1658.       x_libraries="$ac_optarg" ;;
  1659.   
  1660. !   -*) /bin/echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
  1661.       ;;
  1662.   
  1663.     *) 
  1664. !     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  1665. !       /bin/echo "configure: warning: $ac_option: invalid host type" >&2
  1666.       fi
  1667.       if test "x$nonopt" != xNONE; then
  1668. !       /bin/echo "configure: can only configure for one host and one target at a time" >&2; exit 1
  1669.       fi
  1670.       nonopt="$ac_option"
  1671.       ;;
  1672. ***************
  1673. *** 255,261 ****
  1674.   done
  1675.   
  1676.   if test -n "$ac_prev"; then
  1677. !   echo "configure: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" >&2; exit 1
  1678.   fi
  1679.   
  1680.   trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  1681. --- 255,261 ----
  1682.   done
  1683.   
  1684.   if test -n "$ac_prev"; then
  1685. !   /bin/echo "configure: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" >&2; exit 1
  1686.   fi
  1687.   
  1688.   trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  1689. ***************
  1690. *** 284,290 ****
  1691.   # confdefs.h avoids OS command line length limits that DEFS can exceed.
  1692.   rm -rf conftest* confdefs.h
  1693.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  1694. ! echo > confdefs.h
  1695.   
  1696.   # A filename unique to this package, relative to the directory that
  1697.   # configure is in, which we can look for to find out if srcdir is correct.
  1698. --- 284,290 ----
  1699.   # confdefs.h avoids OS command line length limits that DEFS can exceed.
  1700.   rm -rf conftest* confdefs.h
  1701.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  1702. ! /bin/echo > confdefs.h
  1703.   
  1704.   # A filename unique to this package, relative to the directory that
  1705.   # configure is in, which we can look for to find out if srcdir is correct.
  1706. ***************
  1707. *** 295,301 ****
  1708.     ac_srcdir_defaulted=yes
  1709.     # Try the directory containing this script, then `..'.
  1710.     ac_prog=$0
  1711. !   ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  1712.     test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  1713.     srcdir=$ac_confdir
  1714.     if test ! -r $srcdir/$ac_unique_file; then
  1715. --- 295,301 ----
  1716.     ac_srcdir_defaulted=yes
  1717.     # Try the directory containing this script, then `..'.
  1718.     ac_prog=$0
  1719. !   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  1720.     test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  1721.     srcdir=$ac_confdir
  1722.     if test ! -r $srcdir/$ac_unique_file; then
  1723. ***************
  1724. *** 304,312 ****
  1725.   fi
  1726.   if test ! -r $srcdir/$ac_unique_file; then
  1727.     if test x$ac_srcdir_defaulted = xyes; then
  1728. !     echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
  1729.     else
  1730. !     echo "configure: can not find sources in ${srcdir}" >&2; exit 1
  1731.     fi
  1732.   fi
  1733.   ac_ext=c
  1734. --- 304,312 ----
  1735.   fi
  1736.   if test ! -r $srcdir/$ac_unique_file; then
  1737.     if test x$ac_srcdir_defaulted = xyes; then
  1738. !     /bin/echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
  1739.     else
  1740. !     /bin/echo "configure: can not find sources in ${srcdir}" >&2; exit 1
  1741.     fi
  1742.   fi
  1743.   ac_ext=c
  1744. ***************
  1745. *** 320,326 ****
  1746.   if test -z "$M4"; then
  1747.     # Extract the first word of `$ac_prog', so it can be a program name with args.
  1748.     set ac_dummy $ac_prog; ac_word=$2
  1749. !   test -n "$silent" || echo "checking for $ac_word"
  1750.     IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  1751.     for ac_dir in $PATH; do
  1752.       test -z "$ac_dir" && ac_dir=.
  1753. --- 320,326 ----
  1754.   if test -z "$M4"; then
  1755.     # Extract the first word of `$ac_prog', so it can be a program name with args.
  1756.     set ac_dummy $ac_prog; ac_word=$2
  1757. !   test -n "$silent" || /bin/echo "checking for $ac_word"
  1758.     IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  1759.     for ac_dir in $PATH; do
  1760.       test -z "$ac_dir" && ac_dir=.
  1761. ***************
  1762. *** 332,338 ****
  1763.     IFS="$ac_save_ifs"
  1764.   fi
  1765.   
  1766. ! test -n "$M4" && test -n "$verbose" && echo "    setting M4 to $M4"
  1767.   
  1768.   test -n "$M4" && break
  1769.   done
  1770. --- 332,338 ----
  1771.     IFS="$ac_save_ifs"
  1772.   fi
  1773.   
  1774. ! test -n "$M4" && test -n "$verbose" && /bin/echo "    setting M4 to $M4"
  1775.   
  1776.   test -n "$M4" && break
  1777.   done
  1778. ***************
  1779. *** 355,365 ****
  1780.   # Avoid using ./install, which might have been erroneously created
  1781.   # by make from ./install.sh.
  1782.   if test -z "${INSTALL}"; then
  1783. !   test -n "$silent" || echo "checking for a BSD compatible install"
  1784.     IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  1785.     for ac_dir in $PATH; do
  1786.       case "$ac_dir" in
  1787. !     ''|.|/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  1788.       *)
  1789.         # OSF1 and SCO ODT 3.0 have their own names for install.
  1790.         for ac_prog in installbsd scoinst install; do
  1791. --- 355,365 ----
  1792.   # Avoid using ./install, which might have been erroneously created
  1793.   # by make from ./install.sh.
  1794.   if test -z "${INSTALL}"; then
  1795. !   test -n "$silent" || /bin/echo "checking for a BSD compatible install"
  1796.     IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  1797.     for ac_dir in $PATH; do
  1798.       case "$ac_dir" in
  1799. !     ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  1800.       *)
  1801.         # OSF1 and SCO ODT 3.0 have their own names for install.
  1802.         for ac_prog in installbsd scoinst install; do
  1803. ***************
  1804. *** 390,406 ****
  1805.     done
  1806.   fi
  1807.   if test -z "$INSTALL"; then
  1808. !   echo "configure: can not find install.sh in ${srcdir} or ${srcdir}/.. or ${srcdir}/../.." >&2; exit 1
  1809.   fi
  1810. ! test -n "$verbose" && echo "    setting INSTALL to $INSTALL"
  1811.   
  1812.   # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
  1813.   # It thinks the first close brace ends the variable substitution.
  1814.   test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  1815. ! test -n "$verbose" && echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  1816.   
  1817.   test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  1818. ! test -n "$verbose" && echo "    setting INSTALL_DATA to $INSTALL_DATA"
  1819.   
  1820.   
  1821.   # The preferred way to propogate these variables is regular @ substitutions.
  1822. --- 390,406 ----
  1823.     done
  1824.   fi
  1825.   if test -z "$INSTALL"; then
  1826. !   /bin/echo "configure: can not find install.sh in ${srcdir} or ${srcdir}/.. or ${srcdir}/../.." >&2; exit 1
  1827.   fi
  1828. ! test -n "$verbose" && /bin/echo "    setting INSTALL to $INSTALL"
  1829.   
  1830.   # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
  1831.   # It thinks the first close brace ends the variable substitution.
  1832.   test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  1833. ! test -n "$verbose" && /bin/echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  1834.   
  1835.   test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  1836. ! test -n "$verbose" && /bin/echo "    setting INSTALL_DATA to $INSTALL_DATA"
  1837.   
  1838.   
  1839.   # The preferred way to propogate these variables is regular @ substitutions.
  1840. ***************
  1841. *** 433,440 ****
  1842.   # Substitute for predefined variables.
  1843.   
  1844.   trap 'rm -f config.status; exit 1' 1 2 15
  1845. ! echo creating config.status
  1846. ! rm -f config.status
  1847.   cat > config.status <<EOF
  1848.   #!/bin/sh
  1849.   # Generated automatically by configure.
  1850. --- 433,442 ----
  1851.   # Substitute for predefined variables.
  1852.   
  1853.   trap 'rm -f config.status; exit 1' 1 2 15
  1854. ! /bin/echo creating config.status
  1855. ! # Some systems, like AmigaDOS, won't allow you to remove a script that is
  1856. ! # being executed, so just move it out of the way instead.
  1857. ! if test -f config.status; then mv config.status config.status.old; else true; fi
  1858.   cat > config.status <<EOF
  1859.   #!/bin/sh
  1860.   # Generated automatically by configure.
  1861. ***************
  1862. *** 449,462 ****
  1863.   do
  1864.     case "\$ac_option" in
  1865.     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1866. !     echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
  1867.       exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
  1868.     -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  1869. !     echo "config.status generated by autoconf version 1.11"
  1870.       exit 0 ;;
  1871.     -help | --help | --hel | --he | --h)
  1872. !     echo "\$ac_cs_usage"; exit 0 ;;
  1873. !   *) echo "\$ac_cs_usage"; exit 1 ;;
  1874.     esac
  1875.   done
  1876.   
  1877. --- 451,464 ----
  1878.   do
  1879.     case "\$ac_option" in
  1880.     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1881. !     /bin/echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
  1882.       exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
  1883.     -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  1884. !     /bin/echo "config.status generated by autoconf version 1.11"
  1885.       exit 0 ;;
  1886.     -help | --help | --hel | --he | --h)
  1887. !     /bin/echo "\$ac_cs_usage"; exit 0 ;;
  1888. !   *) /bin/echo "\$ac_cs_usage"; exit 1 ;;
  1889.     esac
  1890.   done
  1891.   
  1892. ***************
  1893. *** 482,488 ****
  1894.   CONFIG_FILES=${CONFIG_FILES-"Makefile"}
  1895.   for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  1896.     # Remove last slash and all that follows it.  Not all systems have dirname.
  1897. !   ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
  1898.     if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  1899.       # The file is in a subdirectory.
  1900.       test ! -d "$ac_dir" && mkdir "$ac_dir"
  1901. --- 484,490 ----
  1902.   CONFIG_FILES=${CONFIG_FILES-"Makefile"}
  1903.   for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  1904.     # Remove last slash and all that follows it.  Not all systems have dirname.
  1905. !   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  1906.     if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  1907.       # The file is in a subdirectory.
  1908.       test ! -d "$ac_dir" && mkdir "$ac_dir"
  1909. ***************
  1910. *** 492,514 ****
  1911.     fi
  1912.   
  1913.     # A "../" for each directory in $ac_dir_suffix.
  1914. !   ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  1915.     case "$ac_given_srcdir" in
  1916.     .)  srcdir=.
  1917.         if test -z "$ac_dir_suffix"; then top_srcdir=.
  1918. !       else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
  1919.     /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  1920.     *) # Relative path.
  1921.       srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  1922.       top_srcdir="$ac_dots$ac_given_srcdir" ;;
  1923.     esac
  1924.   
  1925. !   echo creating "$ac_file"
  1926.     rm -f "$ac_file"
  1927. !   comment_str="Generated automatically from `echo $ac_file|sed 's|.*/||'`.in by configure."
  1928.     case "$ac_file" in
  1929. !     *.c | *.h | *.C | *.cc | *.m )  echo "/* $comment_str */" > "$ac_file" ;;
  1930. !     * )          echo "# $comment_str"     > "$ac_file" ;;
  1931.     esac
  1932.     sed -e "
  1933.   $ac_prsub
  1934. --- 494,516 ----
  1935.     fi
  1936.   
  1937.     # A "../" for each directory in $ac_dir_suffix.
  1938. !   ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  1939.     case "$ac_given_srcdir" in
  1940.     .)  srcdir=.
  1941.         if test -z "$ac_dir_suffix"; then top_srcdir=.
  1942. !       else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
  1943.     /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  1944.     *) # Relative path.
  1945.       srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  1946.       top_srcdir="$ac_dots$ac_given_srcdir" ;;
  1947.     esac
  1948.   
  1949. !   /bin/echo creating "$ac_file"
  1950.     rm -f "$ac_file"
  1951. !   comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
  1952.     case "$ac_file" in
  1953. !     *.c | *.h | *.C | *.cc | *.m )  /bin/echo "/* $comment_str */" > "$ac_file" ;;
  1954. !     * )          /bin/echo "# $comment_str"     > "$ac_file" ;;
  1955.     esac
  1956.     sed -e "
  1957.   $ac_prsub
  1958. diff -rc --new-file autoconf-1.11/mkinstalldirs /gnu/src/amiga/autoconf-1.11/mkinstalldirs
  1959. *** autoconf-1.11/mkinstalldirs    Sat Mar 26 04:01:14 1994
  1960. --- /gnu/src/amiga/autoconf-1.11/mkinstalldirs    Sun Jun 12 19:37:14 1994
  1961. ***************
  1962. *** 8,14 ****
  1963.   errstatus=0
  1964.   
  1965.   for file in ${1+"$@"} ; do 
  1966. !    set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
  1967.      shift
  1968.   
  1969.      pathcomp=
  1970. --- 8,14 ----
  1971.   errstatus=0
  1972.   
  1973.   for file in ${1+"$@"} ; do 
  1974. !    set fnord `/bin/echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
  1975.      shift
  1976.   
  1977.      pathcomp=
  1978. ***************
  1979. *** 19,25 ****
  1980.        esac
  1981.   
  1982.        if test ! -d "$pathcomp"; then
  1983. !         echo "mkdir $pathcomp" 1>&2
  1984.           mkdir "$pathcomp" || errstatus=$?
  1985.        fi
  1986.   
  1987. --- 19,25 ----
  1988.        esac
  1989.   
  1990.        if test ! -d "$pathcomp"; then
  1991. !         /bin/echo "mkdir $pathcomp" 1>&2
  1992.           mkdir "$pathcomp" || errstatus=$?
  1993.        fi
  1994.   
  1995.