home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / autoconf-2.1-diffs.lha / GNU / diffs / autoconf-2.1.diffs
Encoding:
Text File  |  1995-04-14  |  75.6 KB  |  2,416 lines

  1. diff -rc --new-file autoconf-2.1-base/Makefile.in autoconf-2.1/Makefile.in
  2. *** autoconf-2.1-base/Makefile.in    Tue Oct 25 20:23:48 1994
  3. --- autoconf-2.1/Makefile.in    Thu Nov 10 15:26:28 1994
  4. ***************
  5. *** 41,47 ****
  6.   bindir = $(exec_prefix)/bin
  7.   
  8.   # Directory in which to install library files.
  9. ! datadir = $(prefix)/share
  10.   acdatadir = $(datadir)/autoconf
  11.   
  12.   # Directory in which to install documentation info files.
  13. --- 41,47 ----
  14.   bindir = $(exec_prefix)/bin
  15.   
  16.   # Directory in which to install library files.
  17. ! datadir = $(prefix)/lib
  18.   acdatadir = $(datadir)/autoconf
  19.   
  20.   # Directory in which to install documentation info files.
  21. diff -rc --new-file autoconf-2.1-base/Product-Info autoconf-2.1/Product-Info
  22. *** autoconf-2.1-base/Product-Info    Thu Jan  1 00:00:00 1970
  23. --- autoconf-2.1/Product-Info    Fri Nov 18 12:41:48 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. + 2.1
  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-2.1-base/acgeneral.m4 autoconf-2.1/acgeneral.m4
  55. *** autoconf-2.1-base/acgeneral.m4    Fri Nov  4 04:19:29 1994
  56. --- autoconf-2.1/acgeneral.m4    Thu Nov 10 16:32:40 1994
  57. ***************
  58. *** 150,156 ****
  59.   
  60.   # Defaults:
  61.   ac_help=
  62. ! ac_default_prefix=/usr/local
  63.   [#] Any additions from configure.in:])
  64.   
  65.   dnl AC_PREFIX_DEFAULT(PREFIX)
  66. --- 150,156 ----
  67.   
  68.   # Defaults:
  69.   ac_help=
  70. ! ac_default_prefix=/gnu
  71.   [#] Any additions from configure.in:])
  72.   
  73.   dnl AC_PREFIX_DEFAULT(PREFIX)
  74. ***************
  75. *** 200,206 ****
  76.   
  77.     case "$ac_option" in
  78.   changequote(, )dnl
  79. !   -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  80.   changequote([, ])dnl
  81.     *) ac_optarg= ;;
  82.     esac
  83. --- 200,206 ----
  84.   
  85.     case "$ac_option" in
  86.   changequote(, )dnl
  87. !   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  88.   changequote([, ])dnl
  89.     *) ac_optarg= ;;
  90.     esac
  91. ***************
  92. *** 222,246 ****
  93.       cache_file="$ac_optarg" ;;
  94.   
  95.     -disable-* | --disable-*)
  96. !     ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  97.       # Reject names that are not valid shell variable names.
  98.   changequote(, )dnl
  99. !     if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  100.   changequote([, ])dnl
  101.         AC_MSG_ERROR($ac_feature: invalid feature name)
  102.       fi
  103. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  104.       eval "enable_${ac_feature}=no" ;;
  105.   
  106.     -enable-* | --enable-*)
  107. !     ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  108.       # Reject names that are not valid shell variable names.
  109.   changequote(, )dnl
  110. !     if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  111.   changequote([, ])dnl
  112.         AC_MSG_ERROR($ac_feature: invalid feature name)
  113.       fi
  114. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  115.       case "$ac_option" in
  116.         *=*) ;;
  117.         *) ac_optarg=yes ;;
  118. --- 222,246 ----
  119.       cache_file="$ac_optarg" ;;
  120.   
  121.     -disable-* | --disable-*)
  122. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  123.       # Reject names that are not valid shell variable names.
  124.   changequote(, )dnl
  125. !     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  126.   changequote([, ])dnl
  127.         AC_MSG_ERROR($ac_feature: invalid feature name)
  128.       fi
  129. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  130.       eval "enable_${ac_feature}=no" ;;
  131.   
  132.     -enable-* | --enable-*)
  133. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  134.       # Reject names that are not valid shell variable names.
  135.   changequote(, )dnl
  136. !     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  137.   changequote([, ])dnl
  138.         AC_MSG_ERROR($ac_feature: invalid feature name)
  139.       fi
  140. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  141.       case "$ac_option" in
  142.         *=*) ;;
  143.         *) ac_optarg=yes ;;
  144. ***************
  145. *** 378,391 ****
  146.       exit 0 ;;
  147.   
  148.     -with-* | --with-*)
  149. !     ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  150.       # Reject names that are not valid shell variable names.
  151.   changequote(, )dnl
  152. !     if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  153.   changequote([, ])dnl
  154.         AC_MSG_ERROR($ac_package: invalid package name)
  155.       fi
  156. !     ac_package=`echo $ac_package| sed 's/-/_/g'`
  157.       case "$ac_option" in
  158.         *=*) ;;
  159.         *) ac_optarg=yes ;;
  160. --- 378,391 ----
  161.       exit 0 ;;
  162.   
  163.     -with-* | --with-*)
  164. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  165.       # Reject names that are not valid shell variable names.
  166.   changequote(, )dnl
  167. !     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  168.   changequote([, ])dnl
  169.         AC_MSG_ERROR($ac_package: invalid package name)
  170.       fi
  171. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  172.       case "$ac_option" in
  173.         *=*) ;;
  174.         *) ac_optarg=yes ;;
  175. ***************
  176. *** 393,406 ****
  177.       eval "with_${ac_package}='$ac_optarg'" ;;
  178.   
  179.     -without-* | --without-*)
  180. !     ac_package=`echo $ac_option|sed -e 's/-*without-//'`
  181.       # Reject names that are not valid shell variable names.
  182.   changequote(, )dnl
  183. !     if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  184.   changequote([, ])dnl
  185.         AC_MSG_ERROR($ac_package: invalid package name)
  186.       fi
  187. !     ac_package=`echo $ac_package| sed 's/-/_/g'`
  188.       eval "with_${ac_package}=no" ;;
  189.   
  190.     --x)
  191. --- 393,406 ----
  192.       eval "with_${ac_package}='$ac_optarg'" ;;
  193.   
  194.     -without-* | --without-*)
  195. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  196.       # Reject names that are not valid shell variable names.
  197.   changequote(, )dnl
  198. !     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  199.   changequote([, ])dnl
  200.         AC_MSG_ERROR($ac_package: invalid package name)
  201.       fi
  202. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  203.       eval "with_${ac_package}=no" ;;
  204.   
  205.     --x)
  206. ***************
  207. *** 426,432 ****
  208.   
  209.     *) 
  210.   changequote(, )dnl
  211. !     if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  212.   changequote([, ])dnl
  213.         AC_MSG_WARN($ac_option: invalid host type)
  214.       fi
  215. --- 426,432 ----
  216.   
  217.     *) 
  218.   changequote(, )dnl
  219. !     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  220.   changequote([, ])dnl
  221.         AC_MSG_WARN($ac_option: invalid host type)
  222.       fi
  223. ***************
  224. *** 440,446 ****
  225.   done
  226.   
  227.   if test -n "$ac_prev"; then
  228. !   AC_MSG_ERROR(missing argument to --`echo $ac_prev | sed 's/_/-/g'`)
  229.   fi
  230.   ])
  231.   
  232. --- 440,446 ----
  233.   done
  234.   
  235.   if test -n "$ac_prev"; then
  236. !   AC_MSG_ERROR(missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`)
  237.   fi
  238.   ])
  239.   
  240. ***************
  241. *** 519,525 ****
  242.   # confdefs.h avoids OS command line length limits that DEFS can exceed.
  243.   rm -rf conftest* confdefs.h
  244.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  245. ! echo > confdefs.h
  246.   
  247.   # A filename unique to this package, relative to the directory that
  248.   # configure is in, which we can look for to find out if srcdir is correct.
  249. --- 519,525 ----
  250.   # confdefs.h avoids OS command line length limits that DEFS can exceed.
  251.   rm -rf conftest* confdefs.h
  252.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  253. ! /bin/echo > confdefs.h
  254.   
  255.   # A filename unique to this package, relative to the directory that
  256.   # configure is in, which we can look for to find out if srcdir is correct.
  257. ***************
  258. *** 531,537 ****
  259.     # Try the directory containing this script, then its parent.
  260.     ac_prog=[$]0
  261.   changequote(, )dnl
  262. !   ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  263.   changequote([, ])dnl
  264.     test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  265.     srcdir=$ac_confdir
  266. --- 531,537 ----
  267.     # Try the directory containing this script, then its parent.
  268.     ac_prog=[$]0
  269.   changequote(, )dnl
  270. !   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  271.   changequote([, ])dnl
  272.     test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  273.     srcdir=$ac_confdir
  274. ***************
  275. *** 551,557 ****
  276.   dnl Double slashes in pathnames in object file debugging info
  277.   dnl mess up M-x gdb in Emacs.
  278.   changequote(, )dnl
  279. ! srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
  280.   changequote([, ])dnl
  281.   
  282.   dnl Let the site file select an alternate cache file if it wants to.
  283. --- 551,557 ----
  284.   dnl Double slashes in pathnames in object file debugging info
  285.   dnl mess up M-x gdb in Emacs.
  286.   changequote(, )dnl
  287. ! srcdir=`/bin/echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
  288.   changequote([, ])dnl
  289.   
  290.   dnl Let the site file select an alternate cache file if it wants to.
  291. ***************
  292. *** 632,638 ****
  293.   else
  294.     # Double any \ or $.
  295.     echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
  296. !   program_transform_name="`echo $program_transform_name|sed -f conftestsed`"
  297.     rm -f conftestsed
  298.   fi
  299.   test "$program_prefix" != NONE &&
  300. --- 632,638 ----
  301.   else
  302.     # Double any \ or $.
  303.     echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
  304. !   program_transform_name="`/bin/echo $program_transform_name|sed -f conftestsed`"
  305.     rm -f conftestsed
  306.   fi
  307.   test "$program_prefix" != NONE &&
  308. ***************
  309. *** 782,790 ****
  310.   esac
  311.   
  312.   host=`$ac_config_sub $host_alias`
  313. ! host_cpu=`echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  314. ! host_vendor=`echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  315. ! host_os=`echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  316.   AC_MSG_RESULT($host)
  317.   AC_SUBST(host)dnl
  318.   AC_SUBST(host_alias)dnl
  319. --- 782,790 ----
  320.   esac
  321.   
  322.   host=`$ac_config_sub $host_alias`
  323. ! host_cpu=`/bin/echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  324. ! host_vendor=`/bin/echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  325. ! host_os=`/bin/echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  326.   AC_MSG_RESULT($host)
  327.   AC_SUBST(host)dnl
  328.   AC_SUBST(host_alias)dnl
  329. ***************
  330. *** 808,816 ****
  331.   esac
  332.   
  333.   target=`$ac_config_sub $target_alias`
  334. ! target_cpu=`echo $target | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  335. ! target_vendor=`echo $target | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  336. ! target_os=`echo $target | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  337.   AC_MSG_RESULT($target)
  338.   AC_SUBST(target)dnl
  339.   AC_SUBST(target_alias)dnl
  340. --- 808,816 ----
  341.   esac
  342.   
  343.   target=`$ac_config_sub $target_alias`
  344. ! target_cpu=`/bin/echo $target | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  345. ! target_vendor=`/bin/echo $target | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  346. ! target_os=`/bin/echo $target | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  347.   AC_MSG_RESULT($target)
  348.   AC_SUBST(target)dnl
  349.   AC_SUBST(target_alias)dnl
  350. ***************
  351. *** 834,842 ****
  352.   esac
  353.   
  354.   build=`$ac_config_sub $build_alias`
  355. ! build_cpu=`echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  356. ! build_vendor=`echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  357. ! build_os=`echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  358.   AC_MSG_RESULT($build)
  359.   AC_SUBST(build)dnl
  360.   AC_SUBST(build_alias)dnl
  361. --- 834,842 ----
  362.   esac
  363.   
  364.   build=`$ac_config_sub $build_alias`
  365. ! build_cpu=`/bin/echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  366. ! build_vendor=`/bin/echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  367. ! build_os=`/bin/echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  368.   AC_MSG_RESULT($build)
  369.   AC_SUBST(build)dnl
  370.   AC_SUBST(build_alias)dnl
  371. ***************
  372. *** 918,924 ****
  373.   dnl shell variable, so we need the eval.
  374.   dnl if test "${$1+set}" = set; then
  375.   if eval "test \"`echo '${'$1'+set}'`\" = set"; then
  376. !   echo $ac_n "(cached) $ac_c" 1>&AC_FD_MSG
  377.   else
  378.     $2
  379.   fi
  380. --- 918,924 ----
  381.   dnl shell variable, so we need the eval.
  382.   dnl if test "${$1+set}" = set; then
  383.   if eval "test \"`echo '${'$1'+set}'`\" = set"; then
  384. !   /bin/echo $ac_n "(cached) $ac_c" 1>&AC_FD_MSG
  385.   else
  386.     $2
  387.   fi
  388. ***************
  389. *** 974,980 ****
  390.   
  391.   dnl AC_MSG_CHECKING(FEATURE-DESCRIPTION)
  392.   define(AC_MSG_CHECKING,
  393. ! [echo $ac_n "checking $1""... $ac_c" 1>&AC_FD_MSG])
  394.   
  395.   dnl AC_CHECKING(FEATURE-DESCRIPTION)
  396.   define(AC_CHECKING,
  397. --- 974,980 ----
  398.   
  399.   dnl AC_MSG_CHECKING(FEATURE-DESCRIPTION)
  400.   define(AC_MSG_CHECKING,
  401. ! [/bin/echo $ac_n "checking $1""... $ac_c" 1>&AC_FD_MSG])
  402.   
  403.   dnl AC_CHECKING(FEATURE-DESCRIPTION)
  404.   define(AC_CHECKING,
  405. ***************
  406. *** 982,988 ****
  407.   
  408.   dnl AC_MSG_RESULT(RESULT-DESCRIPTION)
  409.   define(AC_MSG_RESULT,
  410. ! [echo "$ac_t""$1" 1>&AC_FD_MSG])
  411.   
  412.   dnl AC_VERBOSE(RESULT-DESCRIPTION)
  413.   define(AC_VERBOSE,
  414. --- 982,988 ----
  415.   
  416.   dnl AC_MSG_RESULT(RESULT-DESCRIPTION)
  417.   define(AC_MSG_RESULT,
  418. ! [/bin/echo "$ac_t""$1" 1>&AC_FD_MSG])
  419.   
  420.   dnl AC_VERBOSE(RESULT-DESCRIPTION)
  421.   define(AC_VERBOSE,
  422. ***************
  423. *** 1165,1171 ****
  424.   AC_PATH_PROG(AC_VAR_NAME, $1)
  425.   changequote(<<, >>)dnl
  426.     if test -n "$ac_cv_path_<<>>AC_VAR_NAME"; then
  427. !     prefix=`echo $ac_cv_path_<<>>AC_VAR_NAME|sed 's%/[^/][^/]*/[^/][^/]*$%%'`
  428.   changequote([, ])dnl
  429.     fi
  430.   fi
  431. --- 1165,1171 ----
  432.   AC_PATH_PROG(AC_VAR_NAME, $1)
  433.   changequote(<<, >>)dnl
  434.     if test -n "$ac_cv_path_<<>>AC_VAR_NAME"; then
  435. !     prefix=`/bin/echo $ac_cv_path_<<>>AC_VAR_NAME|sed 's%/[^/][^/]*/[^/][^/]*$%%'`
  436.   changequote([, ])dnl
  437.     fi
  438.   fi
  439. ***************
  440. *** 1190,1196 ****
  441.     AC_MSG_RESULT(yes)
  442.     ifelse([$3], , 
  443.   [changequote(, )dnl
  444. !   ac_tr_lib=HAVE_LIB`echo $1 | tr '[a-z]' '[A-Z]'`
  445.   changequote([, ])dnl
  446.     AC_DEFINE_UNQUOTED($ac_tr_lib)
  447.     LIBS="$LIBS -l$1"
  448. --- 1190,1196 ----
  449.     AC_MSG_RESULT(yes)
  450.     ifelse([$3], , 
  451.   [changequote(, )dnl
  452. !   ac_tr_lib=HAVE_LIB`/bin/echo $1 | tr '[a-z]' '[A-Z]'`
  453.   changequote([, ])dnl
  454.     AC_DEFINE_UNQUOTED($ac_tr_lib)
  455.     LIBS="$LIBS -l$1"
  456. ***************
  457. *** 1254,1260 ****
  458.     ifelse([$2], , :, [rm -rf conftest*
  459.     $2])
  460.   else
  461. !   echo "$ac_err" >&AC_FD_CC
  462.   ifelse([$3], , , [  rm -rf conftest*
  463.     $3
  464.   ])dnl
  465. --- 1254,1260 ----
  466.     ifelse([$2], , :, [rm -rf conftest*
  467.     $2])
  468.   else
  469. !   /bin/echo "$ac_err" >&AC_FD_CC
  470.   ifelse([$3], , , [  rm -rf conftest*
  471.     $3
  472.   ])dnl
  473. ***************
  474. *** 1399,1405 ****
  475.   dnl AC_CHECK_HEADER(HEADER-FILE, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND])
  476.   AC_DEFUN(AC_CHECK_HEADER,
  477.   [dnl Do the transliteration at runtime so arg 1 can be a shell variable.
  478. ! ac_safe=`echo "$1" | tr './\055' '___'`
  479.   AC_MSG_CHECKING([for $1])
  480.   AC_CACHE_VAL(ac_cv_header_$ac_safe,
  481.   [AC_TRY_CPP([#include <$1>], eval "ac_cv_header_$ac_safe=yes",
  482. --- 1399,1405 ----
  483.   dnl AC_CHECK_HEADER(HEADER-FILE, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND])
  484.   AC_DEFUN(AC_CHECK_HEADER,
  485.   [dnl Do the transliteration at runtime so arg 1 can be a shell variable.
  486. ! ac_safe=`/bin/echo "$1" | tr './\055' '___'`
  487.   AC_MSG_CHECKING([for $1])
  488.   AC_CACHE_VAL(ac_cv_header_$ac_safe,
  489.   [AC_TRY_CPP([#include <$1>], eval "ac_cv_header_$ac_safe=yes",
  490. ***************
  491. *** 1420,1426 ****
  492.   do
  493.   AC_CHECK_HEADER($ac_hdr,
  494.   [changequote(, )dnl
  495. !   ac_tr_hdr=HAVE_`echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
  496.   changequote([, ])dnl
  497.     AC_DEFINE_UNQUOTED($ac_tr_hdr) $2], $3)dnl
  498.   done
  499. --- 1420,1426 ----
  500.   do
  501.   AC_CHECK_HEADER($ac_hdr,
  502.   [changequote(, )dnl
  503. !   ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
  504.   changequote([, ])dnl
  505.     AC_DEFINE_UNQUOTED($ac_tr_hdr) $2], $3)dnl
  506.   done
  507. ***************
  508. *** 1468,1474 ****
  509.   do
  510.   AC_CHECK_FUNC($ac_func,
  511.   [changequote(, )dnl
  512. !   ac_tr_func=HAVE_`echo $ac_func | tr '[a-z]' '[A-Z]'`
  513.   changequote([, ])dnl
  514.     AC_DEFINE_UNQUOTED($ac_tr_func) $2], $3)dnl
  515.   done
  516. --- 1468,1474 ----
  517.   do
  518.   AC_CHECK_FUNC($ac_func,
  519.   [changequote(, )dnl
  520. !   ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
  521.   changequote([, ])dnl
  522.     AC_DEFINE_UNQUOTED($ac_tr_func) $2], $3)dnl
  523.   done
  524. ***************
  525. *** 1581,1587 ****
  526.   : ${CONFIG_STATUS=./config.status}
  527.   
  528.   echo creating $CONFIG_STATUS
  529. ! rm -f $CONFIG_STATUS
  530.   cat > $CONFIG_STATUS <<EOF
  531.   #!/bin/sh
  532.   # Generated automatically by configure.
  533. --- 1581,1589 ----
  534.   : ${CONFIG_STATUS=./config.status}
  535.   
  536.   echo creating $CONFIG_STATUS
  537. ! # Some systems, like AmigaDOS, won't allow you to remove a script that is
  538. ! # being executed, so just move it out of the way instead.
  539. ! if test -f $CONFIG_STATUS; then mv $CONFIG_STATUS $CONFIG_STATUS.old; else true; fi
  540.   cat > $CONFIG_STATUS <<EOF
  541.   #!/bin/sh
  542.   # Generated automatically by configure.
  543. ***************
  544. *** 1606,1612 ****
  545.       echo "running [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]ac_configure_args --no-create --no-recursion"
  546.       exec [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]ac_configure_args --no-create --no-recursion ;;
  547.     -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  548. !     echo "$CONFIG_STATUS generated by autoconf version AC_ACVERSION"
  549.       exit 0 ;;
  550.     -help | --help | --hel | --he | --h)
  551.       echo "[\$]ac_cs_usage"; exit 0 ;;
  552. --- 1608,1614 ----
  553.       echo "running [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]ac_configure_args --no-create --no-recursion"
  554.       exec [\$]{CONFIG_SHELL-/bin/sh} [$]0 [$]ac_configure_args --no-create --no-recursion ;;
  555.     -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  556. !     /bin/echo "$CONFIG_STATUS generated by autoconf version AC_ACVERSION"
  557.       exit 0 ;;
  558.     -help | --help | --hel | --he | --h)
  559.       echo "[\$]ac_cs_usage"; exit 0 ;;
  560. ***************
  561. *** 1690,1697 ****
  562.   dnl but that's not a huge problem.
  563.     # Support "outfile[:infile]", defaulting infile="outfile.in".
  564.     case "$ac_file" in
  565. !   *:*) ac_file_in=`echo "$ac_file"|sed 's%.*:%%'`
  566. !        ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  567.     *) ac_file_in="${ac_file}.in" ;;
  568.     esac
  569.   
  570. --- 1692,1699 ----
  571.   dnl but that's not a huge problem.
  572.     # Support "outfile[:infile]", defaulting infile="outfile.in".
  573.     case "$ac_file" in
  574. !   *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
  575. !        ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
  576.     *) ac_file_in="${ac_file}.in" ;;
  577.     esac
  578.   
  579. ***************
  580. *** 1699,1705 ****
  581.   
  582.     # Remove last slash and all that follows it.  Not all systems have dirname.
  583.   changequote(, )dnl
  584. !   ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
  585.   changequote([, ])dnl
  586.     if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  587.       # The file is in a subdirectory.
  588. --- 1701,1707 ----
  589.   
  590.     # Remove last slash and all that follows it.  Not all systems have dirname.
  591.   changequote(, )dnl
  592. !   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  593.   changequote([, ])dnl
  594.     if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  595.       # The file is in a subdirectory.
  596. ***************
  597. *** 1707,1713 ****
  598.       ac_dir_suffix="/$ac_dir"
  599.       # A "../" for each directory in $ac_dir_suffix.
  600.   changequote(, )dnl
  601. !     ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  602.   changequote([, ])dnl
  603.     else
  604.       ac_dir_suffix= ac_dots=
  605. --- 1709,1715 ----
  606.       ac_dir_suffix="/$ac_dir"
  607.       # A "../" for each directory in $ac_dir_suffix.
  608.   changequote(, )dnl
  609. !     ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  610.   changequote([, ])dnl
  611.     else
  612.       ac_dir_suffix= ac_dots=
  613. ***************
  614. *** 1716,1722 ****
  615.     case "$ac_given_srcdir" in
  616.     .)  srcdir=.
  617.         if test -z "$ac_dots"; then top_srcdir=.
  618. !       else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
  619.     /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  620.     *) # Relative path.
  621.       srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  622. --- 1718,1724 ----
  623.     case "$ac_given_srcdir" in
  624.     .)  srcdir=.
  625.         if test -z "$ac_dots"; then top_srcdir=.
  626. !       else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
  627.     /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  628.     *) # Relative path.
  629.       srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  630. ***************
  631. *** 1733,1739 ****
  632.   ])dnl
  633.     echo creating "$ac_file"
  634.     rm -f "$ac_file"
  635. !   configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
  636.     case "$ac_file" in
  637.     *Makefile*) ac_comsub="1i\\
  638.   # $configure_input" ;;
  639. --- 1735,1741 ----
  640.   ])dnl
  641.     echo creating "$ac_file"
  642.     rm -f "$ac_file"
  643. !   configure_input="Generated automatically from `/bin/echo $ac_file_in|sed 's%.*/%%'` by configure."
  644.     case "$ac_file" in
  645.     *Makefile*) ac_comsub="1i\\
  646.   # $configure_input" ;;
  647. ***************
  648. *** 1779,1786 ****
  649.   for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then
  650.     # Support "outfile[:infile]", defaulting infile="outfile.in".
  651.     case "$ac_file" in
  652. !   *:*) ac_file_in=`echo "$ac_file"|sed 's%.*:%%'`
  653. !        ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  654.     *) ac_file_in="${ac_file}.in" ;;
  655.     esac
  656.   
  657. --- 1781,1788 ----
  658.   for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then
  659.     # Support "outfile[:infile]", defaulting infile="outfile.in".
  660.     case "$ac_file" in
  661. !   *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
  662. !        ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
  663.     *) ac_file_in="${ac_file}.in" ;;
  664.     esac
  665.   
  666. ***************
  667. *** 1851,1857 ****
  668.     cat conftest.in >> conftest.h
  669.     rm -f conftest.in
  670.     if cmp -s $ac_file conftest.h 2>/dev/null; then
  671. !     echo "$ac_file is unchanged"
  672.       rm -f conftest.h
  673.     else
  674.       rm -f $ac_file
  675. --- 1853,1859 ----
  676.     cat conftest.in >> conftest.h
  677.     rm -f conftest.in
  678.     if cmp -s $ac_file conftest.h 2>/dev/null; then
  679. !     /bin/echo "$ac_file is unchanged"
  680.       rm -f conftest.h
  681.     else
  682.       rm -f $ac_file
  683. ***************
  684. *** 1888,1894 ****
  685.     # Make relative symlinks.
  686.     # Remove last slash and all that follows it.  Not all systems have dirname.
  687.   changequote(, )dnl
  688. !   ac_dest_dir=`echo $ac_dest|sed 's%/[^/][^/]*$%%'`
  689.   changequote([, ])dnl
  690.     if test "$ac_dest_dir" != "$ac_dest" && test "$ac_dest_dir" != .; then
  691.       # The dest file is in a subdirectory.
  692. --- 1890,1896 ----
  693.     # Make relative symlinks.
  694.     # Remove last slash and all that follows it.  Not all systems have dirname.
  695.   changequote(, )dnl
  696. !   ac_dest_dir=`/bin/echo $ac_dest|sed 's%/[^/][^/]*$%%'`
  697.   changequote([, ])dnl
  698.     if test "$ac_dest_dir" != "$ac_dest" && test "$ac_dest_dir" != .; then
  699.       # The dest file is in a subdirectory.
  700. ***************
  701. *** 1896,1902 ****
  702.       ac_dest_dir_suffix="/$ac_dest_dir"
  703.       # A "../" for each directory in $ac_dest_dir_suffix.
  704.   changequote(, )dnl
  705. !     ac_dots=`echo $ac_dest_dir_suffix|sed 's%/[^/]*%../%g'`
  706.   changequote([, ])dnl
  707.     else
  708.       ac_dest_dir_suffix= ac_dots=
  709. --- 1898,1904 ----
  710.       ac_dest_dir_suffix="/$ac_dest_dir"
  711.       # A "../" for each directory in $ac_dest_dir_suffix.
  712.   changequote(, )dnl
  713. !     ac_dots=`/bin/echo $ac_dest_dir_suffix|sed 's%/[^/]*%../%g'`
  714.   changequote([, ])dnl
  715.     else
  716.       ac_dest_dir_suffix= ac_dots=
  717. ***************
  718. *** 1910,1917 ****
  719.     esac
  720.   
  721.     # Make a symlink if possible; otherwise try a hard link.
  722. !   if ln -s $ac_rel_source $ac_dest 2>/dev/null ||
  723. !     ln $srcdir/$ac_source $ac_dest; then :
  724.     else
  725.       AC_MSG_ERROR(can not link $ac_dest to $srcdir/$ac_source)
  726.     fi
  727. --- 1912,1921 ----
  728.     esac
  729.   
  730.     # Make a symlink if possible; otherwise try a hard link.
  731. !   # On the Amiga, we instead try a hard link first and then
  732. !   # just do a cp, since symbolic links still have rough edges.
  733. !   if ln $ac_rel_source $ac_dest 2>/dev/null ||
  734. !     cp -p $srcdir/$ac_source $ac_dest; then :
  735.     else
  736.       AC_MSG_ERROR(can not link $ac_dest to $srcdir/$ac_source)
  737.     fi
  738. diff -rc --new-file autoconf-2.1-base/acspecific.m4 autoconf-2.1/acspecific.m4
  739. *** autoconf-2.1-base/acspecific.m4    Thu Nov  3 19:58:22 1994
  740. --- autoconf-2.1/acspecific.m4    Sat Nov 12 17:08:00 1994
  741. ***************
  742. *** 102,110 ****
  743.   ])dnl
  744.       AC_MSG_RESULT($ac_cv_prog_gcc_g)
  745.       if test $ac_cv_prog_gcc_g = yes; then
  746. !       CFLAGS="-g -O"
  747.       else
  748. !       CFLAGS="-O"
  749.       fi
  750.     fi
  751.   else
  752. --- 102,112 ----
  753.   ])dnl
  754.       AC_MSG_RESULT($ac_cv_prog_gcc_g)
  755.       if test $ac_cv_prog_gcc_g = yes; then
  756. !       # Amiga hack - suppress automatically using -g for now
  757. !       # Also default to using -O2
  758. !       CFLAGS="-O2"
  759.       else
  760. !       CFLAGS="-O2"
  761.       fi
  762.     fi
  763.   else
  764. ***************
  765. *** 146,154 ****
  766.   ])dnl
  767.       AC_MSG_RESULT($ac_cv_prog_gxx_g)
  768.       if test $ac_cv_prog_gxx_g = yes; then
  769. !       CXXFLAGS="-g -O"
  770.       else
  771. !       CXXFLAGS="-O"
  772.       fi
  773.     fi
  774.   else
  775. --- 148,158 ----
  776.   ])dnl
  777.       AC_MSG_RESULT($ac_cv_prog_gxx_g)
  778.       if test $ac_cv_prog_gxx_g = yes; then
  779. !       # Amiga hack - suppress automatically using -g for now
  780. !       # Also default to using -O2
  781. !       CXXFLAGS="-O2"
  782.       else
  783. !       CXXFLAGS="-O2"
  784.       fi
  785.     fi
  786.   else
  787. ***************
  788. *** 210,216 ****
  789.   fi
  790.   rm -f conftest*
  791.   ])dnl
  792. ! if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = yes"; then
  793.     AC_MSG_RESULT(yes)
  794.   else
  795.     AC_MSG_RESULT(no)
  796. --- 214,220 ----
  797.   fi
  798.   rm -f conftest*
  799.   ])dnl
  800. ! if eval "test \"`/bin/echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = yes"; then
  801.     AC_MSG_RESULT(yes)
  802.   else
  803.     AC_MSG_RESULT(no)
  804. ***************
  805. *** 225,231 ****
  806.   AC_CACHE_VAL(ac_cv_prog_make_${ac_make}_set,
  807.   [cat > conftestmake <<\EOF
  808.   all:
  809. !     @echo 'ac_maketemp="${MAKE}"'
  810.   EOF
  811.   changequote(, )dnl
  812.   # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  813. --- 229,235 ----
  814.   AC_CACHE_VAL(ac_cv_prog_make_${ac_make}_set,
  815.   [cat > conftestmake <<\EOF
  816.   all:
  817. !     @/bin/echo 'ac_maketemp="${MAKE}"'
  818.   EOF
  819.   changequote(, )dnl
  820.   # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  821. ***************
  822. *** 237,243 ****
  823.     eval ac_cv_prog_make_${ac_make}_set=no
  824.   fi
  825.   rm -f conftestmake])dnl
  826. ! if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
  827.     AC_MSG_RESULT(yes)
  828.     SET_MAKE=
  829.   else
  830. --- 241,247 ----
  831.     eval ac_cv_prog_make_${ac_make}_set=no
  832.   fi
  833.   rm -f conftestmake])dnl
  834. ! if eval "test \"`/bin/echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
  835.     AC_MSG_RESULT(yes)
  836.     SET_MAKE=
  837.   else
  838. ***************
  839. *** 369,375 ****
  840.   [  IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  841.     for ac_dir in $PATH; do
  842.       case "$ac_dir" in
  843. !     ''|.|/etc|/usr/sbin|/usr/etc|/sbin|/usr/afsws/bin|/usr/ucb) ;;
  844.       *)
  845.         # OSF1 and SCO ODT 3.0 have their own names for install.
  846.         for ac_prog in ginstall installbsd scoinst install; do
  847. --- 373,379 ----
  848.   [  IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  849.     for ac_dir in $PATH; do
  850.       case "$ac_dir" in
  851. !     ''|.|/gnu/etc) ;;
  852.       *)
  853.         # OSF1 and SCO ODT 3.0 have their own names for install.
  854.         for ac_prog in ginstall installbsd scoinst install; do
  855. ***************
  856. *** 406,411 ****
  857. --- 410,419 ----
  858.   AC_SUBST(INSTALL_DATA)dnl
  859.   ])
  860.   
  861. + # Symbolic links do work, however they need to be created in
  862. + # canonical AmigaDOS format (foo:path/file) rather than
  863. + # the current Unix style (/foo/path/file).  So for now,
  864. + # act as if they don't work.  -fnf
  865.   AC_DEFUN(AC_PROG_LN_S,
  866.   [AC_MSG_CHECKING(whether ln -s works)
  867.   AC_CACHE_VAL(ac_cv_prog_LN_S,
  868. ***************
  869. *** 413,419 ****
  870.   if ln -s X conftestdata 2>/dev/null
  871.   then
  872.     rm -f conftestdata
  873. !   ac_cv_prog_LN_S="ln -s"
  874.   else
  875.     ac_cv_prog_LN_S=ln
  876.   fi])dnl
  877. --- 421,427 ----
  878.   if ln -s X conftestdata 2>/dev/null
  879.   then
  880.     rm -f conftestdata
  881. !   ac_cv_prog_LN_S="ln"        # hack; was "ln -s"; see note above; fnf
  882.   else
  883.     ac_cv_prog_LN_S=ln
  884.   fi])dnl
  885. ***************
  886. *** 527,540 ****
  887.   dnl defines the type `DIR'.  dirent.h on NextStep 3.2 doesn't.
  888.   dnl AC_CHECK_HEADER_DIRENT(HEADER-FILE, ACTION-IF-FOUND)
  889.   AC_DEFUN(AC_CHECK_HEADER_DIRENT,
  890. ! [ac_safe=`echo "$1" | tr './\055' '___'`
  891.   AC_MSG_CHECKING([for $1 that defines DIR])
  892.   AC_CACHE_VAL(ac_cv_header_dirent_$ac_safe,
  893.   [AC_TRY_COMPILE([#include <sys/types.h>
  894.   #include <$1>], [DIR *dirp = 0;],
  895.     eval "ac_cv_header_dirent_$ac_safe=yes",
  896.     eval "ac_cv_header_dirent_$ac_safe=no")])dnl
  897. ! if eval "test \"`echo '$ac_cv_header_dirent_'$ac_safe`\" = yes"; then
  898.     AC_MSG_RESULT(yes)
  899.     $2
  900.   else
  901. --- 535,548 ----
  902.   dnl defines the type `DIR'.  dirent.h on NextStep 3.2 doesn't.
  903.   dnl AC_CHECK_HEADER_DIRENT(HEADER-FILE, ACTION-IF-FOUND)
  904.   AC_DEFUN(AC_CHECK_HEADER_DIRENT,
  905. ! [ac_safe=`/bin/echo "$1" | tr './\055' '___'`
  906.   AC_MSG_CHECKING([for $1 that defines DIR])
  907.   AC_CACHE_VAL(ac_cv_header_dirent_$ac_safe,
  908.   [AC_TRY_COMPILE([#include <sys/types.h>
  909.   #include <$1>], [DIR *dirp = 0;],
  910.     eval "ac_cv_header_dirent_$ac_safe=yes",
  911.     eval "ac_cv_header_dirent_$ac_safe=no")])dnl
  912. ! if eval "test \"`/bin/echo '$ac_cv_header_dirent_'$ac_safe`\" = yes"; then
  913.     AC_MSG_RESULT(yes)
  914.     $2
  915.   else
  916. ***************
  917. *** 550,556 ****
  918.   do
  919.   AC_CHECK_HEADER_DIRENT($ac_hdr,
  920.   [changequote(, )dnl
  921. !   ac_tr_hdr=HAVE_`echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
  922.   changequote([, ])dnl
  923.     AC_DEFINE_UNQUOTED($ac_tr_hdr) $2])dnl
  924.   done])
  925. --- 558,564 ----
  926.   do
  927.   AC_CHECK_HEADER_DIRENT($ac_hdr,
  928.   [changequote(, )dnl
  929. !   ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
  930.   changequote([, ])dnl
  931.     AC_DEFINE_UNQUOTED($ac_tr_hdr) $2])dnl
  932.   done])
  933. ***************
  934. *** 892,897 ****
  935. --- 900,910 ----
  936.   
  937.     sparc_address_test ();
  938.   
  939. + #ifdef __amigados__
  940. +   /* Force this test to succeed for AmigaDOS, which has a fairly good
  941. +      vfork() emulation, but doesn't support fork() at all.  -fnf */
  942. +   exit (0);
  943. + #endif
  944.     signal (SIGINT, catch);
  945.   
  946.     child = vfork ();
  947. ***************
  948. *** 1096,1102 ****
  949.   if test $ac_have_func = no; then
  950.   # There is a commonly available library for RS/6000 AIX.
  951.   # Since it is not a standard part of AIX, it might be installed locally.
  952. ! ac_save_LIBS="$LIBS" LIBS="-L/usr/local/lib $LIBS"
  953.   AC_CHECK_LIB(getloadavg, getloadavg, LIBS="$LIBS -lgetloadavg", LIBS="$ac_save_LIBS")
  954.   fi
  955.   
  956. --- 1109,1115 ----
  957.   if test $ac_have_func = no; then
  958.   # There is a commonly available library for RS/6000 AIX.
  959.   # Since it is not a standard part of AIX, it might be installed locally.
  960. ! ac_save_LIBS="$LIBS" LIBS="-L/local/lib $LIBS"
  961.   AC_CHECK_LIB(getloadavg, getloadavg, LIBS="$LIBS -lgetloadavg", LIBS="$ac_save_LIBS")
  962.   fi
  963.   
  964. ***************
  965. *** 1170,1176 ****
  966.     ac_ls_output=`ls -lgL /dev/kmem 2>/dev/null`
  967.     # If we got an error (system does not support symlinks), try without -L.
  968.     test -z "$ac_ls_output" && ac_ls_output=`ls -lg /dev/kmem`
  969. !   ac_cv_group_kmem=`echo $ac_ls_output \
  970.       | sed -ne 's/[     ][     ]*/ /g;
  971.              s/^.[sSrwx-]* *[0-9]* *\([^0-9]*\)  *.*/\1/;
  972.              / /s/.* //;p;'`
  973. --- 1183,1189 ----
  974.     ac_ls_output=`ls -lgL /dev/kmem 2>/dev/null`
  975.     # If we got an error (system does not support symlinks), try without -L.
  976.     test -z "$ac_ls_output" && ac_ls_output=`ls -lg /dev/kmem`
  977. !   ac_cv_group_kmem=`/bin/echo $ac_ls_output \
  978.       | sed -ne 's/[     ][     ]*/ /g;
  979.              s/^.[sSrwx-]* *[0-9]* *\([^0-9]*\)  *.*/\1/;
  980.              / /s/.* //;p;'`
  981. ***************
  982. *** 1225,1230 ****
  983. --- 1238,1250 ----
  984.   [AC_TRY_RUN([#include <stdio.h>
  985.   /* If setvbuf has the reversed format, exit 0. */
  986.   main () {
  987. + #ifdef __amigados__
  988. +   /* AmigaDOS is a non-reversed system.  Instead of the test program
  989. +      getting a segfault (no memory protection), it causes enforcer hits
  990. +      or other nastiness, so don't run the test program, just exit with
  991. +      status 1 to indicate that it is non-reversed.  -fnf */
  992. +   exit(1);
  993. + #endif
  994.     /* This call has the arguments reversed.
  995.        A reversed system may check and see that the address of main
  996.        is not _IOLBF, _IONBF, or _IOFBF, and return nonzero.  */
  997. ***************
  998. *** 1572,1578 ****
  999.   #      $prefix/lib    where we will be installing things
  1000.   #      $exec_prefix/lib    likewise
  1001.   # eval it to expand exec_prefix.
  1002. ! for ac_dir in `eval echo . /tmp /var/tmp /usr/tmp $prefix/lib $exec_prefix/lib` ; do
  1003.     test -d $ac_dir || continue
  1004.     test -w $ac_dir || continue # It is less confusing to not echo anything here.
  1005.     (echo 1 > $ac_dir/conftest9012345) 2>/dev/null
  1006. --- 1592,1598 ----
  1007.   #      $prefix/lib    where we will be installing things
  1008.   #      $exec_prefix/lib    likewise
  1009.   # eval it to expand exec_prefix.
  1010. ! for ac_dir in `eval echo . /tmp $prefix/lib $exec_prefix/lib` ; do
  1011.     test -d $ac_dir || continue
  1012.     test -w $ac_dir || continue # It is less confusing to not echo anything here.
  1013.     (echo 1 > $ac_dir/conftest9012345) 2>/dev/null
  1014. ***************
  1015. *** 1666,1672 ****
  1016.     # Make sure to not put "make" in the Imakefile rules, since we grep it out.
  1017.     cat > Imakefile <<'EOF'
  1018.   acfindx:
  1019. !     @echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
  1020.   EOF
  1021.     if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
  1022.       no_x=
  1023. --- 1686,1692 ----
  1024.     # Make sure to not put "make" in the Imakefile rules, since we grep it out.
  1025.     cat > Imakefile <<'EOF'
  1026.   acfindx:
  1027. !     @/bin/echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
  1028.   EOF
  1029.     if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
  1030.       no_x=
  1031. ***************
  1032. *** 1678,1688 ****
  1033.         ac_im_usrlibdir=$ac_im_libdir
  1034.       fi
  1035.       case "$ac_im_incroot" in
  1036. !     /usr/include) ;;
  1037.       *) ac_x_includes="$ac_im_incroot" ;;
  1038.       esac
  1039.       case "$ac_im_usrlibdir" in
  1040. !     /usr/lib | /lib) ;;
  1041.       *) ac_x_libraries="$ac_im_usrlibdir" ;;
  1042.       esac
  1043.     fi
  1044. --- 1698,1708 ----
  1045.         ac_im_usrlibdir=$ac_im_libdir
  1046.       fi
  1047.       case "$ac_im_incroot" in
  1048. !     /gnu/include) ;;
  1049.       *) ac_x_includes="$ac_im_incroot" ;;
  1050.       esac
  1051.       case "$ac_im_usrlibdir" in
  1052. !     /gnu/lib) ;;
  1053.       *) ac_x_libraries="$ac_im_usrlibdir" ;;
  1054.       esac
  1055.     fi
  1056. ***************
  1057. *** 1704,1712 ****
  1058.       /usr/X11R5/include        \
  1059.       /usr/X11R4/include        \
  1060.                                 \
  1061. !     /usr/include/X11R6        \
  1062. !     /usr/include/X11R5        \
  1063. !     /usr/include/X11R4        \
  1064.                                 \
  1065.       /usr/local/X11R6/include  \
  1066.       /usr/local/X11R5/include  \
  1067. --- 1724,1732 ----
  1068.       /usr/X11R5/include        \
  1069.       /usr/X11R4/include        \
  1070.                                 \
  1071. !     /gnu/include/X11R6        \
  1072. !     /gnu/include/X11R5        \
  1073. !     /gnu/include/X11R4        \
  1074.                                 \
  1075.       /usr/local/X11R6/include  \
  1076.       /usr/local/X11R5/include  \
  1077. ***************
  1078. *** 1717,1723 ****
  1079.       /usr/local/include/X11R4  \
  1080.                                 \
  1081.       /usr/X11/include          \
  1082. !     /usr/include/X11          \
  1083.       /usr/local/X11/include    \
  1084.       /usr/local/include/X11    \
  1085.                                 \
  1086. --- 1737,1743 ----
  1087.       /usr/local/include/X11R4  \
  1088.                                 \
  1089.       /usr/X11/include          \
  1090. !     /gnu/include/X11          \
  1091.       /usr/local/X11/include    \
  1092.       /usr/local/include/X11    \
  1093.                                 \
  1094. ***************
  1095. *** 1725,1731 ****
  1096.       /usr/x386/include         \
  1097.       /usr/XFree86/include/X11  \
  1098.                                 \
  1099. !     /usr/include              \
  1100.       /usr/local/include        \
  1101.       /usr/unsupported/include  \
  1102.       /usr/athena/include       \
  1103. --- 1745,1751 ----
  1104.       /usr/x386/include         \
  1105.       /usr/XFree86/include/X11  \
  1106.                                 \
  1107. !     /gnu/include              \
  1108.       /usr/local/include        \
  1109.       /usr/unsupported/include  \
  1110.       /usr/athena/include       \
  1111. ***************
  1112. *** 1751,1757 ****
  1113.   [LIBS="$ac_save_LIBS" no_x= ac_x_libraries=],
  1114.   [LIBS="$ac_save_LIBS"
  1115.   # First see if replacing the include by lib works.
  1116. ! for ac_dir in `echo "$ac_x_includes" | sed s/include/lib/` \
  1117.       /usr/X11R6/lib        \
  1118.       /usr/X11R5/lib        \
  1119.       /usr/X11R4/lib        \
  1120. --- 1771,1777 ----
  1121.   [LIBS="$ac_save_LIBS" no_x= ac_x_libraries=],
  1122.   [LIBS="$ac_save_LIBS"
  1123.   # First see if replacing the include by lib works.
  1124. ! for ac_dir in `/bin/echo "$ac_x_includes" | sed s/include/lib/` \
  1125.       /usr/X11R6/lib        \
  1126.       /usr/X11R5/lib        \
  1127.       /usr/X11R4/lib        \
  1128. ***************
  1129. *** 1901,1908 ****
  1130.   AC_BEFORE([$0], [AC_TRY_LINK])dnl
  1131.   AC_BEFORE([$0], [AC_TRY_RUN])dnl
  1132.   AC_MSG_CHECKING(for POSIXized ISC)
  1133. ! if test -d /etc/conf/kconfig.d &&
  1134. !   grep _POSIX_VERSION [/usr/include/sys/unistd.h] >/dev/null 2>&1
  1135.   then
  1136.     AC_MSG_RESULT(yes)
  1137.     ISC=yes # If later tests want to check for ISC.
  1138. --- 1921,1928 ----
  1139.   AC_BEFORE([$0], [AC_TRY_LINK])dnl
  1140.   AC_BEFORE([$0], [AC_TRY_RUN])dnl
  1141.   AC_MSG_CHECKING(for POSIXized ISC)
  1142. ! if test -d /gnu/etc/conf/kconfig.d &&
  1143. !   grep _POSIX_VERSION [/gnu/include/sys/unistd.h] >/dev/null 2>&1
  1144.   then
  1145.     AC_MSG_RESULT(yes)
  1146.     ISC=yes # If later tests want to check for ISC.
  1147. diff -rc --new-file autoconf-2.1-base/autoconf.info autoconf-2.1/autoconf.info
  1148. *** autoconf-2.1-base/autoconf.info    Fri Nov  4 14:45:59 1994
  1149. --- autoconf-2.1/autoconf.info    Thu Nov 10 15:31:26 1994
  1150. ***************
  1151. *** 1,5 ****
  1152. ! This is Info file autoconf.info, produced by Makeinfo-1.55 from the
  1153. ! input file ./autoconf.texi.
  1154.   
  1155.   START-INFO-DIR-ENTRY
  1156.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1157. --- 1,6 ----
  1158. ! This is Info file /gnu/src/amiga/autoconf-2.1/autoconf.info, produced
  1159. ! by Makeinfo-1.55 from the input file
  1160. ! /gnu/src/amiga/autoconf-2.1/autoconf.texi.
  1161.   
  1162.   START-INFO-DIR-ENTRY
  1163.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1164. ***************
  1165. *** 27,152 ****
  1166.   
  1167.   
  1168.   Indirect:
  1169. ! autoconf.info-1: 1085
  1170. ! autoconf.info-2: 51012
  1171. ! autoconf.info-3: 100216
  1172. ! autoconf.info-4: 150192
  1173. ! autoconf.info-5: 198408
  1174.   
  1175.   Tag Table:
  1176.   (Indirect)
  1177. ! Node: Top1085
  1178. ! Node: Introduction9210
  1179. ! Node: Making configure Scripts13050
  1180. ! Node: Writing configure.in16115
  1181. ! Node: Invoking autoscan19815
  1182. ! Node: Invoking ifnames22120
  1183. ! Node: Invoking autoconf23610
  1184. ! Node: Invoking autoreconf25448
  1185. ! Node: Setup27768
  1186. ! Node: Input28654
  1187. ! Node: Output30270
  1188. ! Node: Makefile Substitutions33020
  1189. ! Node: Preset Output Variables34602
  1190. ! Node: Build Directories37840
  1191. ! Node: Automatic Remaking39566
  1192. ! Node: Configuration Headers41632
  1193. ! Node: Header Templates43999
  1194. ! Node: Invoking autoheader45178
  1195. ! Node: Subdirectories48265
  1196. ! Node: Default Prefix49608
  1197. ! Node: Versions51012
  1198. ! Node: Existing Tests52914
  1199. ! Node: Alternative Programs54379
  1200. ! Node: Particular Programs55043
  1201. ! Node: Generic Programs60893
  1202. ! Node: Libraries62570
  1203. ! Node: Library Functions64399
  1204. ! Node: Particular Functions64957
  1205. ! Node: Generic Functions70704
  1206. ! Node: Header Files72545
  1207. ! Node: Particular Headers73104
  1208. ! Node: Generic Headers80075
  1209. ! Node: Structures81375
  1210. ! Node: Typedefs83612
  1211. ! Node: Particular Typedefs84116
  1212. ! Node: Generic Typedefs85316
  1213. ! Node: Compiler Characteristics85759
  1214. ! Node: System Services88215
  1215. ! Node: UNIX Variants90536
  1216. ! Node: Writing Tests92555
  1217. ! Node: Examining Declarations94327
  1218. ! Node: Examining Syntax96793
  1219. ! Node: Examining Libraries97848
  1220. ! Node: Run Time100216
  1221. ! Node: Test Programs101177
  1222. ! Node: Guidelines103712
  1223. ! Node: Test Functions104901
  1224. ! Node: Portable Shell106444
  1225. ! Node: Testing Values and Files108096
  1226. ! Node: Multiple Cases109751
  1227. ! Node: Language Choice110949
  1228. ! Node: Results112507
  1229. ! Node: Defining Symbols113266
  1230. ! Node: Setting Output Variables116275
  1231. ! Node: Caching Results118121
  1232. ! Node: Cache Variable Names120023
  1233. ! Node: Cache Files121572
  1234. ! Node: Printing Messages123357
  1235. ! Node: Writing Macros126644
  1236. ! Node: Macro Definitions127263
  1237. ! Node: Macro Names128368
  1238. ! Node: Quoting130819
  1239. ! Node: Dependencies Between Macros132721
  1240. ! Node: Prerequisite Macros133353
  1241. ! Node: Suggested Ordering134808
  1242. ! Node: Obsolete Macros136338
  1243. ! Node: Manual Configuration137562
  1244. ! Node: Specifying Names138471
  1245. ! Node: Canonicalizing140343
  1246. ! Node: System Type Variables141657
  1247. ! Node: Using System Type142404
  1248. ! Node: Site Configuration143684
  1249. ! Node: External Software144457
  1250. ! Node: Package Options146922
  1251. ! Node: Site Details148978
  1252. ! Node: Transforming Names150192
  1253. ! Node: Transformation Options151371
  1254. ! Node: Transformation Examples151837
  1255. ! Node: Transformation Rules153405
  1256. ! Node: Site Defaults154814
  1257. ! Node: Invoking configure157976
  1258. ! Node: Basic Installation158917
  1259. ! Node: Compilers and Options161239
  1260. ! Node: Build Directory161881
  1261. ! Node: Installation Names162582
  1262. ! Node: Optional Features163500
  1263. ! Node: System Type164270
  1264. ! Node: Sharing Defaults165292
  1265. ! Node: Operation Controls165916
  1266. ! Node: Invoking config.status166780
  1267. ! Node: Questions170168
  1268. ! Node: Distributing170700
  1269. ! Node: Why GNU m4171826
  1270. ! Node: Bootstrapping172639
  1271. ! Node: Why Not Imake173255
  1272. ! Node: Upgrading177836
  1273. ! Node: Changed File Names179357
  1274. ! Node: Changed Makefiles180093
  1275. ! Node: Changed Macros181173
  1276. ! Node: Invoking autoupdate182420
  1277. ! Node: Changed Results184011
  1278. ! Node: Changed Macro Writing186113
  1279. ! Node: History187376
  1280. ! Node: Genesis188083
  1281. ! Node: Exodus189256
  1282. ! Node: Leviticus192305
  1283. ! Node: Numbers193828
  1284. ! Node: Deuteronomy195744
  1285. ! Node: Old Macro Names198408
  1286. ! Node: Environment Variable Index201457
  1287. ! Node: Output Variable Index202459
  1288. ! Node: Preprocessor Symbol Index206540
  1289. ! Node: Macro Index211348
  1290.   
  1291.   End Tag Table
  1292. --- 28,153 ----
  1293.   
  1294.   
  1295.   Indirect:
  1296. ! autoconf.info-1: 1139
  1297. ! autoconf.info-2: 51066
  1298. ! autoconf.info-3: 100271
  1299. ! autoconf.info-4: 150247
  1300. ! autoconf.info-5: 198463
  1301.   
  1302.   Tag Table:
  1303.   (Indirect)
  1304. ! Node: Top1139
  1305. ! Node: Introduction9264
  1306. ! Node: Making configure Scripts13104
  1307. ! Node: Writing configure.in16169
  1308. ! Node: Invoking autoscan19869
  1309. ! Node: Invoking ifnames22174
  1310. ! Node: Invoking autoconf23664
  1311. ! Node: Invoking autoreconf25502
  1312. ! Node: Setup27822
  1313. ! Node: Input28708
  1314. ! Node: Output30324
  1315. ! Node: Makefile Substitutions33074
  1316. ! Node: Preset Output Variables34656
  1317. ! Node: Build Directories37894
  1318. ! Node: Automatic Remaking39620
  1319. ! Node: Configuration Headers41686
  1320. ! Node: Header Templates44053
  1321. ! Node: Invoking autoheader45232
  1322. ! Node: Subdirectories48319
  1323. ! Node: Default Prefix49662
  1324. ! Node: Versions51066
  1325. ! Node: Existing Tests52968
  1326. ! Node: Alternative Programs54433
  1327. ! Node: Particular Programs55097
  1328. ! Node: Generic Programs60947
  1329. ! Node: Libraries62624
  1330. ! Node: Library Functions64453
  1331. ! Node: Particular Functions65011
  1332. ! Node: Generic Functions70758
  1333. ! Node: Header Files72599
  1334. ! Node: Particular Headers73158
  1335. ! Node: Generic Headers80129
  1336. ! Node: Structures81429
  1337. ! Node: Typedefs83666
  1338. ! Node: Particular Typedefs84170
  1339. ! Node: Generic Typedefs85370
  1340. ! Node: Compiler Characteristics85813
  1341. ! Node: System Services88270
  1342. ! Node: UNIX Variants90591
  1343. ! Node: Writing Tests92610
  1344. ! Node: Examining Declarations94382
  1345. ! Node: Examining Syntax96848
  1346. ! Node: Examining Libraries97903
  1347. ! Node: Run Time100271
  1348. ! Node: Test Programs101232
  1349. ! Node: Guidelines103767
  1350. ! Node: Test Functions104956
  1351. ! Node: Portable Shell106499
  1352. ! Node: Testing Values and Files108151
  1353. ! Node: Multiple Cases109806
  1354. ! Node: Language Choice111004
  1355. ! Node: Results112562
  1356. ! Node: Defining Symbols113321
  1357. ! Node: Setting Output Variables116330
  1358. ! Node: Caching Results118176
  1359. ! Node: Cache Variable Names120078
  1360. ! Node: Cache Files121627
  1361. ! Node: Printing Messages123412
  1362. ! Node: Writing Macros126699
  1363. ! Node: Macro Definitions127318
  1364. ! Node: Macro Names128423
  1365. ! Node: Quoting130874
  1366. ! Node: Dependencies Between Macros132776
  1367. ! Node: Prerequisite Macros133408
  1368. ! Node: Suggested Ordering134863
  1369. ! Node: Obsolete Macros136393
  1370. ! Node: Manual Configuration137617
  1371. ! Node: Specifying Names138526
  1372. ! Node: Canonicalizing140398
  1373. ! Node: System Type Variables141712
  1374. ! Node: Using System Type142459
  1375. ! Node: Site Configuration143739
  1376. ! Node: External Software144512
  1377. ! Node: Package Options146977
  1378. ! Node: Site Details149033
  1379. ! Node: Transforming Names150247
  1380. ! Node: Transformation Options151426
  1381. ! Node: Transformation Examples151892
  1382. ! Node: Transformation Rules153460
  1383. ! Node: Site Defaults154869
  1384. ! Node: Invoking configure158031
  1385. ! Node: Basic Installation158972
  1386. ! Node: Compilers and Options161294
  1387. ! Node: Build Directory161936
  1388. ! Node: Installation Names162637
  1389. ! Node: Optional Features163555
  1390. ! Node: System Type164325
  1391. ! Node: Sharing Defaults165347
  1392. ! Node: Operation Controls165971
  1393. ! Node: Invoking config.status166835
  1394. ! Node: Questions170223
  1395. ! Node: Distributing170755
  1396. ! Node: Why GNU m4171881
  1397. ! Node: Bootstrapping172694
  1398. ! Node: Why Not Imake173310
  1399. ! Node: Upgrading177891
  1400. ! Node: Changed File Names179412
  1401. ! Node: Changed Makefiles180148
  1402. ! Node: Changed Macros181228
  1403. ! Node: Invoking autoupdate182475
  1404. ! Node: Changed Results184066
  1405. ! Node: Changed Macro Writing186168
  1406. ! Node: History187431
  1407. ! Node: Genesis188138
  1408. ! Node: Exodus189311
  1409. ! Node: Leviticus192360
  1410. ! Node: Numbers193883
  1411. ! Node: Deuteronomy195799
  1412. ! Node: Old Macro Names198463
  1413. ! Node: Environment Variable Index201512
  1414. ! Node: Output Variable Index202514
  1415. ! Node: Preprocessor Symbol Index206595
  1416. ! Node: Macro Index211403
  1417.   
  1418.   End Tag Table
  1419. diff -rc --new-file autoconf-2.1-base/autoconf.info-1 autoconf-2.1/autoconf.info-1
  1420. *** autoconf-2.1-base/autoconf.info-1    Fri Nov  4 14:45:59 1994
  1421. --- autoconf-2.1/autoconf.info-1    Thu Nov 10 15:31:26 1994
  1422. ***************
  1423. *** 1,5 ****
  1424. ! This is Info file autoconf.info, produced by Makeinfo-1.55 from the
  1425. ! input file ./autoconf.texi.
  1426.   
  1427.   START-INFO-DIR-ENTRY
  1428.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1429. --- 1,6 ----
  1430. ! This is Info file /gnu/src/amiga/autoconf-2.1/autoconf.info, produced
  1431. ! by Makeinfo-1.55 from the input file
  1432. ! /gnu/src/amiga/autoconf-2.1/autoconf.texi.
  1433.   
  1434.   START-INFO-DIR-ENTRY
  1435.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1436. diff -rc --new-file autoconf-2.1-base/autoconf.info-2 autoconf-2.1/autoconf.info-2
  1437. *** autoconf-2.1-base/autoconf.info-2    Fri Nov  4 14:45:59 1994
  1438. --- autoconf-2.1/autoconf.info-2    Thu Nov 10 15:31:26 1994
  1439. ***************
  1440. *** 1,5 ****
  1441. ! This is Info file autoconf.info, produced by Makeinfo-1.55 from the
  1442. ! input file ./autoconf.texi.
  1443.   
  1444.   START-INFO-DIR-ENTRY
  1445.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1446. --- 1,6 ----
  1447. ! This is Info file /gnu/src/amiga/autoconf-2.1/autoconf.info, produced
  1448. ! by Makeinfo-1.55 from the input file
  1449. ! /gnu/src/amiga/autoconf-2.1/autoconf.texi.
  1450.   
  1451.   START-INFO-DIR-ENTRY
  1452.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1453. ***************
  1454. *** 935,941 ****
  1455.        and asterisks changed to `P'.  For example, the call
  1456.             AC_CHECK_SIZEOF(int *)
  1457.   
  1458. !      defines `SIZEOF_INT_P' to be 8 on DEC Alpha AXP systems.
  1459.   
  1460.    - Macro: AC_INT_16_BITS
  1461.        If the C type `int' is 16 bits wide, define `INT_16_BITS'.  This
  1462. --- 936,942 ----
  1463.        and asterisks changed to `P'.  For example, the call
  1464.             AC_CHECK_SIZEOF(int *)
  1465.   
  1466. !      defines `SIZEOF_INT_P' to be 64 on DEC Alpha AXP systems.
  1467.   
  1468.    - Macro: AC_INT_16_BITS
  1469.        If the C type `int' is 16 bits wide, define `INT_16_BITS'.  This
  1470. diff -rc --new-file autoconf-2.1-base/autoconf.info-3 autoconf-2.1/autoconf.info-3
  1471. *** autoconf-2.1-base/autoconf.info-3    Fri Nov  4 14:45:59 1994
  1472. --- autoconf-2.1/autoconf.info-3    Thu Nov 10 15:31:26 1994
  1473. ***************
  1474. *** 1,5 ****
  1475. ! This is Info file autoconf.info, produced by Makeinfo-1.55 from the
  1476. ! input file ./autoconf.texi.
  1477.   
  1478.   START-INFO-DIR-ENTRY
  1479.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1480. --- 1,6 ----
  1481. ! This is Info file /gnu/src/amiga/autoconf-2.1/autoconf.info, produced
  1482. ! by Makeinfo-1.55 from the input file
  1483. ! /gnu/src/amiga/autoconf-2.1/autoconf.texi.
  1484.   
  1485.   START-INFO-DIR-ENTRY
  1486.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1487. diff -rc --new-file autoconf-2.1-base/autoconf.info-4 autoconf-2.1/autoconf.info-4
  1488. *** autoconf-2.1-base/autoconf.info-4    Fri Nov  4 14:45:59 1994
  1489. --- autoconf-2.1/autoconf.info-4    Thu Nov 10 15:31:26 1994
  1490. ***************
  1491. *** 1,5 ****
  1492. ! This is Info file autoconf.info, produced by Makeinfo-1.55 from the
  1493. ! input file ./autoconf.texi.
  1494.   
  1495.   START-INFO-DIR-ENTRY
  1496.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1497. --- 1,6 ----
  1498. ! This is Info file /gnu/src/amiga/autoconf-2.1/autoconf.info, produced
  1499. ! by Makeinfo-1.55 from the input file
  1500. ! /gnu/src/amiga/autoconf-2.1/autoconf.texi.
  1501.   
  1502.   START-INFO-DIR-ENTRY
  1503.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1504. diff -rc --new-file autoconf-2.1-base/autoconf.info-5 autoconf-2.1/autoconf.info-5
  1505. *** autoconf-2.1-base/autoconf.info-5    Fri Nov  4 14:45:59 1994
  1506. --- autoconf-2.1/autoconf.info-5    Thu Nov 10 15:31:26 1994
  1507. ***************
  1508. *** 1,5 ****
  1509. ! This is Info file autoconf.info, produced by Makeinfo-1.55 from the
  1510. ! input file ./autoconf.texi.
  1511.   
  1512.   START-INFO-DIR-ENTRY
  1513.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1514. --- 1,6 ----
  1515. ! This is Info file /gnu/src/amiga/autoconf-2.1/autoconf.info, produced
  1516. ! by Makeinfo-1.55 from the input file
  1517. ! /gnu/src/amiga/autoconf-2.1/autoconf.texi.
  1518.   
  1519.   START-INFO-DIR-ENTRY
  1520.   * Autoconf: (autoconf).         Create source code configuration scripts.
  1521. diff -rc --new-file autoconf-2.1-base/autoconf.sh autoconf-2.1/autoconf.sh
  1522. *** autoconf-2.1-base/autoconf.sh    Thu Sep 22 20:53:08 1994
  1523. --- autoconf-2.1/autoconf.sh    Thu Nov 10 16:02:12 1994
  1524. ***************
  1525. *** 46,58 ****
  1526.   while test $# -gt 0 ; do
  1527.      case "${1}" in 
  1528.         -h | --help | --h* )
  1529. !          echo "${usage}" 1>&2; exit 0 ;;
  1530.         --localdir=* | --l*=* )
  1531.            localdir="`echo \"${1}\" | sed -e 's/^[^=]*=//'`"
  1532.            shift ;;
  1533.         -l | --localdir | --l*)
  1534.            shift
  1535. !          test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; }
  1536.            localdir="${1}"
  1537.            shift ;;
  1538.         --macrodir=* | --m*=* )
  1539. --- 46,58 ----
  1540.   while test $# -gt 0 ; do
  1541.      case "${1}" in 
  1542.         -h | --help | --h* )
  1543. !          /bin/echo "${usage}" 1>&2; exit 0 ;;
  1544.         --localdir=* | --l*=* )
  1545.            localdir="`echo \"${1}\" | sed -e 's/^[^=]*=//'`"
  1546.            shift ;;
  1547.         -l | --localdir | --l*)
  1548.            shift
  1549. !          test $# -eq 0 && { /bin/echo "${usage}" 1>&2; exit 1; }
  1550.            localdir="${1}"
  1551.            shift ;;
  1552.         --macrodir=* | --m*=* )
  1553. ***************
  1554. *** 60,66 ****
  1555.            shift ;;
  1556.         -m | --macrodir | --m* ) 
  1557.            shift
  1558. !          test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; }
  1559.            AC_MACRODIR="${1}"
  1560.            shift ;;
  1561.         --version | --v* )
  1562. --- 60,66 ----
  1563.            shift ;;
  1564.         -m | --macrodir | --m* ) 
  1565.            shift
  1566. !          test $# -eq 0 && { /bin/echo "${usage}" 1>&2; exit 1; }
  1567.            AC_MACRODIR="${1}"
  1568.            shift ;;
  1569.         --version | --v* )
  1570. ***************
  1571. *** 70,76 ****
  1572.         - )    # Use stdin as input.
  1573.           break ;;
  1574.         -* )
  1575. !         echo "${usage}" 1>&2; exit 1 ;;
  1576.         * )
  1577.           break ;;
  1578.      esac
  1579. --- 70,76 ----
  1580.         - )    # Use stdin as input.
  1581.           break ;;
  1582.         -* )
  1583. !         /bin/echo "${usage}" 1>&2; exit 1 ;;
  1584.         * )
  1585.           break ;;
  1586.      esac
  1587. ***************
  1588. *** 86,92 ****
  1589.   case $# in
  1590.     0) infile=configure.in ;;
  1591.     1) infile="$1" ;;
  1592. !   *) echo "$usage" >&2; exit 1 ;;
  1593.   esac
  1594.   
  1595.   trap 'rm -f $tmpin $tmpout; exit 1' 1 2 15
  1596. --- 86,92 ----
  1597.   case $# in
  1598.     0) infile=configure.in ;;
  1599.     1) infile="$1" ;;
  1600. !   *) /bin/echo "$usage" >&2; exit 1 ;;
  1601.   esac
  1602.   
  1603.   trap 'rm -f $tmpin $tmpout; exit 1' 1 2 15
  1604. ***************
  1605. *** 125,131 ****
  1606.   
  1607.   status=0
  1608.   if grep "${pattern}" $tmpout > /dev/null 2>&1; then
  1609. !   echo "autoconf: Undefined macros:" >&2
  1610.     grep "${pattern}" $tmpout | sed "s/.*\(${pattern}[_A-Z0-9]*\).*/\1/" |
  1611.       while read name; do
  1612.         grep -n $name $infile /dev/null
  1613. --- 125,131 ----
  1614.   
  1615.   status=0
  1616.   if grep "${pattern}" $tmpout > /dev/null 2>&1; then
  1617. !   /bin/echo "autoconf: Undefined macros:" >&2
  1618.     grep "${pattern}" $tmpout | sed "s/.*\(${pattern}[_A-Z0-9]*\).*/\1/" |
  1619.       while read name; do
  1620.         grep -n $name $infile /dev/null
  1621. ***************
  1622. *** 134,140 ****
  1623.   fi
  1624.   
  1625.   if test $# -eq 0; then
  1626. !   exec 4> configure; chmod +x configure
  1627.   else
  1628.     exec 4>&1
  1629.   fi
  1630. --- 134,140 ----
  1631.   fi
  1632.   
  1633.   if test $# -eq 0; then
  1634. !   exec 4> configure
  1635.   else
  1636.     exec 4>&1
  1637.   fi
  1638. diff -rc --new-file autoconf-2.1-base/autoconf.texi autoconf-2.1/autoconf.texi
  1639. *** autoconf-2.1-base/autoconf.texi    Fri Nov  4 14:44:22 1994
  1640. --- autoconf-2.1/autoconf.texi    Thu Nov 10 14:33:16 1994
  1641. ***************
  1642. *** 2427,2433 ****
  1643.   AC_CHECK_SIZEOF(int *)
  1644.   @end example
  1645.   @noindent
  1646. ! defines @code{SIZEOF_INT_P} to be 8 on DEC Alpha AXP systems.
  1647.   @end defmac
  1648.   
  1649.   @defmac AC_INT_16_BITS
  1650. --- 2427,2433 ----
  1651.   AC_CHECK_SIZEOF(int *)
  1652.   @end example
  1653.   @noindent
  1654. ! defines @code{SIZEOF_INT_P} to be 64 on DEC Alpha AXP systems.
  1655.   @end defmac
  1656.   
  1657.   @defmac AC_INT_16_BITS
  1658. diff -rc --new-file autoconf-2.1-base/autoheader.sh autoconf-2.1/autoheader.sh
  1659. *** autoconf-2.1-base/autoheader.sh    Sun Sep 18 03:32:07 1994
  1660. --- autoconf-2.1/autoheader.sh    Thu Nov 10 14:55:52 1994
  1661. ***************
  1662. *** 47,59 ****
  1663.   while test $# -gt 0 ; do
  1664.      case "${1}" in 
  1665.         -h | --help | --h* )
  1666. !          echo "${usage}"; exit 0 ;;
  1667.         --localdir=* | --l*=* )
  1668.            localdir="`echo \"${1}\" | sed -e 's/^[^=]*=//'`"
  1669.            shift ;;
  1670.         -l | --localdir | --l*)
  1671.            shift
  1672. !          test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; }
  1673.            localdir="${1}"
  1674.            shift ;;
  1675.         --macrodir=* | --m*=* )
  1676. --- 47,59 ----
  1677.   while test $# -gt 0 ; do
  1678.      case "${1}" in 
  1679.         -h | --help | --h* )
  1680. !          /bin/echo "${usage}"; exit 0 ;;
  1681.         --localdir=* | --l*=* )
  1682.            localdir="`echo \"${1}\" | sed -e 's/^[^=]*=//'`"
  1683.            shift ;;
  1684.         -l | --localdir | --l*)
  1685.            shift
  1686. !          test $# -eq 0 && { /bin/echo "${usage}" 1>&2; exit 1; }
  1687.            localdir="${1}"
  1688.            shift ;;
  1689.         --macrodir=* | --m*=* )
  1690. ***************
  1691. *** 61,67 ****
  1692.            shift ;;
  1693.         -m | --macrodir | --m* ) 
  1694.            shift
  1695. !          test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; }
  1696.            AC_MACRODIR="${1}"
  1697.            shift ;;
  1698.         --version | --v* )
  1699. --- 61,67 ----
  1700.            shift ;;
  1701.         -m | --macrodir | --m* ) 
  1702.            shift
  1703. !          test $# -eq 0 && { /bin/echo "${usage}" 1>&2; exit 1; }
  1704.            AC_MACRODIR="${1}"
  1705.            shift ;;
  1706.         --version | --v* )
  1707. ***************
  1708. *** 71,77 ****
  1709.         - )    # Use stdin as input.
  1710.           break ;;
  1711.         -* )
  1712. !         echo "${usage}" 1>&2; exit 1 ;;
  1713.         * )
  1714.           break ;;
  1715.      esac
  1716. --- 71,77 ----
  1717.         - )    # Use stdin as input.
  1718.           break ;;
  1719.         -* )
  1720. !         /bin/echo "${usage}" 1>&2; exit 1 ;;
  1721.         * )
  1722.           break ;;
  1723.      esac
  1724. ***************
  1725. *** 90,96 ****
  1726.   case $# in
  1727.     0) infile=configure.in ;;
  1728.     1) infile=$1 ;;
  1729. !   *) echo "$usage" >&2; exit 1 ;;
  1730.   esac
  1731.   
  1732.   config_h=config.h
  1733. --- 90,96 ----
  1734.   case $# in
  1735.     0) infile=configure.in ;;
  1736.     1) infile=$1 ;;
  1737. !   *) /bin//bin/echo "$usage" >&2; exit 1 ;;
  1738.   esac
  1739.   
  1740.   config_h=config.h
  1741. ***************
  1742. *** 133,139 ****
  1743.   # Start each symbol with a blank (to match the blank after "#undef")
  1744.   # to reduce the possibility of mistakenly matching another symbol that
  1745.   # is a substring of it.
  1746. ! syms="`for sym in $syms; do echo $sym; done | sort | uniq | sed 's@^@ @'`"
  1747.   
  1748.   if test $# -eq 0; then
  1749.     tmpout=autoh$$
  1750. --- 133,139 ----
  1751.   # Start each symbol with a blank (to match the blank after "#undef")
  1752.   # to reduce the possibility of mistakenly matching another symbol that
  1753.   # is a substring of it.
  1754. ! syms="`for sym in $syms; do /bin/echo $sym; done | sort | uniq | sed 's@^@ @'`"
  1755.   
  1756.   if test $# -eq 0; then
  1757.     tmpout=autoh$$
  1758. ***************
  1759. *** 143,150 ****
  1760.   
  1761.   # Support "outfile[:infile]", defaulting infile="outfile.in".
  1762.   case "$config_h" in
  1763. ! *:*) config_h_in=`echo "$config_h"|sed 's%.*:%%'`
  1764. !      config_h=`echo "$config_h"|sed 's%:.*%%'` ;;
  1765.   *) config_h_in="${config_h}.in" ;;
  1766.   esac
  1767.   
  1768. --- 143,150 ----
  1769.   
  1770.   # Support "outfile[:infile]", defaulting infile="outfile.in".
  1771.   case "$config_h" in
  1772. ! *:*) config_h_in=`/bin/echo "$config_h"|sed 's%.*:%%'`
  1773. !      config_h=`/bin/echo "$config_h"|sed 's%:.*%%'` ;;
  1774.   *) config_h_in="${config_h}.in" ;;
  1775.   esac
  1776.   
  1777. ***************
  1778. *** 162,168 ****
  1779.      # Make sure the boundary of template files is also the boundary
  1780.      # of the paragraph.  Extra newlines don't hurt since they will
  1781.      # be removed.
  1782. !    for t in $TEMPLATES; do cat $t; echo; echo; done |
  1783.      # The sed script is suboptimal because it has to take care of
  1784.      # some broken seds (e.g. AIX) that remove '\n' from the
  1785.      # pattern/hold space if the line is empty. (junio@twinsun.com).
  1786. --- 162,168 ----
  1787.      # Make sure the boundary of template files is also the boundary
  1788.      # of the paragraph.  Extra newlines don't hurt since they will
  1789.      # be removed.
  1790. !    for t in $TEMPLATES; do cat $t; /bin/echo; /bin/echo; done |
  1791.      # The sed script is suboptimal because it has to take care of
  1792.      # some broken seds (e.g. AIX) that remove '\n' from the
  1793.      # pattern/hold space if the line is empty. (junio@twinsun.com).
  1794. ***************
  1795. *** 180,189 ****
  1796.      tr @ \\012
  1797.   fi
  1798.   
  1799. ! echo "$types" | tr , \\012 | sort | uniq | while read ctype; do
  1800.     test -z "$ctype" && continue
  1801.     # Solaris 2.3 tr rejects noncontiguous characters in character classes.
  1802. !   sym="`echo "${ctype}" | tr '[a-z] *' '[A-Z]_P'`"
  1803.     echo "
  1804.   /* The number of bytes in a ${ctype}.  */
  1805.   #undef SIZEOF_${sym}"
  1806. --- 180,189 ----
  1807.      tr @ \\012
  1808.   fi
  1809.   
  1810. ! /bin/echo "$types" | tr , \\012 | sort | uniq | while read ctype; do
  1811.     test -z "$ctype" && continue
  1812.     # Solaris 2.3 tr rejects noncontiguous characters in character classes.
  1813. !   sym="`/bin/echo "${ctype}" | tr '[a-z] *' '[A-Z]_P'`"
  1814.     echo "
  1815.   /* The number of bytes in a ${ctype}.  */
  1816.   #undef SIZEOF_${sym}"
  1817. ***************
  1818. *** 191,198 ****
  1819.   
  1820.   # /bin/sh on the Alpha gives `for' a random value if $funcs is empty.
  1821.   if test -n "$funcs"; then
  1822. !   for func in `for x in $funcs; do echo $x; done | sort | uniq`; do
  1823. !     sym="`echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1824.       echo "
  1825.   /* Define if you have the ${func} function.  */
  1826.   #undef HAVE_${sym}"
  1827. --- 191,198 ----
  1828.   
  1829.   # /bin/sh on the Alpha gives `for' a random value if $funcs is empty.
  1830.   if test -n "$funcs"; then
  1831. !   for func in `for x in $funcs; do /bin/echo $x; done | sort | uniq`; do
  1832. !     sym="`/bin/echo ${func} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1833.       echo "
  1834.   /* Define if you have the ${func} function.  */
  1835.   #undef HAVE_${sym}"
  1836. ***************
  1837. *** 200,207 ****
  1838.   fi
  1839.   
  1840.   if test -n "$headers"; then
  1841. !   for header in `for x in $headers; do echo $x; done | sort | uniq`; do
  1842. !     sym="`echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1843.       echo "
  1844.   /* Define if you have the <${header}> header file.  */
  1845.   #undef HAVE_${sym}"
  1846. --- 200,207 ----
  1847.   fi
  1848.   
  1849.   if test -n "$headers"; then
  1850. !   for header in `for x in $headers; do /bin/echo $x; done | sort | uniq`; do
  1851. !     sym="`/bin/echo ${header} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1852.       echo "
  1853.   /* Define if you have the <${header}> header file.  */
  1854.   #undef HAVE_${sym}"
  1855. ***************
  1856. *** 209,216 ****
  1857.   fi
  1858.   
  1859.   if test -n "$libs"; then
  1860. !   for lib in `for x in $libs; do echo $x; done | sort | uniq`; do
  1861. !    sym="`echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1862.       echo "
  1863.   /* Define if you have the ${lib} library (-l${lib}).  */
  1864.   #undef HAVE_LIB${sym}"
  1865. --- 209,216 ----
  1866.   fi
  1867.   
  1868.   if test -n "$libs"; then
  1869. !   for lib in `for x in $libs; do /bin/echo $x; done | sort | uniq`; do
  1870. !    sym="`/bin/echo ${lib} | sed 's/[^a-zA-Z0-9_]/_/g' | tr '[a-z]' '[A-Z]'`"
  1871.       echo "
  1872.   /* Define if you have the ${lib} library (-l${lib}).  */
  1873.   #undef HAVE_LIB${sym}"
  1874. ***************
  1875. *** 229,235 ****
  1876.       if fgrep $sym $TEMPLATES >/dev/null; then
  1877.         : # All is well.
  1878.       else
  1879. !       echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
  1880.         status=1
  1881.       fi
  1882.     done
  1883. --- 229,235 ----
  1884.       if fgrep $sym $TEMPLATES >/dev/null; then
  1885.         : # All is well.
  1886.       else
  1887. !       /bin/echo "$0: Symbol \`${sym}' is not covered by $TEMPLATES" >&2
  1888.         status=1
  1889.       fi
  1890.     done
  1891. diff -rc --new-file autoconf-2.1-base/configure autoconf-2.1/configure
  1892. *** autoconf-2.1-base/configure    Fri Nov  4 04:25:10 1994
  1893. --- autoconf-2.1/configure    Sat Nov 12 18:11:08 1994
  1894. ***************
  1895. *** 9,15 ****
  1896.   
  1897.   # Defaults:
  1898.   ac_help=
  1899. ! ac_default_prefix=/usr/local
  1900.   # Any additions from configure.in:
  1901.   
  1902.   # Initialize some variables set by options.
  1903. --- 9,15 ----
  1904.   
  1905.   # Defaults:
  1906.   ac_help=
  1907. ! ac_default_prefix=/gnu
  1908.   # Any additions from configure.in:
  1909.   
  1910.   # Initialize some variables set by options.
  1911. ***************
  1912. *** 49,55 ****
  1913.     fi
  1914.   
  1915.     case "$ac_option" in
  1916. !   -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  1917.     *) ac_optarg= ;;
  1918.     esac
  1919.   
  1920. --- 49,55 ----
  1921.     fi
  1922.   
  1923.     case "$ac_option" in
  1924. !   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  1925.     *) ac_optarg= ;;
  1926.     esac
  1927.   
  1928. ***************
  1929. *** 70,90 ****
  1930.       cache_file="$ac_optarg" ;;
  1931.   
  1932.     -disable-* | --disable-*)
  1933. !     ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  1934.       # Reject names that are not valid shell variable names.
  1935. !     if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  1936.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  1937.       fi
  1938. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  1939.       eval "enable_${ac_feature}=no" ;;
  1940.   
  1941.     -enable-* | --enable-*)
  1942. !     ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  1943.       # Reject names that are not valid shell variable names.
  1944. !     if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  1945.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  1946.       fi
  1947. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  1948.       case "$ac_option" in
  1949.         *=*) ;;
  1950.         *) ac_optarg=yes ;;
  1951. --- 70,90 ----
  1952.       cache_file="$ac_optarg" ;;
  1953.   
  1954.     -disable-* | --disable-*)
  1955. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  1956.       # Reject names that are not valid shell variable names.
  1957. !     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  1958.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  1959.       fi
  1960. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  1961.       eval "enable_${ac_feature}=no" ;;
  1962.   
  1963.     -enable-* | --enable-*)
  1964. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  1965.       # Reject names that are not valid shell variable names.
  1966. !     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  1967.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  1968.       fi
  1969. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  1970.       case "$ac_option" in
  1971.         *=*) ;;
  1972.         *) ac_optarg=yes ;;
  1973. ***************
  1974. *** 220,231 ****
  1975.       exit 0 ;;
  1976.   
  1977.     -with-* | --with-*)
  1978. !     ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  1979.       # Reject names that are not valid shell variable names.
  1980. !     if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  1981.         { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  1982.       fi
  1983. !     ac_package=`echo $ac_package| sed 's/-/_/g'`
  1984.       case "$ac_option" in
  1985.         *=*) ;;
  1986.         *) ac_optarg=yes ;;
  1987. --- 220,231 ----
  1988.       exit 0 ;;
  1989.   
  1990.     -with-* | --with-*)
  1991. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  1992.       # Reject names that are not valid shell variable names.
  1993. !     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  1994.         { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  1995.       fi
  1996. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  1997.       case "$ac_option" in
  1998.         *=*) ;;
  1999.         *) ac_optarg=yes ;;
  2000. ***************
  2001. *** 233,244 ****
  2002.       eval "with_${ac_package}='$ac_optarg'" ;;
  2003.   
  2004.     -without-* | --without-*)
  2005. !     ac_package=`echo $ac_option|sed -e 's/-*without-//'`
  2006.       # Reject names that are not valid shell variable names.
  2007. !     if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  2008.         { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  2009.       fi
  2010. !     ac_package=`echo $ac_package| sed 's/-/_/g'`
  2011.       eval "with_${ac_package}=no" ;;
  2012.   
  2013.     --x)
  2014. --- 233,244 ----
  2015.       eval "with_${ac_package}='$ac_optarg'" ;;
  2016.   
  2017.     -without-* | --without-*)
  2018. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  2019.       # Reject names that are not valid shell variable names.
  2020. !     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  2021.         { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  2022.       fi
  2023. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  2024.       eval "with_${ac_package}=no" ;;
  2025.   
  2026.     --x)
  2027. ***************
  2028. *** 263,269 ****
  2029.       ;;
  2030.   
  2031.     *) 
  2032. !     if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  2033.         echo "configure: warning: $ac_option: invalid host type" 1>&2
  2034.       fi
  2035.       if test "x$nonopt" != xNONE; then
  2036. --- 263,269 ----
  2037.       ;;
  2038.   
  2039.     *) 
  2040. !     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  2041.         echo "configure: warning: $ac_option: invalid host type" 1>&2
  2042.       fi
  2043.       if test "x$nonopt" != xNONE; then
  2044. ***************
  2045. *** 276,282 ****
  2046.   done
  2047.   
  2048.   if test -n "$ac_prev"; then
  2049. !   { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
  2050.   fi
  2051.   
  2052.   trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  2053. --- 276,282 ----
  2054.   done
  2055.   
  2056.   if test -n "$ac_prev"; then
  2057. !   { echo "configure: error: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
  2058.   fi
  2059.   
  2060.   trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  2061. ***************
  2062. *** 326,332 ****
  2063.   # confdefs.h avoids OS command line length limits that DEFS can exceed.
  2064.   rm -rf conftest* confdefs.h
  2065.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  2066. ! echo > confdefs.h
  2067.   
  2068.   # A filename unique to this package, relative to the directory that
  2069.   # configure is in, which we can look for to find out if srcdir is correct.
  2070. --- 326,332 ----
  2071.   # confdefs.h avoids OS command line length limits that DEFS can exceed.
  2072.   rm -rf conftest* confdefs.h
  2073.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  2074. ! /bin/echo > confdefs.h
  2075.   
  2076.   # A filename unique to this package, relative to the directory that
  2077.   # configure is in, which we can look for to find out if srcdir is correct.
  2078. ***************
  2079. *** 337,343 ****
  2080.     ac_srcdir_defaulted=yes
  2081.     # Try the directory containing this script, then its parent.
  2082.     ac_prog=$0
  2083. !   ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  2084.     test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  2085.     srcdir=$ac_confdir
  2086.     if test ! -r $srcdir/$ac_unique_file; then
  2087. --- 337,343 ----
  2088.     ac_srcdir_defaulted=yes
  2089.     # Try the directory containing this script, then its parent.
  2090.     ac_prog=$0
  2091. !   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  2092.     test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  2093.     srcdir=$ac_confdir
  2094.     if test ! -r $srcdir/$ac_unique_file; then
  2095. ***************
  2096. *** 353,359 ****
  2097.       { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
  2098.     fi
  2099.   fi
  2100. ! srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
  2101.   
  2102.   # Prefer explicitly selected file to automatically selected ones.
  2103.   if test -z "$CONFIG_SITE"; then
  2104. --- 353,359 ----
  2105.       { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
  2106.     fi
  2107.   fi
  2108. ! srcdir=`/bin/echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
  2109.   
  2110.   # Prefer explicitly selected file to automatically selected ones.
  2111.   if test -z "$CONFIG_SITE"; then
  2112. ***************
  2113. *** 403,409 ****
  2114.   else
  2115.     # Double any \ or $.
  2116.     echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
  2117. !   program_transform_name="`echo $program_transform_name|sed -f conftestsed`"
  2118.     rm -f conftestsed
  2119.   fi
  2120.   test "$program_prefix" != NONE &&
  2121. --- 403,409 ----
  2122.   else
  2123.     # Double any \ or $.
  2124.     echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
  2125. !   program_transform_name="`/bin/echo $program_transform_name|sed -f conftestsed`"
  2126.     rm -f conftestsed
  2127.   fi
  2128.   test "$program_prefix" != NONE &&
  2129. ***************
  2130. *** 420,428 ****
  2131.   do
  2132.   # Extract the first word of "$ac_prog", so it can be a program name with args.
  2133.   set dummy $ac_prog; ac_word=$2
  2134. ! echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  2135.   if eval "test \"`echo '${'ac_cv_path_M4'+set}'`\" = set"; then
  2136. !   echo $ac_n "(cached) $ac_c" 1>&4
  2137.   else
  2138.     case "$M4" in
  2139.     /*)
  2140. --- 420,428 ----
  2141.   do
  2142.   # Extract the first word of "$ac_prog", so it can be a program name with args.
  2143.   set dummy $ac_prog; ac_word=$2
  2144. ! /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  2145.   if eval "test \"`echo '${'ac_cv_path_M4'+set}'`\" = set"; then
  2146. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2147.   else
  2148.     case "$M4" in
  2149.     /*)
  2150. ***************
  2151. *** 443,451 ****
  2152.   fi
  2153.   M4="$ac_cv_path_M4"
  2154.   if test -n "$M4"; then
  2155. !   echo "$ac_t""$M4" 1>&4
  2156.   else
  2157. !   echo "$ac_t""no" 1>&4
  2158.   fi
  2159.   
  2160.   test -n "$M4" && break
  2161. --- 443,451 ----
  2162.   fi
  2163.   M4="$ac_cv_path_M4"
  2164.   if test -n "$M4"; then
  2165. !   /bin/echo "$ac_t""$M4" 1>&4
  2166.   else
  2167. !   /bin/echo "$ac_t""no" 1>&4
  2168.   fi
  2169.   
  2170.   test -n "$M4" && break
  2171. ***************
  2172. *** 455,463 ****
  2173.   
  2174.   # Extract the first word of "perl", so it can be a program name with args.
  2175.   set dummy perl; ac_word=$2
  2176. ! echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  2177.   if eval "test \"`echo '${'ac_cv_path_PERL'+set}'`\" = set"; then
  2178. !   echo $ac_n "(cached) $ac_c" 1>&4
  2179.   else
  2180.     case "$PERL" in
  2181.     /*)
  2182. --- 455,463 ----
  2183.   
  2184.   # Extract the first word of "perl", so it can be a program name with args.
  2185.   set dummy perl; ac_word=$2
  2186. ! /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  2187.   if eval "test \"`echo '${'ac_cv_path_PERL'+set}'`\" = set"; then
  2188. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2189.   else
  2190.     case "$PERL" in
  2191.     /*)
  2192. ***************
  2193. *** 479,487 ****
  2194.   fi
  2195.   PERL="$ac_cv_path_PERL"
  2196.   if test -n "$PERL"; then
  2197. !   echo "$ac_t""$PERL" 1>&4
  2198.   else
  2199. !   echo "$ac_t""no" 1>&4
  2200.   fi
  2201.   
  2202.   if test "$PERL" != no; then
  2203. --- 479,487 ----
  2204.   fi
  2205.   PERL="$ac_cv_path_PERL"
  2206.   if test -n "$PERL"; then
  2207. !   /bin/echo "$ac_t""$PERL" 1>&4
  2208.   else
  2209. !   /bin/echo "$ac_t""no" 1>&4
  2210.   fi
  2211.   
  2212.   if test "$PERL" != no; then
  2213. ***************
  2214. *** 519,533 ****
  2215.   # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  2216.   # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  2217.   # ./install, which can be erroneously created by make from ./install.sh.
  2218. ! echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&4
  2219.   if test -z "$INSTALL"; then
  2220.   if eval "test \"`echo '${'ac_cv_path_install'+set}'`\" = set"; then
  2221. !   echo $ac_n "(cached) $ac_c" 1>&4
  2222.   else
  2223.       IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  2224.     for ac_dir in $PATH; do
  2225.       case "$ac_dir" in
  2226. !     ''|.|/etc|/usr/sbin|/usr/etc|/sbin|/usr/afsws/bin|/usr/ucb) ;;
  2227.       *)
  2228.         # OSF1 and SCO ODT 3.0 have their own names for install.
  2229.         for ac_prog in ginstall installbsd scoinst install; do
  2230. --- 519,533 ----
  2231.   # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  2232.   # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  2233.   # ./install, which can be erroneously created by make from ./install.sh.
  2234. ! /bin/echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&4
  2235.   if test -z "$INSTALL"; then
  2236.   if eval "test \"`echo '${'ac_cv_path_install'+set}'`\" = set"; then
  2237. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2238.   else
  2239.       IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  2240.     for ac_dir in $PATH; do
  2241.       case "$ac_dir" in
  2242. !     ''|.|/gnu/etc) ;;
  2243.       *)
  2244.         # OSF1 and SCO ODT 3.0 have their own names for install.
  2245.         for ac_prog in ginstall installbsd scoinst install; do
  2246. ***************
  2247. *** 552,558 ****
  2248.   fi
  2249.     INSTALL="$ac_cv_path_install"
  2250.   fi
  2251. ! echo "$ac_t""$INSTALL" 1>&4
  2252.   
  2253.   # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  2254.   # It thinks the first close brace ends the variable substitution.
  2255. --- 552,558 ----
  2256.   fi
  2257.     INSTALL="$ac_cv_path_install"
  2258.   fi
  2259. ! /bin/echo "$ac_t""$INSTALL" 1>&4
  2260.   
  2261.   # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  2262.   # It thinks the first close brace ends the variable substitution.
  2263. ***************
  2264. *** 626,632 ****
  2265.   : ${CONFIG_STATUS=./config.status}
  2266.   
  2267.   echo creating $CONFIG_STATUS
  2268. ! rm -f $CONFIG_STATUS
  2269.   cat > $CONFIG_STATUS <<EOF
  2270.   #!/bin/sh
  2271.   # Generated automatically by configure.
  2272. --- 626,634 ----
  2273.   : ${CONFIG_STATUS=./config.status}
  2274.   
  2275.   echo creating $CONFIG_STATUS
  2276. ! # Some systems, like AmigaDOS, won't allow you to remove a script that is
  2277. ! # being executed, so just move it out of the way instead.
  2278. ! if test -f $CONFIG_STATUS; then mv $CONFIG_STATUS $CONFIG_STATUS.old; else true; fi
  2279.   cat > $CONFIG_STATUS <<EOF
  2280.   #!/bin/sh
  2281.   # Generated automatically by configure.
  2282. ***************
  2283. *** 647,653 ****
  2284.       echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
  2285.       exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  2286.     -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  2287. !     echo "$CONFIG_STATUS generated by autoconf version 2.1"
  2288.       exit 0 ;;
  2289.     -help | --help | --hel | --he | --h)
  2290.       echo "\$ac_cs_usage"; exit 0 ;;
  2291. --- 649,655 ----
  2292.       echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
  2293.       exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  2294.     -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  2295. !     /bin/echo "$CONFIG_STATUS generated by autoconf version 2.1"
  2296.       exit 0 ;;
  2297.     -help | --help | --hel | --he | --h)
  2298.       echo "\$ac_cs_usage"; exit 0 ;;
  2299. ***************
  2300. *** 692,712 ****
  2301.   for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
  2302.     # Support "outfile[:infile]", defaulting infile="outfile.in".
  2303.     case "$ac_file" in
  2304. !   *:*) ac_file_in=`echo "$ac_file"|sed 's%.*:%%'`
  2305. !        ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  2306.     *) ac_file_in="${ac_file}.in" ;;
  2307.     esac
  2308.   
  2309.     # Adjust relative srcdir, etc. for subdirectories.
  2310.   
  2311.     # Remove last slash and all that follows it.  Not all systems have dirname.
  2312. !   ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
  2313.     if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  2314.       # The file is in a subdirectory.
  2315.       test ! -d "$ac_dir" && mkdir "$ac_dir"
  2316.       ac_dir_suffix="/$ac_dir"
  2317.       # A "../" for each directory in $ac_dir_suffix.
  2318. !     ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  2319.     else
  2320.       ac_dir_suffix= ac_dots=
  2321.     fi
  2322. --- 694,714 ----
  2323.   for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
  2324.     # Support "outfile[:infile]", defaulting infile="outfile.in".
  2325.     case "$ac_file" in
  2326. !   *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
  2327. !        ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
  2328.     *) ac_file_in="${ac_file}.in" ;;
  2329.     esac
  2330.   
  2331.     # Adjust relative srcdir, etc. for subdirectories.
  2332.   
  2333.     # Remove last slash and all that follows it.  Not all systems have dirname.
  2334. !   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  2335.     if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  2336.       # The file is in a subdirectory.
  2337.       test ! -d "$ac_dir" && mkdir "$ac_dir"
  2338.       ac_dir_suffix="/$ac_dir"
  2339.       # A "../" for each directory in $ac_dir_suffix.
  2340. !     ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  2341.     else
  2342.       ac_dir_suffix= ac_dots=
  2343.     fi
  2344. ***************
  2345. *** 714,720 ****
  2346.     case "$ac_given_srcdir" in
  2347.     .)  srcdir=.
  2348.         if test -z "$ac_dots"; then top_srcdir=.
  2349. !       else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
  2350.     /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  2351.     *) # Relative path.
  2352.       srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  2353. --- 716,722 ----
  2354.     case "$ac_given_srcdir" in
  2355.     .)  srcdir=.
  2356.         if test -z "$ac_dots"; then top_srcdir=.
  2357. !       else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
  2358.     /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  2359.     *) # Relative path.
  2360.       srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  2361. ***************
  2362. *** 727,733 ****
  2363.     esac
  2364.     echo creating "$ac_file"
  2365.     rm -f "$ac_file"
  2366. !   configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
  2367.     case "$ac_file" in
  2368.     *Makefile*) ac_comsub="1i\\
  2369.   # $configure_input" ;;
  2370. --- 729,735 ----
  2371.     esac
  2372.     echo creating "$ac_file"
  2373.     rm -f "$ac_file"
  2374. !   configure_input="Generated automatically from `/bin/echo $ac_file_in|sed 's%.*/%%'` by configure."
  2375.     case "$ac_file" in
  2376.     *Makefile*) ac_comsub="1i\\
  2377.   # $configure_input" ;;
  2378. diff -rc --new-file autoconf-2.1-base/mkinstalldirs autoconf-2.1/mkinstalldirs
  2379. *** autoconf-2.1-base/mkinstalldirs    Sat Mar 26 04:01:14 1994
  2380. --- autoconf-2.1/mkinstalldirs    Thu Nov 10 14:33:24 1994
  2381. ***************
  2382. *** 8,14 ****
  2383.   errstatus=0
  2384.   
  2385.   for file in ${1+"$@"} ; do 
  2386. !    set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
  2387.      shift
  2388.   
  2389.      pathcomp=
  2390. --- 8,14 ----
  2391.   errstatus=0
  2392.   
  2393.   for file in ${1+"$@"} ; do 
  2394. !    set fnord `/bin/echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
  2395.      shift
  2396.   
  2397.      pathcomp=
  2398. ***************
  2399. *** 19,25 ****
  2400.        esac
  2401.   
  2402.        if test ! -d "$pathcomp"; then
  2403. !         echo "mkdir $pathcomp" 1>&2
  2404.           mkdir "$pathcomp" || errstatus=$?
  2405.        fi
  2406.   
  2407. --- 19,25 ----
  2408.        esac
  2409.   
  2410.        if test ! -d "$pathcomp"; then
  2411. !         /bin/echo "mkdir $pathcomp" 1>&2
  2412.           mkdir "$pathcomp" || errstatus=$?
  2413.        fi
  2414.   
  2415.