home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / diffs / m4-1.4.diffs < prev    next >
Encoding:
Text File  |  1995-01-21  |  62.6 KB  |  2,235 lines

  1. diff -rc --new-file m4-1.4/INSTALL /gnu/src/amiga/m4-1.4/INSTALL
  2. *** m4-1.4/INSTALL    Tue Oct 18 20:30:28 1994
  3. --- /gnu/src/amiga/m4-1.4/INSTALL    Sat Nov 12 14:54:39 1994
  4. ***************
  5. *** 76,83 ****
  6.   ==================
  7.   
  8.      By default, `make install' will install the package's files in
  9. ! `/usr/local/bin', `/usr/local/man', etc.  You can specify an
  10. ! installation prefix other than `/usr/local' by giving `configure' the
  11.   option `--prefix=PATH'.
  12.   
  13.      You can specify separate installation prefixes for
  14. --- 76,83 ----
  15.   ==================
  16.   
  17.      By default, `make install' will install the package's files in
  18. ! `/gnu/bin', `/gnu/man', etc.  You can specify an
  19. ! installation prefix other than `/gnu' by giving `configure' the
  20.   option `--prefix=PATH'.
  21.   
  22.      You can specify separate installation prefixes for
  23. diff -rc --new-file m4-1.4/Product-Info /gnu/src/amiga/m4-1.4/Product-Info
  24. *** m4-1.4/Product-Info    Thu Jan  1 00:00:00 1970
  25. --- /gnu/src/amiga/m4-1.4/Product-Info    Fri Nov 18 12:48:29 1994
  26. ***************
  27. *** 0 ****
  28. --- 1,22 ----
  29. + .name
  30. + m4
  31. + .fullname
  32. + GNU macro processor
  33. + .type
  34. + Programmer Tool
  35. + .short
  36. + GNU macro processor
  37. + .description
  38. + This is GNU m4, a program which copies its input to the output,
  39. + expanding macros as it goes.  m4 has built-in functions for including
  40. + named files, running Unix commands, doing integer arithmetic,
  41. + manipulating text in various ways, recursion, etc...  Macros can also
  42. + be user-defined, and can take any number of arguments.
  43. + .version
  44. + 1.4
  45. + .author
  46. + Rene' Seindal
  47. + .distribution
  48. + GNU Public License
  49. + .described-by
  50. + Fred Fish (fnf@amigalib.com)
  51. diff -rc --new-file m4-1.4/configure /gnu/src/amiga/m4-1.4/configure
  52. *** m4-1.4/configure    Sun Nov  6 03:44:17 1994
  53. --- /gnu/src/amiga/m4-1.4/configure    Sat Nov 12 15:22:03 1994
  54. ***************
  55. *** 9,15 ****
  56.   
  57.   # Defaults:
  58.   ac_help=
  59. ! ac_default_prefix=/usr/local
  60.   # Any additions from configure.in:
  61.   ac_help="$ac_help
  62.     --enable-changeword     enable -W and changeword() builtin"
  63. --- 9,15 ----
  64.   
  65.   # Defaults:
  66.   ac_help=
  67. ! ac_default_prefix=/gnu
  68.   # Any additions from configure.in:
  69.   ac_help="$ac_help
  70.     --enable-changeword     enable -W and changeword() builtin"
  71. ***************
  72. *** 54,60 ****
  73.     fi
  74.   
  75.     case "$ac_option" in
  76. !   -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  77.     *) ac_optarg= ;;
  78.     esac
  79.   
  80. --- 54,60 ----
  81.     fi
  82.   
  83.     case "$ac_option" in
  84. !   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  85.     *) ac_optarg= ;;
  86.     esac
  87.   
  88. ***************
  89. *** 75,95 ****
  90.       cache_file="$ac_optarg" ;;
  91.   
  92.     -disable-* | --disable-*)
  93. !     ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  94.       # Reject names that are not valid shell variable names.
  95. !     if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  96.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  97.       fi
  98. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  99.       eval "enable_${ac_feature}=no" ;;
  100.   
  101.     -enable-* | --enable-*)
  102. !     ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  103.       # Reject names that are not valid shell variable names.
  104. !     if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  105.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  106.       fi
  107. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  108.       case "$ac_option" in
  109.         *=*) ;;
  110.         *) ac_optarg=yes ;;
  111. --- 75,95 ----
  112.       cache_file="$ac_optarg" ;;
  113.   
  114.     -disable-* | --disable-*)
  115. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  116.       # Reject names that are not valid shell variable names.
  117. !     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  118.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  119.       fi
  120. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  121.       eval "enable_${ac_feature}=no" ;;
  122.   
  123.     -enable-* | --enable-*)
  124. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  125.       # Reject names that are not valid shell variable names.
  126. !     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  127.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  128.       fi
  129. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  130.       case "$ac_option" in
  131.         *=*) ;;
  132.         *) ac_optarg=yes ;;
  133. ***************
  134. *** 225,236 ****
  135.       exit 0 ;;
  136.   
  137.     -with-* | --with-*)
  138. !     ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  139.       # Reject names that are not valid shell variable names.
  140. !     if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  141.         { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  142.       fi
  143. !     ac_package=`echo $ac_package| sed 's/-/_/g'`
  144.       case "$ac_option" in
  145.         *=*) ;;
  146.         *) ac_optarg=yes ;;
  147. --- 225,236 ----
  148.       exit 0 ;;
  149.   
  150.     -with-* | --with-*)
  151. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  152.       # Reject names that are not valid shell variable names.
  153. !     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  154.         { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  155.       fi
  156. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  157.       case "$ac_option" in
  158.         *=*) ;;
  159.         *) ac_optarg=yes ;;
  160. ***************
  161. *** 238,249 ****
  162.       eval "with_${ac_package}='$ac_optarg'" ;;
  163.   
  164.     -without-* | --without-*)
  165. !     ac_package=`echo $ac_option|sed -e 's/-*without-//'`
  166.       # Reject names that are not valid shell variable names.
  167. !     if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  168.         { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  169.       fi
  170. !     ac_package=`echo $ac_package| sed 's/-/_/g'`
  171.       eval "with_${ac_package}=no" ;;
  172.   
  173.     --x)
  174. --- 238,249 ----
  175.       eval "with_${ac_package}='$ac_optarg'" ;;
  176.   
  177.     -without-* | --without-*)
  178. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  179.       # Reject names that are not valid shell variable names.
  180. !     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  181.         { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  182.       fi
  183. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  184.       eval "with_${ac_package}=no" ;;
  185.   
  186.     --x)
  187. ***************
  188. *** 268,274 ****
  189.       ;;
  190.   
  191.     *) 
  192. !     if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  193.         echo "configure: warning: $ac_option: invalid host type" 1>&2
  194.       fi
  195.       if test "x$nonopt" != xNONE; then
  196. --- 268,274 ----
  197.       ;;
  198.   
  199.     *) 
  200. !     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  201.         echo "configure: warning: $ac_option: invalid host type" 1>&2
  202.       fi
  203.       if test "x$nonopt" != xNONE; then
  204. ***************
  205. *** 281,287 ****
  206.   done
  207.   
  208.   if test -n "$ac_prev"; then
  209. !   { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
  210.   fi
  211.   
  212.   trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  213. --- 281,287 ----
  214.   done
  215.   
  216.   if test -n "$ac_prev"; then
  217. !   { echo "configure: error: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
  218.   fi
  219.   
  220.   trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  221. ***************
  222. *** 331,337 ****
  223.   # confdefs.h avoids OS command line length limits that DEFS can exceed.
  224.   rm -rf conftest* confdefs.h
  225.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  226. ! echo > confdefs.h
  227.   
  228.   # A filename unique to this package, relative to the directory that
  229.   # configure is in, which we can look for to find out if srcdir is correct.
  230. --- 331,337 ----
  231.   # confdefs.h avoids OS command line length limits that DEFS can exceed.
  232.   rm -rf conftest* confdefs.h
  233.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  234. ! /bin/echo > confdefs.h
  235.   
  236.   # A filename unique to this package, relative to the directory that
  237.   # configure is in, which we can look for to find out if srcdir is correct.
  238. ***************
  239. *** 342,348 ****
  240.     ac_srcdir_defaulted=yes
  241.     # Try the directory containing this script, then its parent.
  242.     ac_prog=$0
  243. !   ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  244.     test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  245.     srcdir=$ac_confdir
  246.     if test ! -r $srcdir/$ac_unique_file; then
  247. --- 342,348 ----
  248.     ac_srcdir_defaulted=yes
  249.     # Try the directory containing this script, then its parent.
  250.     ac_prog=$0
  251. !   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  252.     test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  253.     srcdir=$ac_confdir
  254.     if test ! -r $srcdir/$ac_unique_file; then
  255. ***************
  256. *** 358,364 ****
  257.       { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
  258.     fi
  259.   fi
  260. ! srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
  261.   
  262.   # Prefer explicitly selected file to automatically selected ones.
  263.   if test -z "$CONFIG_SITE"; then
  264. --- 358,364 ----
  265.       { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
  266.     fi
  267.   fi
  268. ! srcdir=`/bin/echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
  269.   
  270.   # Prefer explicitly selected file to automatically selected ones.
  271.   if test -z "$CONFIG_SITE"; then
  272. ***************
  273. *** 408,414 ****
  274.   else
  275.     # Double any \ or $.
  276.     echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
  277. !   program_transform_name="`echo $program_transform_name|sed -f conftestsed`"
  278.     rm -f conftestsed
  279.   fi
  280.   test "$program_prefix" != NONE &&
  281. --- 408,414 ----
  282.   else
  283.     # Double any \ or $.
  284.     echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
  285. !   program_transform_name="`/bin/echo $program_transform_name|sed -f conftestsed`"
  286.     rm -f conftestsed
  287.   fi
  288.   test "$program_prefix" != NONE &&
  289. ***************
  290. *** 438,446 ****
  291.   do
  292.   # Extract the first word of "$ac_prog", so it can be a program name with args.
  293.   set dummy $ac_prog; ac_word=$2
  294. ! echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  295.   if eval "test \"`echo '${'ac_cv_prog_AWK'+set}'`\" = set"; then
  296. !   echo $ac_n "(cached) $ac_c" 1>&4
  297.   else
  298.     if test -n "$AWK"; then
  299.     ac_cv_prog_AWK="$AWK" # Let the user override the test.
  300. --- 438,446 ----
  301.   do
  302.   # Extract the first word of "$ac_prog", so it can be a program name with args.
  303.   set dummy $ac_prog; ac_word=$2
  304. ! /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  305.   if eval "test \"`echo '${'ac_cv_prog_AWK'+set}'`\" = set"; then
  306. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  307.   else
  308.     if test -n "$AWK"; then
  309.     ac_cv_prog_AWK="$AWK" # Let the user override the test.
  310. ***************
  311. *** 458,466 ****
  312.   fi
  313.   AWK="$ac_cv_prog_AWK"
  314.   if test -n "$AWK"; then
  315. !   echo "$ac_t""$AWK" 1>&4
  316.   else
  317. !   echo "$ac_t""no" 1>&4
  318.   fi
  319.   
  320.   test -n "$AWK" && break
  321. --- 458,466 ----
  322.   fi
  323.   AWK="$ac_cv_prog_AWK"
  324.   if test -n "$AWK"; then
  325. !   /bin/echo "$ac_t""$AWK" 1>&4
  326.   else
  327. !   /bin/echo "$ac_t""no" 1>&4
  328.   fi
  329.   
  330.   test -n "$AWK" && break
  331. ***************
  332. *** 468,476 ****
  333.   
  334.   # Extract the first word of "gcc", so it can be a program name with args.
  335.   set dummy gcc; ac_word=$2
  336. ! echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  337.   if eval "test \"`echo '${'ac_cv_prog_CC'+set}'`\" = set"; then
  338. !   echo $ac_n "(cached) $ac_c" 1>&4
  339.   else
  340.     if test -n "$CC"; then
  341.     ac_cv_prog_CC="$CC" # Let the user override the test.
  342. --- 468,476 ----
  343.   
  344.   # Extract the first word of "gcc", so it can be a program name with args.
  345.   set dummy gcc; ac_word=$2
  346. ! /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  347.   if eval "test \"`echo '${'ac_cv_prog_CC'+set}'`\" = set"; then
  348. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  349.   else
  350.     if test -n "$CC"; then
  351.     ac_cv_prog_CC="$CC" # Let the user override the test.
  352. ***************
  353. *** 489,503 ****
  354.   fi
  355.   CC="$ac_cv_prog_CC"
  356.   if test -n "$CC"; then
  357. !   echo "$ac_t""$CC" 1>&4
  358.   else
  359. !   echo "$ac_t""no" 1>&4
  360.   fi
  361.   
  362.   
  363. ! echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&4
  364.   if eval "test \"`echo '${'ac_cv_prog_gcc'+set}'`\" = set"; then
  365. !   echo $ac_n "(cached) $ac_c" 1>&4
  366.   else
  367.     cat > conftest.c <<EOF
  368.   #ifdef __GNUC__
  369. --- 489,503 ----
  370.   fi
  371.   CC="$ac_cv_prog_CC"
  372.   if test -n "$CC"; then
  373. !   /bin/echo "$ac_t""$CC" 1>&4
  374.   else
  375. !   /bin/echo "$ac_t""no" 1>&4
  376.   fi
  377.   
  378.   
  379. ! /bin/echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&4
  380.   if eval "test \"`echo '${'ac_cv_prog_gcc'+set}'`\" = set"; then
  381. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  382.   else
  383.     cat > conftest.c <<EOF
  384.   #ifdef __GNUC__
  385. ***************
  386. *** 510,522 ****
  387.     ac_cv_prog_gcc=no
  388.   fi
  389.   fi
  390. ! echo "$ac_t""$ac_cv_prog_gcc" 1>&4
  391.   if test $ac_cv_prog_gcc = yes; then
  392.     GCC=yes
  393.     if test "${CFLAGS+set}" != set; then
  394. !     echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&4
  395.   if eval "test \"`echo '${'ac_cv_prog_gcc_g'+set}'`\" = set"; then
  396. !   echo $ac_n "(cached) $ac_c" 1>&4
  397.   else
  398.     echo 'void f(){}' > conftest.c
  399.   if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
  400. --- 510,522 ----
  401.     ac_cv_prog_gcc=no
  402.   fi
  403.   fi
  404. ! /bin/echo "$ac_t""$ac_cv_prog_gcc" 1>&4
  405.   if test $ac_cv_prog_gcc = yes; then
  406.     GCC=yes
  407.     if test "${CFLAGS+set}" != set; then
  408. !     /bin/echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&4
  409.   if eval "test \"`echo '${'ac_cv_prog_gcc_g'+set}'`\" = set"; then
  410. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  411.   else
  412.     echo 'void f(){}' > conftest.c
  413.   if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
  414. ***************
  415. *** 527,537 ****
  416.   rm -f conftest*
  417.   
  418.   fi
  419. !     echo "$ac_t""$ac_cv_prog_gcc_g" 1>&4
  420.       if test $ac_cv_prog_gcc_g = yes; then
  421. !       CFLAGS="-g -O"
  422.       else
  423. !       CFLAGS="-O"
  424.       fi
  425.     fi
  426.   else
  427. --- 527,539 ----
  428.   rm -f conftest*
  429.   
  430.   fi
  431. !     /bin/echo "$ac_t""$ac_cv_prog_gcc_g" 1>&4
  432.       if test $ac_cv_prog_gcc_g = yes; then
  433. !       # Amiga hack - suppress automatically using -g for now
  434. !       # Also default to using -O2
  435. !       CFLAGS="-O2"
  436.       else
  437. !       CFLAGS="-O2"
  438.       fi
  439.     fi
  440.   else
  441. ***************
  442. *** 568,582 ****
  443.   # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  444.   # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  445.   # ./install, which can be erroneously created by make from ./install.sh.
  446. ! echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&4
  447.   if test -z "$INSTALL"; then
  448.   if eval "test \"`echo '${'ac_cv_path_install'+set}'`\" = set"; then
  449. !   echo $ac_n "(cached) $ac_c" 1>&4
  450.   else
  451.       IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  452.     for ac_dir in $PATH; do
  453.       case "$ac_dir" in
  454. !     ''|.|/etc|/usr/sbin|/usr/etc|/sbin|/usr/afsws/bin|/usr/ucb) ;;
  455.       *)
  456.         # OSF1 and SCO ODT 3.0 have their own names for install.
  457.         for ac_prog in ginstall installbsd scoinst install; do
  458. --- 570,584 ----
  459.   # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  460.   # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  461.   # ./install, which can be erroneously created by make from ./install.sh.
  462. ! /bin/echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&4
  463.   if test -z "$INSTALL"; then
  464.   if eval "test \"`echo '${'ac_cv_path_install'+set}'`\" = set"; then
  465. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  466.   else
  467.       IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  468.     for ac_dir in $PATH; do
  469.       case "$ac_dir" in
  470. !     ''|.|/gnu/etc) ;;
  471.       *)
  472.         # OSF1 and SCO ODT 3.0 have their own names for install.
  473.         for ac_prog in ginstall installbsd scoinst install; do
  474. ***************
  475. *** 601,607 ****
  476.   fi
  477.     INSTALL="$ac_cv_path_install"
  478.   fi
  479. ! echo "$ac_t""$INSTALL" 1>&4
  480.   
  481.   # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  482.   # It thinks the first close brace ends the variable substitution.
  483. --- 603,609 ----
  484.   fi
  485.     INSTALL="$ac_cv_path_install"
  486.   fi
  487. ! /bin/echo "$ac_t""$INSTALL" 1>&4
  488.   
  489.   # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  490.   # It thinks the first close brace ends the variable substitution.
  491. ***************
  492. *** 609,622 ****
  493.   
  494.   test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  495.   
  496. ! echo $ac_n "checking whether ${MAKE-make} sets \$MAKE""... $ac_c" 1>&4
  497.   set dummy ${MAKE-make}; ac_make=$2
  498.   if eval "test \"`echo '${'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
  499. !   echo $ac_n "(cached) $ac_c" 1>&4
  500.   else
  501.     cat > conftestmake <<\EOF
  502.   all:
  503. !     @echo 'ac_maketemp="${MAKE}"'
  504.   EOF
  505.   # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  506.   eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
  507. --- 611,624 ----
  508.   
  509.   test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  510.   
  511. ! /bin/echo $ac_n "checking whether ${MAKE-make} sets \$MAKE""... $ac_c" 1>&4
  512.   set dummy ${MAKE-make}; ac_make=$2
  513.   if eval "test \"`echo '${'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
  514. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  515.   else
  516.     cat > conftestmake <<\EOF
  517.   all:
  518. !     @/bin/echo 'ac_maketemp="${MAKE}"'
  519.   EOF
  520.   # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  521.   eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
  522. ***************
  523. *** 628,645 ****
  524.   rm -f conftestmake
  525.   fi
  526.   if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
  527. !   echo "$ac_t""yes" 1>&4
  528.     SET_MAKE=
  529.   else
  530. !   echo "$ac_t""no" 1>&4
  531.     SET_MAKE="MAKE=${MAKE-make}"
  532.   fi
  533.   
  534.   # Extract the first word of "ranlib", so it can be a program name with args.
  535.   set dummy ranlib; ac_word=$2
  536. ! echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  537.   if eval "test \"`echo '${'ac_cv_prog_RANLIB'+set}'`\" = set"; then
  538. !   echo $ac_n "(cached) $ac_c" 1>&4
  539.   else
  540.     if test -n "$RANLIB"; then
  541.     ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
  542. --- 630,647 ----
  543.   rm -f conftestmake
  544.   fi
  545.   if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
  546. !   /bin/echo "$ac_t""yes" 1>&4
  547.     SET_MAKE=
  548.   else
  549. !   /bin/echo "$ac_t""no" 1>&4
  550.     SET_MAKE="MAKE=${MAKE-make}"
  551.   fi
  552.   
  553.   # Extract the first word of "ranlib", so it can be a program name with args.
  554.   set dummy ranlib; ac_word=$2
  555. ! /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  556.   if eval "test \"`echo '${'ac_cv_prog_RANLIB'+set}'`\" = set"; then
  557. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  558.   else
  559.     if test -n "$RANLIB"; then
  560.     ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
  561. ***************
  562. *** 658,677 ****
  563.   fi
  564.   RANLIB="$ac_cv_prog_RANLIB"
  565.   if test -n "$RANLIB"; then
  566. !   echo "$ac_t""$RANLIB" 1>&4
  567.   else
  568. !   echo "$ac_t""no" 1>&4
  569.   fi
  570.   
  571.   
  572. ! echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&4
  573.   # On Suns, sometimes $CPP names a directory.
  574.   if test -n "$CPP" && test -d "$CPP"; then
  575.     CPP=
  576.   fi
  577.   if test -z "$CPP"; then
  578.   if eval "test \"`echo '${'ac_cv_prog_CPP'+set}'`\" = set"; then
  579. !   echo $ac_n "(cached) $ac_c" 1>&4
  580.   else
  581.       # This must be in double quotes, not single quotes, because CPP may get
  582.     # substituted into the Makefile and "${CC-cc}" will confuse make.
  583. --- 660,679 ----
  584.   fi
  585.   RANLIB="$ac_cv_prog_RANLIB"
  586.   if test -n "$RANLIB"; then
  587. !   /bin/echo "$ac_t""$RANLIB" 1>&4
  588.   else
  589. !   /bin/echo "$ac_t""no" 1>&4
  590.   fi
  591.   
  592.   
  593. ! /bin/echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&4
  594.   # On Suns, sometimes $CPP names a directory.
  595.   if test -n "$CPP" && test -d "$CPP"; then
  596.     CPP=
  597.   fi
  598.   if test -z "$CPP"; then
  599.   if eval "test \"`echo '${'ac_cv_prog_CPP'+set}'`\" = set"; then
  600. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  601.   else
  602.       # This must be in double quotes, not single quotes, because CPP may get
  603.     # substituted into the Makefile and "${CC-cc}" will confuse make.
  604. ***************
  605. *** 679,685 ****
  606.     # On the NeXT, cc -E runs the code through the compiler's parser,
  607.     # not just through cpp.
  608.     cat > conftest.$ac_ext <<EOF
  609. ! #line 683 "configure"
  610.   #include "confdefs.h"
  611.   #include <assert.h>
  612.   Syntax Error
  613. --- 681,687 ----
  614.     # On the NeXT, cc -E runs the code through the compiler's parser,
  615.     # not just through cpp.
  616.     cat > conftest.$ac_ext <<EOF
  617. ! #line 685 "configure"
  618.   #include "confdefs.h"
  619.   #include <assert.h>
  620.   Syntax Error
  621. ***************
  622. *** 689,699 ****
  623.   if test -z "$ac_err"; then
  624.     :
  625.   else
  626. !   echo "$ac_err" >&5
  627.     rm -rf conftest*
  628.     CPP="${CC-cc} -E -traditional-cpp"
  629.     cat > conftest.$ac_ext <<EOF
  630. ! #line 697 "configure"
  631.   #include "confdefs.h"
  632.   #include <assert.h>
  633.   Syntax Error
  634. --- 691,701 ----
  635.   if test -z "$ac_err"; then
  636.     :
  637.   else
  638. !   /bin/echo "$ac_err" >&5
  639.     rm -rf conftest*
  640.     CPP="${CC-cc} -E -traditional-cpp"
  641.     cat > conftest.$ac_ext <<EOF
  642. ! #line 699 "configure"
  643.   #include "confdefs.h"
  644.   #include <assert.h>
  645.   Syntax Error
  646. ***************
  647. *** 703,709 ****
  648.   if test -z "$ac_err"; then
  649.     :
  650.   else
  651. !   echo "$ac_err" >&5
  652.     rm -rf conftest*
  653.     CPP=/lib/cpp
  654.   fi
  655. --- 705,711 ----
  656.   if test -z "$ac_err"; then
  657.     :
  658.   else
  659. !   /bin/echo "$ac_err" >&5
  660.     rm -rf conftest*
  661.     CPP=/lib/cpp
  662.   fi
  663. ***************
  664. *** 714,724 ****
  665.   fi
  666.   fi
  667.   CPP="$ac_cv_prog_CPP"
  668. ! echo "$ac_t""$CPP" 1>&4
  669.   
  670. ! echo $ac_n "checking for AIX""... $ac_c" 1>&4
  671.   cat > conftest.$ac_ext <<EOF
  672. ! #line 722 "configure"
  673.   #include "confdefs.h"
  674.   #ifdef _AIX
  675.     yes
  676. --- 716,726 ----
  677.   fi
  678.   fi
  679.   CPP="$ac_cv_prog_CPP"
  680. ! /bin/echo "$ac_t""$CPP" 1>&4
  681.   
  682. ! /bin/echo $ac_n "checking for AIX""... $ac_c" 1>&4
  683.   cat > conftest.$ac_ext <<EOF
  684. ! #line 724 "configure"
  685.   #include "confdefs.h"
  686.   #ifdef _AIX
  687.     yes
  688. ***************
  689. *** 728,749 ****
  690.   if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  691.     egrep "yes" >/dev/null 2>&1; then
  692.     rm -rf conftest*
  693. !   echo "$ac_t""yes" 1>&4; cat >> confdefs.h <<\EOF
  694.   #define _ALL_SOURCE 1
  695.   EOF
  696.   
  697.   else
  698.     rm -rf conftest*
  699. !   echo "$ac_t""no" 1>&4
  700.   fi
  701.   rm -f conftest*
  702.   
  703.   
  704. ! echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&4
  705. ! if test -d /etc/conf/kconfig.d &&
  706. !   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  707.   then
  708. !   echo "$ac_t""yes" 1>&4
  709.     ISC=yes # If later tests want to check for ISC.
  710.     cat >> confdefs.h <<\EOF
  711.   #define _POSIX_SOURCE 1
  712. --- 730,751 ----
  713.   if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  714.     egrep "yes" >/dev/null 2>&1; then
  715.     rm -rf conftest*
  716. !   /bin/echo "$ac_t""yes" 1>&4; cat >> confdefs.h <<\EOF
  717.   #define _ALL_SOURCE 1
  718.   EOF
  719.   
  720.   else
  721.     rm -rf conftest*
  722. !   /bin/echo "$ac_t""no" 1>&4
  723.   fi
  724.   rm -f conftest*
  725.   
  726.   
  727. ! /bin/echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&4
  728. ! if test -d /gnu/etc/conf/kconfig.d &&
  729. !   grep _POSIX_VERSION /gnu/include/sys/unistd.h >/dev/null 2>&1
  730.   then
  731. !   /bin/echo "$ac_t""yes" 1>&4
  732.     ISC=yes # If later tests want to check for ISC.
  733.     cat >> confdefs.h <<\EOF
  734.   #define _POSIX_SOURCE 1
  735. ***************
  736. *** 755,771 ****
  737.       CC="$CC -Xp"
  738.     fi
  739.   else
  740. !   echo "$ac_t""no" 1>&4
  741.     ISC=
  742.   fi
  743.   
  744. ! ac_safe=`echo "minix/config.h" | tr './\055' '___'`
  745. ! echo $ac_n "checking for minix/config.h""... $ac_c" 1>&4
  746.   if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  747. !   echo $ac_n "(cached) $ac_c" 1>&4
  748.   else
  749.     cat > conftest.$ac_ext <<EOF
  750. ! #line 769 "configure"
  751.   #include "confdefs.h"
  752.   #include <minix/config.h>
  753.   EOF
  754. --- 757,773 ----
  755.       CC="$CC -Xp"
  756.     fi
  757.   else
  758. !   /bin/echo "$ac_t""no" 1>&4
  759.     ISC=
  760.   fi
  761.   
  762. ! ac_safe=`/bin/echo "minix/config.h" | tr './\055' '___'`
  763. ! /bin/echo $ac_n "checking for minix/config.h""... $ac_c" 1>&4
  764.   if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  765. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  766.   else
  767.     cat > conftest.$ac_ext <<EOF
  768. ! #line 771 "configure"
  769.   #include "confdefs.h"
  770.   #include <minix/config.h>
  771.   EOF
  772. ***************
  773. *** 775,791 ****
  774.     rm -rf conftest*
  775.     eval "ac_cv_header_$ac_safe=yes"
  776.   else
  777. !   echo "$ac_err" >&5
  778.     rm -rf conftest*
  779.     eval "ac_cv_header_$ac_safe=no"
  780.   fi
  781.   rm -f conftest*
  782.   fi
  783.   if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  784. !   echo "$ac_t""yes" 1>&4
  785.     MINIX=yes
  786.   else
  787. !   echo "$ac_t""no" 1>&4
  788.   MINIX=
  789.   fi
  790.   
  791. --- 777,793 ----
  792.     rm -rf conftest*
  793.     eval "ac_cv_header_$ac_safe=yes"
  794.   else
  795. !   /bin/echo "$ac_err" >&5
  796.     rm -rf conftest*
  797.     eval "ac_cv_header_$ac_safe=no"
  798.   fi
  799.   rm -f conftest*
  800.   fi
  801.   if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  802. !   /bin/echo "$ac_t""yes" 1>&4
  803.     MINIX=yes
  804.   else
  805. !   /bin/echo "$ac_t""no" 1>&4
  806.   MINIX=
  807.   fi
  808.   
  809. ***************
  810. *** 804,812 ****
  811.   
  812.   fi
  813.   
  814. ! echo $ac_n "checking for ${CC-cc} option to accept ANSI C""... $ac_c" 1>&4
  815.   if eval "test \"`echo '${'ac_cv_prog_cc_stdc'+set}'`\" = set"; then
  816. !   echo $ac_n "(cached) $ac_c" 1>&4
  817.   else
  818.     ac_cv_prog_cc_stdc=no
  819.   ac_save_CFLAGS="$CFLAGS"
  820. --- 806,814 ----
  821.   
  822.   fi
  823.   
  824. ! /bin/echo $ac_n "checking for ${CC-cc} option to accept ANSI C""... $ac_c" 1>&4
  825.   if eval "test \"`echo '${'ac_cv_prog_cc_stdc'+set}'`\" = set"; then
  826. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  827.   else
  828.     ac_cv_prog_cc_stdc=no
  829.   ac_save_CFLAGS="$CFLAGS"
  830. ***************
  831. *** 820,826 ****
  832.   do
  833.     CFLAGS="$ac_save_CFLAGS $ac_arg"
  834.     cat > conftest.$ac_ext <<EOF
  835. ! #line 824 "configure"
  836.   #include "confdefs.h"
  837.   #if !defined(__STDC__) || __STDC__ != 1
  838.   choke me
  839. --- 822,828 ----
  840.   do
  841.     CFLAGS="$ac_save_CFLAGS $ac_arg"
  842.     cat > conftest.$ac_ext <<EOF
  843. ! #line 826 "configure"
  844.   #include "confdefs.h"
  845.   #if !defined(__STDC__) || __STDC__ != 1
  846.   choke me
  847. ***************
  848. *** 844,875 ****
  849.   
  850.   fi
  851.   
  852. ! echo "$ac_t""$ac_cv_prog_cc_stdc" 1>&4
  853.   case "x$ac_cv_prog_cc_stdc" in
  854.     x|xno) ;;
  855.     *) CC="$CC $ac_cv_prog_cc_stdc" ;;
  856.   esac
  857.   
  858.   
  859. ! echo $ac_n "checking for function prototypes""... $ac_c" 1>&4
  860.   if test "$ac_cv_prog_cc_stdc" != no; then
  861. !   echo "$ac_t""yes" 1>&4
  862.     cat >> confdefs.h <<\EOF
  863.   #define PROTOTYPES 1
  864.   EOF
  865.   
  866.     U= ANSI2KNR=
  867.   else
  868. !   echo "$ac_t""no" 1>&4
  869.     U=_ ANSI2KNR=ansi2knr
  870.   fi
  871.   
  872. ! echo $ac_n "checking for working const""... $ac_c" 1>&4
  873.   if eval "test \"`echo '${'ac_cv_c_const'+set}'`\" = set"; then
  874. !   echo $ac_n "(cached) $ac_c" 1>&4
  875.   else
  876.     cat > conftest.$ac_ext <<EOF
  877. ! #line 873 "configure"
  878.   #include "confdefs.h"
  879.   
  880.   int main() { return 0; }
  881. --- 846,877 ----
  882.   
  883.   fi
  884.   
  885. ! /bin/echo "$ac_t""$ac_cv_prog_cc_stdc" 1>&4
  886.   case "x$ac_cv_prog_cc_stdc" in
  887.     x|xno) ;;
  888.     *) CC="$CC $ac_cv_prog_cc_stdc" ;;
  889.   esac
  890.   
  891.   
  892. ! /bin/echo $ac_n "checking for function prototypes""... $ac_c" 1>&4
  893.   if test "$ac_cv_prog_cc_stdc" != no; then
  894. !   /bin/echo "$ac_t""yes" 1>&4
  895.     cat >> confdefs.h <<\EOF
  896.   #define PROTOTYPES 1
  897.   EOF
  898.   
  899.     U= ANSI2KNR=
  900.   else
  901. !   /bin/echo "$ac_t""no" 1>&4
  902.     U=_ ANSI2KNR=ansi2knr
  903.   fi
  904.   
  905. ! /bin/echo $ac_n "checking for working const""... $ac_c" 1>&4
  906.   if eval "test \"`echo '${'ac_cv_c_const'+set}'`\" = set"; then
  907. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  908.   else
  909.     cat > conftest.$ac_ext <<EOF
  910. ! #line 875 "configure"
  911.   #include "confdefs.h"
  912.   
  913.   int main() { return 0; }
  914. ***************
  915. *** 929,935 ****
  916.   rm -f conftest*
  917.   
  918.   fi
  919. ! echo "$ac_t""$ac_cv_c_const" 1>&4
  920.   if test $ac_cv_c_const = no; then
  921.     cat >> confdefs.h <<\EOF
  922.   #define const 
  923. --- 931,937 ----
  924.   rm -f conftest*
  925.   
  926.   fi
  927. ! /bin/echo "$ac_t""$ac_cv_c_const" 1>&4
  928.   if test $ac_cv_c_const = no; then
  929.     cat >> confdefs.h <<\EOF
  930.   #define const 
  931. ***************
  932. *** 940,952 ****
  933.   
  934.   for ac_hdr in limits.h memory.h siginfo.h string.h unistd.h
  935.   do
  936. ! ac_safe=`echo "$ac_hdr" | tr './\055' '___'`
  937. ! echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&4
  938.   if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  939. !   echo $ac_n "(cached) $ac_c" 1>&4
  940.   else
  941.     cat > conftest.$ac_ext <<EOF
  942. ! #line 950 "configure"
  943.   #include "confdefs.h"
  944.   #include <$ac_hdr>
  945.   EOF
  946. --- 942,954 ----
  947.   
  948.   for ac_hdr in limits.h memory.h siginfo.h string.h unistd.h
  949.   do
  950. ! ac_safe=`/bin/echo "$ac_hdr" | tr './\055' '___'`
  951. ! /bin/echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&4
  952.   if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  953. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  954.   else
  955.     cat > conftest.$ac_ext <<EOF
  956. ! #line 952 "configure"
  957.   #include "confdefs.h"
  958.   #include <$ac_hdr>
  959.   EOF
  960. ***************
  961. *** 956,989 ****
  962.     rm -rf conftest*
  963.     eval "ac_cv_header_$ac_safe=yes"
  964.   else
  965. !   echo "$ac_err" >&5
  966.     rm -rf conftest*
  967.     eval "ac_cv_header_$ac_safe=no"
  968.   fi
  969.   rm -f conftest*
  970.   fi
  971.   if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  972. !   echo "$ac_t""yes" 1>&4
  973. !     ac_tr_hdr=HAVE_`echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
  974.     cat >> confdefs.h <<EOF
  975.   #define $ac_tr_hdr 1
  976.   EOF
  977.    
  978.   else
  979. !   echo "$ac_t""no" 1>&4
  980.   fi
  981.   done
  982.   
  983.   # If we cannot run a trivial program, we must be cross compiling.
  984. ! echo $ac_n "checking whether cross-compiling""... $ac_c" 1>&4
  985.   if eval "test \"`echo '${'ac_cv_c_cross'+set}'`\" = set"; then
  986. !   echo $ac_n "(cached) $ac_c" 1>&4
  987.   else
  988.     if test "$cross_compiling" = yes; then
  989.     ac_cv_cross=yes
  990.   else
  991.   cat > conftest.$ac_ext <<EOF
  992. ! #line 987 "configure"
  993.   #include "confdefs.h"
  994.   main(){return(0);}
  995.   EOF
  996. --- 958,991 ----
  997.     rm -rf conftest*
  998.     eval "ac_cv_header_$ac_safe=yes"
  999.   else
  1000. !   /bin/echo "$ac_err" >&5
  1001.     rm -rf conftest*
  1002.     eval "ac_cv_header_$ac_safe=no"
  1003.   fi
  1004.   rm -f conftest*
  1005.   fi
  1006.   if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  1007. !   /bin/echo "$ac_t""yes" 1>&4
  1008. !     ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
  1009.     cat >> confdefs.h <<EOF
  1010.   #define $ac_tr_hdr 1
  1011.   EOF
  1012.    
  1013.   else
  1014. !   /bin/echo "$ac_t""no" 1>&4
  1015.   fi
  1016.   done
  1017.   
  1018.   # If we cannot run a trivial program, we must be cross compiling.
  1019. ! /bin/echo $ac_n "checking whether cross-compiling""... $ac_c" 1>&4
  1020.   if eval "test \"`echo '${'ac_cv_c_cross'+set}'`\" = set"; then
  1021. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1022.   else
  1023.     if test "$cross_compiling" = yes; then
  1024.     ac_cv_cross=yes
  1025.   else
  1026.   cat > conftest.$ac_ext <<EOF
  1027. ! #line 989 "configure"
  1028.   #include "confdefs.h"
  1029.   main(){return(0);}
  1030.   EOF
  1031. ***************
  1032. *** 997,1010 ****
  1033.   rm -fr conftest*
  1034.   fi
  1035.   cross_compiling=$ac_cv_c_cross
  1036. ! echo "$ac_t""$ac_cv_c_cross" 1>&4
  1037.   
  1038. ! echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&4
  1039.   if eval "test \"`echo '${'ac_cv_header_stdc'+set}'`\" = set"; then
  1040. !   echo $ac_n "(cached) $ac_c" 1>&4
  1041.   else
  1042.     cat > conftest.$ac_ext <<EOF
  1043. ! #line 1008 "configure"
  1044.   #include "confdefs.h"
  1045.   #include <stdlib.h>
  1046.   #include <stdarg.h>
  1047. --- 999,1012 ----
  1048.   rm -fr conftest*
  1049.   fi
  1050.   cross_compiling=$ac_cv_c_cross
  1051. ! /bin/echo "$ac_t""$ac_cv_c_cross" 1>&4
  1052.   
  1053. ! /bin/echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&4
  1054.   if eval "test \"`echo '${'ac_cv_header_stdc'+set}'`\" = set"; then
  1055. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1056.   else
  1057.     cat > conftest.$ac_ext <<EOF
  1058. ! #line 1010 "configure"
  1059.   #include "confdefs.h"
  1060.   #include <stdlib.h>
  1061.   #include <stdarg.h>
  1062. ***************
  1063. *** 1017,1023 ****
  1064.     rm -rf conftest*
  1065.     ac_cv_header_stdc=yes
  1066.   else
  1067. !   echo "$ac_err" >&5
  1068.     rm -rf conftest*
  1069.     ac_cv_header_stdc=no
  1070.   fi
  1071. --- 1019,1025 ----
  1072.     rm -rf conftest*
  1073.     ac_cv_header_stdc=yes
  1074.   else
  1075. !   /bin/echo "$ac_err" >&5
  1076.     rm -rf conftest*
  1077.     ac_cv_header_stdc=no
  1078.   fi
  1079. ***************
  1080. *** 1026,1032 ****
  1081.   if test $ac_cv_header_stdc = yes; then
  1082.     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  1083.   cat > conftest.$ac_ext <<EOF
  1084. ! #line 1030 "configure"
  1085.   #include "confdefs.h"
  1086.   #include <string.h>
  1087.   EOF
  1088. --- 1028,1034 ----
  1089.   if test $ac_cv_header_stdc = yes; then
  1090.     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  1091.   cat > conftest.$ac_ext <<EOF
  1092. ! #line 1032 "configure"
  1093.   #include "confdefs.h"
  1094.   #include <string.h>
  1095.   EOF
  1096. ***************
  1097. *** 1044,1050 ****
  1098.   if test $ac_cv_header_stdc = yes; then
  1099.     # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  1100.   cat > conftest.$ac_ext <<EOF
  1101. ! #line 1048 "configure"
  1102.   #include "confdefs.h"
  1103.   #include <stdlib.h>
  1104.   EOF
  1105. --- 1046,1052 ----
  1106.   if test $ac_cv_header_stdc = yes; then
  1107.     # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  1108.   cat > conftest.$ac_ext <<EOF
  1109. ! #line 1050 "configure"
  1110.   #include "confdefs.h"
  1111.   #include <stdlib.h>
  1112.   EOF
  1113. ***************
  1114. *** 1065,1071 ****
  1115.     ac_cv_header_stdc=no
  1116.   else
  1117.   cat > conftest.$ac_ext <<EOF
  1118. ! #line 1069 "configure"
  1119.   #include "confdefs.h"
  1120.   #include <ctype.h>
  1121.   #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  1122. --- 1067,1073 ----
  1123.     ac_cv_header_stdc=no
  1124.   else
  1125.   cat > conftest.$ac_ext <<EOF
  1126. ! #line 1071 "configure"
  1127.   #include "confdefs.h"
  1128.   #include <ctype.h>
  1129.   #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  1130. ***************
  1131. *** 1086,1092 ****
  1132.   rm -fr conftest*
  1133.   fi
  1134.   fi
  1135. ! echo "$ac_t""$ac_cv_header_stdc" 1>&4
  1136.   if test $ac_cv_header_stdc = yes; then
  1137.     cat >> confdefs.h <<\EOF
  1138.   #define STDC_HEADERS 1
  1139. --- 1088,1094 ----
  1140.   rm -fr conftest*
  1141.   fi
  1142.   fi
  1143. ! /bin/echo "$ac_t""$ac_cv_header_stdc" 1>&4
  1144.   if test $ac_cv_header_stdc = yes; then
  1145.     cat >> confdefs.h <<\EOF
  1146.   #define STDC_HEADERS 1
  1147. ***************
  1148. *** 1094,1105 ****
  1149.   
  1150.   fi
  1151.   
  1152. ! echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&4
  1153.   if eval "test \"`echo '${'ac_cv_type_signal'+set}'`\" = set"; then
  1154. !   echo $ac_n "(cached) $ac_c" 1>&4
  1155.   else
  1156.     cat > conftest.$ac_ext <<EOF
  1157. ! #line 1103 "configure"
  1158.   #include "confdefs.h"
  1159.   #include <sys/types.h>
  1160.   #include <signal.h>
  1161. --- 1096,1107 ----
  1162.   
  1163.   fi
  1164.   
  1165. ! /bin/echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&4
  1166.   if eval "test \"`echo '${'ac_cv_type_signal'+set}'`\" = set"; then
  1167. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1168.   else
  1169.     cat > conftest.$ac_ext <<EOF
  1170. ! #line 1105 "configure"
  1171.   #include "confdefs.h"
  1172.   #include <sys/types.h>
  1173.   #include <signal.h>
  1174. ***************
  1175. *** 1122,1139 ****
  1176.   rm -f conftest*
  1177.   
  1178.   fi
  1179. ! echo "$ac_t""$ac_cv_type_signal" 1>&4
  1180.   cat >> confdefs.h <<EOF
  1181.   #define RETSIGTYPE $ac_cv_type_signal
  1182.   EOF
  1183.   
  1184.   
  1185. ! echo $ac_n "checking for size_t""... $ac_c" 1>&4
  1186.   if eval "test \"`echo '${'ac_cv_type_size_t'+set}'`\" = set"; then
  1187. !   echo $ac_n "(cached) $ac_c" 1>&4
  1188.   else
  1189.     cat > conftest.$ac_ext <<EOF
  1190. ! #line 1137 "configure"
  1191.   #include "confdefs.h"
  1192.   #include <sys/types.h>
  1193.   #if STDC_HEADERS
  1194. --- 1124,1141 ----
  1195.   rm -f conftest*
  1196.   
  1197.   fi
  1198. ! /bin/echo "$ac_t""$ac_cv_type_signal" 1>&4
  1199.   cat >> confdefs.h <<EOF
  1200.   #define RETSIGTYPE $ac_cv_type_signal
  1201.   EOF
  1202.   
  1203.   
  1204. ! /bin/echo $ac_n "checking for size_t""... $ac_c" 1>&4
  1205.   if eval "test \"`echo '${'ac_cv_type_size_t'+set}'`\" = set"; then
  1206. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1207.   else
  1208.     cat > conftest.$ac_ext <<EOF
  1209. ! #line 1139 "configure"
  1210.   #include "confdefs.h"
  1211.   #include <sys/types.h>
  1212.   #if STDC_HEADERS
  1213. ***************
  1214. *** 1151,1157 ****
  1215.   rm -f conftest*
  1216.   
  1217.   fi
  1218. ! echo "$ac_t""$ac_cv_type_size_t" 1>&4
  1219.   if test $ac_cv_type_size_t = no; then
  1220.     cat >> confdefs.h <<\EOF
  1221.   #define size_t unsigned
  1222. --- 1153,1159 ----
  1223.   rm -f conftest*
  1224.   
  1225.   fi
  1226. ! /bin/echo "$ac_t""$ac_cv_type_size_t" 1>&4
  1227.   if test $ac_cv_type_size_t = no; then
  1228.     cat >> confdefs.h <<\EOF
  1229.   #define size_t unsigned
  1230. ***************
  1231. *** 1162,1173 ****
  1232.   
  1233.   for ac_func in mkstemp sigaction sigaltstack sigstack sigvec strerror tmpfile
  1234.   do
  1235. ! echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
  1236.   if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
  1237. !   echo $ac_n "(cached) $ac_c" 1>&4
  1238.   else
  1239.     cat > conftest.$ac_ext <<EOF
  1240. ! #line 1171 "configure"
  1241.   #include "confdefs.h"
  1242.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1243.   /* Override any gcc2 internal prototype to avoid an error.  */
  1244. --- 1164,1175 ----
  1245.   
  1246.   for ac_func in mkstemp sigaction sigaltstack sigstack sigvec strerror tmpfile
  1247.   do
  1248. ! /bin/echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
  1249.   if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
  1250. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1251.   else
  1252.     cat > conftest.$ac_ext <<EOF
  1253. ! #line 1173 "configure"
  1254.   #include "confdefs.h"
  1255.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1256.   /* Override any gcc2 internal prototype to avoid an error.  */
  1257. ***************
  1258. *** 1198,1222 ****
  1259.   
  1260.   fi
  1261.   if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  1262. !   echo "$ac_t""yes" 1>&4
  1263. !     ac_tr_func=HAVE_`echo $ac_func | tr '[a-z]' '[A-Z]'`
  1264.     cat >> confdefs.h <<EOF
  1265.   #define $ac_tr_func 1
  1266.   EOF
  1267.    
  1268.   else
  1269. !   echo "$ac_t""no" 1>&4
  1270.   fi
  1271.   done
  1272.   
  1273.   # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  1274.   # for constant arguments.  Useless!
  1275. ! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&4
  1276.   if eval "test \"`echo '${'ac_cv_header_alloca_h'+set}'`\" = set"; then
  1277. !   echo $ac_n "(cached) $ac_c" 1>&4
  1278.   else
  1279.     cat > conftest.$ac_ext <<EOF
  1280. ! #line 1220 "configure"
  1281.   #include "confdefs.h"
  1282.   #include <alloca.h>
  1283.   int main() { return 0; }
  1284. --- 1200,1224 ----
  1285.   
  1286.   fi
  1287.   if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  1288. !   /bin/echo "$ac_t""yes" 1>&4
  1289. !     ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
  1290.     cat >> confdefs.h <<EOF
  1291.   #define $ac_tr_func 1
  1292.   EOF
  1293.    
  1294.   else
  1295. !   /bin/echo "$ac_t""no" 1>&4
  1296.   fi
  1297.   done
  1298.   
  1299.   # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  1300.   # for constant arguments.  Useless!
  1301. ! /bin/echo $ac_n "checking for working alloca.h""... $ac_c" 1>&4
  1302.   if eval "test \"`echo '${'ac_cv_header_alloca_h'+set}'`\" = set"; then
  1303. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1304.   else
  1305.     cat > conftest.$ac_ext <<EOF
  1306. ! #line 1222 "configure"
  1307.   #include "confdefs.h"
  1308.   #include <alloca.h>
  1309.   int main() { return 0; }
  1310. ***************
  1311. *** 1234,1240 ****
  1312.   rm -f conftest*
  1313.   
  1314.   fi
  1315. ! echo "$ac_t""$ac_cv_header_alloca_h" 1>&4
  1316.   if test $ac_cv_header_alloca_h = yes; then
  1317.     cat >> confdefs.h <<\EOF
  1318.   #define HAVE_ALLOCA_H 1
  1319. --- 1236,1242 ----
  1320.   rm -f conftest*
  1321.   
  1322.   fi
  1323. ! /bin/echo "$ac_t""$ac_cv_header_alloca_h" 1>&4
  1324.   if test $ac_cv_header_alloca_h = yes; then
  1325.     cat >> confdefs.h <<\EOF
  1326.   #define HAVE_ALLOCA_H 1
  1327. ***************
  1328. *** 1242,1253 ****
  1329.   
  1330.   fi
  1331.   
  1332. ! echo $ac_n "checking for alloca""... $ac_c" 1>&4
  1333.   if eval "test \"`echo '${'ac_cv_func_alloca'+set}'`\" = set"; then
  1334. !   echo $ac_n "(cached) $ac_c" 1>&4
  1335.   else
  1336.     cat > conftest.$ac_ext <<EOF
  1337. ! #line 1251 "configure"
  1338.   #include "confdefs.h"
  1339.   
  1340.   #ifdef __GNUC__
  1341. --- 1244,1255 ----
  1342.   
  1343.   fi
  1344.   
  1345. ! /bin/echo $ac_n "checking for alloca""... $ac_c" 1>&4
  1346.   if eval "test \"`echo '${'ac_cv_func_alloca'+set}'`\" = set"; then
  1347. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1348.   else
  1349.     cat > conftest.$ac_ext <<EOF
  1350. ! #line 1253 "configure"
  1351.   #include "confdefs.h"
  1352.   
  1353.   #ifdef __GNUC__
  1354. ***************
  1355. *** 1281,1287 ****
  1356.   rm -f conftest*
  1357.   
  1358.   fi
  1359. ! echo "$ac_t""$ac_cv_func_alloca" 1>&4
  1360.   if test $ac_cv_func_alloca = yes; then
  1361.     cat >> confdefs.h <<\EOF
  1362.   #define HAVE_ALLOCA 1
  1363. --- 1283,1289 ----
  1364.   rm -f conftest*
  1365.   
  1366.   fi
  1367. ! /bin/echo "$ac_t""$ac_cv_func_alloca" 1>&4
  1368.   if test $ac_cv_func_alloca = yes; then
  1369.     cat >> confdefs.h <<\EOF
  1370.   #define HAVE_ALLOCA 1
  1371. ***************
  1372. *** 1300,1311 ****
  1373.   EOF
  1374.   
  1375.   
  1376. ! echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&4
  1377.   if eval "test \"`echo '${'ac_cv_os_cray'+set}'`\" = set"; then
  1378. !   echo $ac_n "(cached) $ac_c" 1>&4
  1379.   else
  1380.     cat > conftest.$ac_ext <<EOF
  1381. ! #line 1309 "configure"
  1382.   #include "confdefs.h"
  1383.   #if defined(CRAY) && ! defined(CRAY2)
  1384.   webecray
  1385. --- 1302,1313 ----
  1386.   EOF
  1387.   
  1388.   
  1389. ! /bin/echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&4
  1390.   if eval "test \"`echo '${'ac_cv_os_cray'+set}'`\" = set"; then
  1391. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1392.   else
  1393.     cat > conftest.$ac_ext <<EOF
  1394. ! #line 1311 "configure"
  1395.   #include "confdefs.h"
  1396.   #if defined(CRAY) && ! defined(CRAY2)
  1397.   webecray
  1398. ***************
  1399. *** 1325,1338 ****
  1400.   rm -f conftest*
  1401.   
  1402.   fi
  1403. ! echo "$ac_t""$ac_cv_os_cray" 1>&4
  1404.   if test $ac_cv_os_cray = yes; then
  1405. ! echo $ac_n "checking for _getb67""... $ac_c" 1>&4
  1406.   if eval "test \"`echo '${'ac_cv_func__getb67'+set}'`\" = set"; then
  1407. !   echo $ac_n "(cached) $ac_c" 1>&4
  1408.   else
  1409.     cat > conftest.$ac_ext <<EOF
  1410. ! #line 1336 "configure"
  1411.   #include "confdefs.h"
  1412.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1413.   /* Override any gcc2 internal prototype to avoid an error.  */
  1414. --- 1327,1340 ----
  1415.   rm -f conftest*
  1416.   
  1417.   fi
  1418. ! /bin/echo "$ac_t""$ac_cv_os_cray" 1>&4
  1419.   if test $ac_cv_os_cray = yes; then
  1420. ! /bin/echo $ac_n "checking for _getb67""... $ac_c" 1>&4
  1421.   if eval "test \"`echo '${'ac_cv_func__getb67'+set}'`\" = set"; then
  1422. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1423.   else
  1424.     cat > conftest.$ac_ext <<EOF
  1425. ! #line 1338 "configure"
  1426.   #include "confdefs.h"
  1427.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1428.   /* Override any gcc2 internal prototype to avoid an error.  */
  1429. ***************
  1430. *** 1363,1381 ****
  1431.   
  1432.   fi
  1433.   if eval "test \"`echo '$ac_cv_func_'_getb67`\" = yes"; then
  1434. !   echo "$ac_t""yes" 1>&4
  1435.     cat >> confdefs.h <<\EOF
  1436.   #define CRAY_STACKSEG_END _getb67
  1437.   EOF
  1438.   
  1439.   else
  1440. !   echo "$ac_t""no" 1>&4
  1441. ! echo $ac_n "checking for GETB67""... $ac_c" 1>&4
  1442.   if eval "test \"`echo '${'ac_cv_func_GETB67'+set}'`\" = set"; then
  1443. !   echo $ac_n "(cached) $ac_c" 1>&4
  1444.   else
  1445.     cat > conftest.$ac_ext <<EOF
  1446. ! #line 1379 "configure"
  1447.   #include "confdefs.h"
  1448.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1449.   /* Override any gcc2 internal prototype to avoid an error.  */
  1450. --- 1365,1383 ----
  1451.   
  1452.   fi
  1453.   if eval "test \"`echo '$ac_cv_func_'_getb67`\" = yes"; then
  1454. !   /bin/echo "$ac_t""yes" 1>&4
  1455.     cat >> confdefs.h <<\EOF
  1456.   #define CRAY_STACKSEG_END _getb67
  1457.   EOF
  1458.   
  1459.   else
  1460. !   /bin/echo "$ac_t""no" 1>&4
  1461. ! /bin/echo $ac_n "checking for GETB67""... $ac_c" 1>&4
  1462.   if eval "test \"`echo '${'ac_cv_func_GETB67'+set}'`\" = set"; then
  1463. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1464.   else
  1465.     cat > conftest.$ac_ext <<EOF
  1466. ! #line 1381 "configure"
  1467.   #include "confdefs.h"
  1468.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1469.   /* Override any gcc2 internal prototype to avoid an error.  */
  1470. ***************
  1471. *** 1406,1424 ****
  1472.   
  1473.   fi
  1474.   if eval "test \"`echo '$ac_cv_func_'GETB67`\" = yes"; then
  1475. !   echo "$ac_t""yes" 1>&4
  1476.     cat >> confdefs.h <<\EOF
  1477.   #define CRAY_STACKSEG_END GETB67
  1478.   EOF
  1479.   
  1480.   else
  1481. !   echo "$ac_t""no" 1>&4
  1482. ! echo $ac_n "checking for getb67""... $ac_c" 1>&4
  1483.   if eval "test \"`echo '${'ac_cv_func_getb67'+set}'`\" = set"; then
  1484. !   echo $ac_n "(cached) $ac_c" 1>&4
  1485.   else
  1486.     cat > conftest.$ac_ext <<EOF
  1487. ! #line 1422 "configure"
  1488.   #include "confdefs.h"
  1489.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1490.   /* Override any gcc2 internal prototype to avoid an error.  */
  1491. --- 1408,1426 ----
  1492.   
  1493.   fi
  1494.   if eval "test \"`echo '$ac_cv_func_'GETB67`\" = yes"; then
  1495. !   /bin/echo "$ac_t""yes" 1>&4
  1496.     cat >> confdefs.h <<\EOF
  1497.   #define CRAY_STACKSEG_END GETB67
  1498.   EOF
  1499.   
  1500.   else
  1501. !   /bin/echo "$ac_t""no" 1>&4
  1502. ! /bin/echo $ac_n "checking for getb67""... $ac_c" 1>&4
  1503.   if eval "test \"`echo '${'ac_cv_func_getb67'+set}'`\" = set"; then
  1504. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1505.   else
  1506.     cat > conftest.$ac_ext <<EOF
  1507. ! #line 1424 "configure"
  1508.   #include "confdefs.h"
  1509.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1510.   /* Override any gcc2 internal prototype to avoid an error.  */
  1511. ***************
  1512. *** 1449,1461 ****
  1513.   
  1514.   fi
  1515.   if eval "test \"`echo '$ac_cv_func_'getb67`\" = yes"; then
  1516. !   echo "$ac_t""yes" 1>&4
  1517.     cat >> confdefs.h <<\EOF
  1518.   #define CRAY_STACKSEG_END getb67
  1519.   EOF
  1520.   
  1521.   else
  1522. !   echo "$ac_t""no" 1>&4
  1523.   fi
  1524.   
  1525.   fi
  1526. --- 1451,1463 ----
  1527.   
  1528.   fi
  1529.   if eval "test \"`echo '$ac_cv_func_'getb67`\" = yes"; then
  1530. !   /bin/echo "$ac_t""yes" 1>&4
  1531.     cat >> confdefs.h <<\EOF
  1532.   #define CRAY_STACKSEG_END getb67
  1533.   EOF
  1534.   
  1535.   else
  1536. !   /bin/echo "$ac_t""no" 1>&4
  1537.   fi
  1538.   
  1539.   fi
  1540. ***************
  1541. *** 1464,1478 ****
  1542.   
  1543.   fi
  1544.   
  1545. ! echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&4
  1546.   if eval "test \"`echo '${'ac_cv_c_stack_direction'+set}'`\" = set"; then
  1547. !   echo $ac_n "(cached) $ac_c" 1>&4
  1548.   else
  1549.     if test "$cross_compiling" = yes; then
  1550.     ac_cv_c_stack_direction=0
  1551.   else
  1552.   cat > conftest.$ac_ext <<EOF
  1553. ! #line 1476 "configure"
  1554.   #include "confdefs.h"
  1555.   find_stack_direction ()
  1556.   {
  1557. --- 1466,1480 ----
  1558.   
  1559.   fi
  1560.   
  1561. ! /bin/echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&4
  1562.   if eval "test \"`echo '${'ac_cv_c_stack_direction'+set}'`\" = set"; then
  1563. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1564.   else
  1565.     if test "$cross_compiling" = yes; then
  1566.     ac_cv_c_stack_direction=0
  1567.   else
  1568.   cat > conftest.$ac_ext <<EOF
  1569. ! #line 1478 "configure"
  1570.   #include "confdefs.h"
  1571.   find_stack_direction ()
  1572.   {
  1573. ***************
  1574. *** 1500,1518 ****
  1575.   fi
  1576.   rm -fr conftest*
  1577.   fi
  1578. ! echo "$ac_t""$ac_cv_c_stack_direction" 1>&4
  1579.   cat >> confdefs.h <<EOF
  1580.   #define STACK_DIRECTION $ac_cv_c_stack_direction
  1581.   EOF
  1582.   
  1583.   fi
  1584.   
  1585. ! echo $ac_n "checking for vprintf""... $ac_c" 1>&4
  1586.   if eval "test \"`echo '${'ac_cv_func_vprintf'+set}'`\" = set"; then
  1587. !   echo $ac_n "(cached) $ac_c" 1>&4
  1588.   else
  1589.     cat > conftest.$ac_ext <<EOF
  1590. ! #line 1516 "configure"
  1591.   #include "confdefs.h"
  1592.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1593.   /* Override any gcc2 internal prototype to avoid an error.  */
  1594. --- 1502,1520 ----
  1595.   fi
  1596.   rm -fr conftest*
  1597.   fi
  1598. ! /bin/echo "$ac_t""$ac_cv_c_stack_direction" 1>&4
  1599.   cat >> confdefs.h <<EOF
  1600.   #define STACK_DIRECTION $ac_cv_c_stack_direction
  1601.   EOF
  1602.   
  1603.   fi
  1604.   
  1605. ! /bin/echo $ac_n "checking for vprintf""... $ac_c" 1>&4
  1606.   if eval "test \"`echo '${'ac_cv_func_vprintf'+set}'`\" = set"; then
  1607. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1608.   else
  1609.     cat > conftest.$ac_ext <<EOF
  1610. ! #line 1518 "configure"
  1611.   #include "confdefs.h"
  1612.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1613.   /* Override any gcc2 internal prototype to avoid an error.  */
  1614. ***************
  1615. *** 1543,1564 ****
  1616.   
  1617.   fi
  1618.   if eval "test \"`echo '$ac_cv_func_'vprintf`\" = yes"; then
  1619. !   echo "$ac_t""yes" 1>&4
  1620.     cat >> confdefs.h <<\EOF
  1621.   #define HAVE_VPRINTF 1
  1622.   EOF
  1623.   
  1624.   else
  1625. !   echo "$ac_t""no" 1>&4
  1626.   fi
  1627.   
  1628.   if test "$ac_cv_func_vprintf" != yes; then
  1629. ! echo $ac_n "checking for _doprnt""... $ac_c" 1>&4
  1630.   if eval "test \"`echo '${'ac_cv_func__doprnt'+set}'`\" = set"; then
  1631. !   echo $ac_n "(cached) $ac_c" 1>&4
  1632.   else
  1633.     cat > conftest.$ac_ext <<EOF
  1634. ! #line 1562 "configure"
  1635.   #include "confdefs.h"
  1636.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1637.   /* Override any gcc2 internal prototype to avoid an error.  */
  1638. --- 1545,1566 ----
  1639.   
  1640.   fi
  1641.   if eval "test \"`echo '$ac_cv_func_'vprintf`\" = yes"; then
  1642. !   /bin/echo "$ac_t""yes" 1>&4
  1643.     cat >> confdefs.h <<\EOF
  1644.   #define HAVE_VPRINTF 1
  1645.   EOF
  1646.   
  1647.   else
  1648. !   /bin/echo "$ac_t""no" 1>&4
  1649.   fi
  1650.   
  1651.   if test "$ac_cv_func_vprintf" != yes; then
  1652. ! /bin/echo $ac_n "checking for _doprnt""... $ac_c" 1>&4
  1653.   if eval "test \"`echo '${'ac_cv_func__doprnt'+set}'`\" = set"; then
  1654. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1655.   else
  1656.     cat > conftest.$ac_ext <<EOF
  1657. ! #line 1564 "configure"
  1658.   #include "confdefs.h"
  1659.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1660.   /* Override any gcc2 internal prototype to avoid an error.  */
  1661. ***************
  1662. *** 1589,1613 ****
  1663.   
  1664.   fi
  1665.   if eval "test \"`echo '$ac_cv_func_'_doprnt`\" = yes"; then
  1666. !   echo "$ac_t""yes" 1>&4
  1667.     cat >> confdefs.h <<\EOF
  1668.   #define HAVE_DOPRNT 1
  1669.   EOF
  1670.   
  1671.   else
  1672. !   echo "$ac_t""no" 1>&4
  1673.   fi
  1674.   
  1675.   fi
  1676.   
  1677.   for ac_func in strtol
  1678.   do
  1679. ! echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
  1680.   if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
  1681. !   echo $ac_n "(cached) $ac_c" 1>&4
  1682.   else
  1683.     cat > conftest.$ac_ext <<EOF
  1684. ! #line 1611 "configure"
  1685.   #include "confdefs.h"
  1686.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1687.   /* Override any gcc2 internal prototype to avoid an error.  */
  1688. --- 1591,1615 ----
  1689.   
  1690.   fi
  1691.   if eval "test \"`echo '$ac_cv_func_'_doprnt`\" = yes"; then
  1692. !   /bin/echo "$ac_t""yes" 1>&4
  1693.     cat >> confdefs.h <<\EOF
  1694.   #define HAVE_DOPRNT 1
  1695.   EOF
  1696.   
  1697.   else
  1698. !   /bin/echo "$ac_t""no" 1>&4
  1699.   fi
  1700.   
  1701.   fi
  1702.   
  1703.   for ac_func in strtol
  1704.   do
  1705. ! /bin/echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
  1706.   if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
  1707. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1708.   else
  1709.     cat > conftest.$ac_ext <<EOF
  1710. ! #line 1613 "configure"
  1711.   #include "confdefs.h"
  1712.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1713.   /* Override any gcc2 internal prototype to avoid an error.  */
  1714. ***************
  1715. *** 1638,1675 ****
  1716.   
  1717.   fi
  1718.   if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  1719. !   echo "$ac_t""yes" 1>&4
  1720.     :
  1721.   else
  1722. !   echo "$ac_t""no" 1>&4
  1723.   LIBOBJS="$LIBOBJS ${ac_func}.o"
  1724.   fi
  1725.   
  1726.   done
  1727.   
  1728. ! echo $ac_n "checking ecvt declaration""... $ac_c" 1>&4
  1729.   cat > conftest.$ac_ext <<EOF
  1730. ! #line 1653 "configure"
  1731.   #include "confdefs.h"
  1732.   #include <stdlib.h>
  1733.   EOF
  1734.   if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1735.     egrep "ecvt" >/dev/null 2>&1; then
  1736.     rm -rf conftest*
  1737. !   echo "$ac_t""yes" 1>&4; cat >> confdefs.h <<\EOF
  1738.   #define HAVE_EFGCVT 2
  1739.   EOF
  1740.   
  1741.   else
  1742.     rm -rf conftest*
  1743. !   echo "$ac_t""no" 1>&4; for ac_func in ecvt
  1744.   do
  1745. ! echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
  1746.   if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
  1747. !   echo $ac_n "(cached) $ac_c" 1>&4
  1748.   else
  1749.     cat > conftest.$ac_ext <<EOF
  1750. ! #line 1673 "configure"
  1751.   #include "confdefs.h"
  1752.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1753.   /* Override any gcc2 internal prototype to avoid an error.  */
  1754. --- 1640,1677 ----
  1755.   
  1756.   fi
  1757.   if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  1758. !   /bin/echo "$ac_t""yes" 1>&4
  1759.     :
  1760.   else
  1761. !   /bin/echo "$ac_t""no" 1>&4
  1762.   LIBOBJS="$LIBOBJS ${ac_func}.o"
  1763.   fi
  1764.   
  1765.   done
  1766.   
  1767. ! /bin/echo $ac_n "checking ecvt declaration""... $ac_c" 1>&4
  1768.   cat > conftest.$ac_ext <<EOF
  1769. ! #line 1655 "configure"
  1770.   #include "confdefs.h"
  1771.   #include <stdlib.h>
  1772.   EOF
  1773.   if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1774.     egrep "ecvt" >/dev/null 2>&1; then
  1775.     rm -rf conftest*
  1776. !   /bin/echo "$ac_t""yes" 1>&4; cat >> confdefs.h <<\EOF
  1777.   #define HAVE_EFGCVT 2
  1778.   EOF
  1779.   
  1780.   else
  1781.     rm -rf conftest*
  1782. !   /bin/echo "$ac_t""no" 1>&4; for ac_func in ecvt
  1783.   do
  1784. ! /bin/echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
  1785.   if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
  1786. !   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1787.   else
  1788.     cat > conftest.$ac_ext <<EOF
  1789. ! #line 1675 "configure"
  1790.   #include "confdefs.h"
  1791.   #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1792.   /* Override any gcc2 internal prototype to avoid an error.  */
  1793. ***************
  1794. *** 1700,1713 ****
  1795.   
  1796.   fi
  1797.   if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  1798. !   echo "$ac_t""yes" 1>&4
  1799. !     ac_tr_func=HAVE_`echo $ac_func | tr '[a-z]' '[A-Z]'`
  1800.     cat >> confdefs.h <<EOF
  1801.   #define $ac_tr_func 1
  1802.   EOF
  1803.    
  1804.   else
  1805. !   echo "$ac_t""no" 1>&4
  1806.   fi
  1807.   done
  1808.   
  1809. --- 1702,1715 ----
  1810.   
  1811.   fi
  1812.   if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  1813. !   /bin/echo "$ac_t""yes" 1>&4
  1814. !     ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
  1815.     cat >> confdefs.h <<EOF
  1816.   #define $ac_tr_func 1
  1817.   EOF
  1818.    
  1819.   else
  1820. !   /bin/echo "$ac_t""no" 1>&4
  1821.   fi
  1822.   done
  1823.   
  1824. ***************
  1825. *** 1715,1721 ****
  1826.   rm -f conftest*
  1827.   
  1828.   
  1829. ! echo $ac_n "checking if stack overflow is detectable""... $ac_c" 1>&4
  1830.   # Code from Jim Avera <jima@netcom.com>.
  1831.   # stackovf.c requires:
  1832.   #  1. Either sigaction with SA_ONSTACK, or sigvec with SV_ONSTACK
  1833. --- 1717,1723 ----
  1834.   rm -f conftest*
  1835.   
  1836.   
  1837. ! /bin/echo $ac_n "checking if stack overflow is detectable""... $ac_c" 1>&4
  1838.   # Code from Jim Avera <jima@netcom.com>.
  1839.   # stackovf.c requires:
  1840.   #  1. Either sigaction with SA_ONSTACK, or sigvec with SV_ONSTACK
  1841. ***************
  1842. *** 1725,1731 ****
  1843.   if test "$ac_cv_func_sigaction" = yes || test "$ac_cv_func_sigvec" = yes; then
  1844.     if test "$ac_cv_func_sigaltstack" = yes || test "$ac_cv_func_sigstack" = yes; then
  1845.       cat > conftest.$ac_ext <<EOF
  1846. ! #line 1729 "configure"
  1847.   #include "confdefs.h"
  1848.   #include <sys/time.h>
  1849.   #include <sys/resource.h>
  1850. --- 1727,1733 ----
  1851.   if test "$ac_cv_func_sigaction" = yes || test "$ac_cv_func_sigvec" = yes; then
  1852.     if test "$ac_cv_func_sigaltstack" = yes || test "$ac_cv_func_sigstack" = yes; then
  1853.       cat > conftest.$ac_ext <<EOF
  1854. ! #line 1731 "configure"
  1855.   #include "confdefs.h"
  1856.   #include <sys/time.h>
  1857.   #include <sys/resource.h>
  1858. ***************
  1859. *** 1747,1753 ****
  1860.   
  1861.     fi
  1862.   fi
  1863. ! echo "$ac_t""$use_stackovf" 1>&4
  1864.   if test "$use_stackovf" = yes; then
  1865.     cat >> confdefs.h <<\EOF
  1866.   #define USE_STACKOVF 1
  1867. --- 1749,1756 ----
  1868.   
  1869.     fi
  1870.   fi
  1871. ! /bin/echo "$ac_t""$use_stackovf" 1>&4
  1872. ! use_stackovf=no  # Amiga hack - suppress use; we can't do it right yet.
  1873.   if test "$use_stackovf" = yes; then
  1874.     cat >> confdefs.h <<\EOF
  1875.   #define USE_STACKOVF 1
  1876. ***************
  1877. *** 1756,1762 ****
  1878.     STACKOVF=stackovf.${U}o
  1879.     
  1880.     cat > conftest.$ac_ext <<EOF
  1881. ! #line 1760 "configure"
  1882.   #include "confdefs.h"
  1883.   #include <sys/resource.h>
  1884.   EOF
  1885. --- 1759,1765 ----
  1886.     STACKOVF=stackovf.${U}o
  1887.     
  1888.     cat > conftest.$ac_ext <<EOF
  1889. ! #line 1763 "configure"
  1890.   #include "confdefs.h"
  1891.   #include <sys/resource.h>
  1892.   EOF
  1893. ***************
  1894. *** 1773,1779 ****
  1895.   rm -f conftest*
  1896.   
  1897.     cat > conftest.$ac_ext <<EOF
  1898. ! #line 1777 "configure"
  1899.   #include "confdefs.h"
  1900.   #include <signal.h>
  1901.   EOF
  1902. --- 1776,1782 ----
  1903.   rm -f conftest*
  1904.   
  1905.     cat > conftest.$ac_ext <<EOF
  1906. ! #line 1780 "configure"
  1907.   #include "confdefs.h"
  1908.   #include <signal.h>
  1909.   EOF
  1910. ***************
  1911. *** 1790,1796 ****
  1912.   rm -f conftest*
  1913.   
  1914.     cat > conftest.$ac_ext <<EOF
  1915. ! #line 1794 "configure"
  1916.   #include "confdefs.h"
  1917.   #include <signal.h>
  1918.   EOF
  1919. --- 1793,1799 ----
  1920.   rm -f conftest*
  1921.   
  1922.     cat > conftest.$ac_ext <<EOF
  1923. ! #line 1797 "configure"
  1924.   #include "confdefs.h"
  1925.   #include <signal.h>
  1926.   EOF
  1927. ***************
  1928. *** 1806,1835 ****
  1929.   
  1930.   fi
  1931.   
  1932. ! echo $ac_n "checking if changeword is wanted""... $ac_c" 1>&4
  1933.   # Check whether --enable-changeword or --disable-changeword was given.
  1934.   enableval="$enable_changeword"
  1935.   if test -n "$enableval"; then
  1936.     if test "$enableval" = yes; then
  1937. !   echo "$ac_t""yes" 1>&4
  1938.     cat >> confdefs.h <<\EOF
  1939.   #define ENABLE_CHANGEWORD 1
  1940.   EOF
  1941.   
  1942.   else
  1943. !   echo "$ac_t""no" 1>&4
  1944.   fi
  1945.   else
  1946. !   echo "$ac_t""no" 1>&4
  1947.   fi
  1948.   
  1949.   
  1950. ! echo $ac_n "checking if malloc debugging is wanted""... $ac_c" 1>&4
  1951.   # Check whether --with-dmalloc or --without-dmalloc was given.
  1952.   withval="$with_dmalloc"
  1953.   if test -n "$withval"; then
  1954.     if test "$withval" = yes; then
  1955. !   echo "$ac_t""yes" 1>&4
  1956.     cat >> confdefs.h <<\EOF
  1957.   #define WITH_DMALLOC 1
  1958.   EOF
  1959. --- 1809,1838 ----
  1960.   
  1961.   fi
  1962.   
  1963. ! /bin/echo $ac_n "checking if changeword is wanted""... $ac_c" 1>&4
  1964.   # Check whether --enable-changeword or --disable-changeword was given.
  1965.   enableval="$enable_changeword"
  1966.   if test -n "$enableval"; then
  1967.     if test "$enableval" = yes; then
  1968. !   /bin/echo "$ac_t""yes" 1>&4
  1969.     cat >> confdefs.h <<\EOF
  1970.   #define ENABLE_CHANGEWORD 1
  1971.   EOF
  1972.   
  1973.   else
  1974. !   /bin/echo "$ac_t""no" 1>&4
  1975.   fi
  1976.   else
  1977. !   /bin/echo "$ac_t""no" 1>&4
  1978.   fi
  1979.   
  1980.   
  1981. ! /bin/echo $ac_n "checking if malloc debugging is wanted""... $ac_c" 1>&4
  1982.   # Check whether --with-dmalloc or --without-dmalloc was given.
  1983.   withval="$with_dmalloc"
  1984.   if test -n "$withval"; then
  1985.     if test "$withval" = yes; then
  1986. !   /bin/echo "$ac_t""yes" 1>&4
  1987.     cat >> confdefs.h <<\EOF
  1988.   #define WITH_DMALLOC 1
  1989.   EOF
  1990. ***************
  1991. *** 1837,1846 ****
  1992.     LIBS="$LIBS -ldmalloc"
  1993.     LDFLAGS="$LDFLAGS -g"
  1994.   else
  1995. !   echo "$ac_t""no" 1>&4
  1996.   fi
  1997.   else
  1998. !   echo "$ac_t""no" 1>&4
  1999.   fi
  2000.   
  2001.   
  2002. --- 1840,1849 ----
  2003.     LIBS="$LIBS -ldmalloc"
  2004.     LDFLAGS="$LDFLAGS -g"
  2005.   else
  2006. !   /bin/echo "$ac_t""no" 1>&4
  2007.   fi
  2008.   else
  2009. !   /bin/echo "$ac_t""no" 1>&4
  2010.   fi
  2011.   
  2012.   
  2013. ***************
  2014. *** 1892,1898 ****
  2015.   : ${CONFIG_STATUS=./config.status}
  2016.   
  2017.   echo creating $CONFIG_STATUS
  2018. ! rm -f $CONFIG_STATUS
  2019.   cat > $CONFIG_STATUS <<EOF
  2020.   #!/bin/sh
  2021.   # Generated automatically by configure.
  2022. --- 1895,1903 ----
  2023.   : ${CONFIG_STATUS=./config.status}
  2024.   
  2025.   echo creating $CONFIG_STATUS
  2026. ! # Some systems, like AmigaDOS, won't allow you to remove a script that is
  2027. ! # being executed, so just move it out of the way instead.
  2028. ! if test -f $CONFIG_STATUS; then mv $CONFIG_STATUS $CONFIG_STATUS.old; else true; fi
  2029.   cat > $CONFIG_STATUS <<EOF
  2030.   #!/bin/sh
  2031.   # Generated automatically by configure.
  2032. ***************
  2033. *** 1913,1919 ****
  2034.       echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
  2035.       exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  2036.     -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  2037. !     echo "$CONFIG_STATUS generated by autoconf version 2.1"
  2038.       exit 0 ;;
  2039.     -help | --help | --hel | --he | --h)
  2040.       echo "\$ac_cs_usage"; exit 0 ;;
  2041. --- 1918,1924 ----
  2042.       echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
  2043.       exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  2044.     -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  2045. !     /bin/echo "$CONFIG_STATUS generated by autoconf version 2.1"
  2046.       exit 0 ;;
  2047.     -help | --help | --hel | --he | --h)
  2048.       echo "\$ac_cs_usage"; exit 0 ;;
  2049. ***************
  2050. *** 1967,1987 ****
  2051.   for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
  2052.     # Support "outfile[:infile]", defaulting infile="outfile.in".
  2053.     case "$ac_file" in
  2054. !   *:*) ac_file_in=`echo "$ac_file"|sed 's%.*:%%'`
  2055. !        ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  2056.     *) ac_file_in="${ac_file}.in" ;;
  2057.     esac
  2058.   
  2059.     # Adjust relative srcdir, etc. for subdirectories.
  2060.   
  2061.     # Remove last slash and all that follows it.  Not all systems have dirname.
  2062. !   ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
  2063.     if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  2064.       # The file is in a subdirectory.
  2065.       test ! -d "$ac_dir" && mkdir "$ac_dir"
  2066.       ac_dir_suffix="/$ac_dir"
  2067.       # A "../" for each directory in $ac_dir_suffix.
  2068. !     ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  2069.     else
  2070.       ac_dir_suffix= ac_dots=
  2071.     fi
  2072. --- 1972,1992 ----
  2073.   for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
  2074.     # Support "outfile[:infile]", defaulting infile="outfile.in".
  2075.     case "$ac_file" in
  2076. !   *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
  2077. !        ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
  2078.     *) ac_file_in="${ac_file}.in" ;;
  2079.     esac
  2080.   
  2081.     # Adjust relative srcdir, etc. for subdirectories.
  2082.   
  2083.     # Remove last slash and all that follows it.  Not all systems have dirname.
  2084. !   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  2085.     if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  2086.       # The file is in a subdirectory.
  2087.       test ! -d "$ac_dir" && mkdir "$ac_dir"
  2088.       ac_dir_suffix="/$ac_dir"
  2089.       # A "../" for each directory in $ac_dir_suffix.
  2090. !     ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  2091.     else
  2092.       ac_dir_suffix= ac_dots=
  2093.     fi
  2094. ***************
  2095. *** 1989,1995 ****
  2096.     case "$ac_given_srcdir" in
  2097.     .)  srcdir=.
  2098.         if test -z "$ac_dots"; then top_srcdir=.
  2099. !       else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
  2100.     /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  2101.     *) # Relative path.
  2102.       srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  2103. --- 1994,2000 ----
  2104.     case "$ac_given_srcdir" in
  2105.     .)  srcdir=.
  2106.         if test -z "$ac_dots"; then top_srcdir=.
  2107. !       else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
  2108.     /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  2109.     *) # Relative path.
  2110.       srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  2111. ***************
  2112. *** 2002,2008 ****
  2113.     esac
  2114.     echo creating "$ac_file"
  2115.     rm -f "$ac_file"
  2116. !   configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
  2117.     case "$ac_file" in
  2118.     *Makefile*) ac_comsub="1i\\
  2119.   # $configure_input" ;;
  2120. --- 2007,2013 ----
  2121.     esac
  2122.     echo creating "$ac_file"
  2123.     rm -f "$ac_file"
  2124. !   configure_input="Generated automatically from `/bin/echo $ac_file_in|sed 's%.*/%%'` by configure."
  2125.     case "$ac_file" in
  2126.     *Makefile*) ac_comsub="1i\\
  2127.   # $configure_input" ;;
  2128. ***************
  2129. *** 2040,2047 ****
  2130.   for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then
  2131.     # Support "outfile[:infile]", defaulting infile="outfile.in".
  2132.     case "$ac_file" in
  2133. !   *:*) ac_file_in=`echo "$ac_file"|sed 's%.*:%%'`
  2134. !        ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  2135.     *) ac_file_in="${ac_file}.in" ;;
  2136.     esac
  2137.   
  2138. --- 2045,2052 ----
  2139.   for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then
  2140.     # Support "outfile[:infile]", defaulting infile="outfile.in".
  2141.     case "$ac_file" in
  2142. !   *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
  2143. !        ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
  2144.     *) ac_file_in="${ac_file}.in" ;;
  2145.     esac
  2146.   
  2147. ***************
  2148. *** 2105,2111 ****
  2149.     cat conftest.in >> conftest.h
  2150.     rm -f conftest.in
  2151.     if cmp -s $ac_file conftest.h 2>/dev/null; then
  2152. !     echo "$ac_file is unchanged"
  2153.       rm -f conftest.h
  2154.     else
  2155.       rm -f $ac_file
  2156. --- 2110,2116 ----
  2157.     cat conftest.in >> conftest.h
  2158.     rm -f conftest.in
  2159.     if cmp -s $ac_file conftest.h 2>/dev/null; then
  2160. !     /bin/echo "$ac_file is unchanged"
  2161.       rm -f conftest.h
  2162.     else
  2163.       rm -f $ac_file
  2164. diff -rc --new-file m4-1.4/configure.in /gnu/src/amiga/m4-1.4/configure.in
  2165. *** m4-1.4/configure.in    Sun Nov  6 03:40:38 1994
  2166. --- /gnu/src/amiga/m4-1.4/configure.in    Sat Nov 12 15:15:22 1994
  2167. ***************
  2168. *** 62,67 ****
  2169. --- 62,68 ----
  2170.     fi
  2171.   fi
  2172.   AC_MSG_RESULT($use_stackovf)
  2173. + use_stackovf=no  # Amiga hack - suppress use; we can't do it right yet.
  2174.   if test "$use_stackovf" = yes; then
  2175.     AC_DEFINE(USE_STACKOVF)
  2176.     STACKOVF=stackovf.${U}o
  2177. diff -rc --new-file m4-1.4/doc/m4.info-3 /gnu/src/amiga/m4-1.4/doc/m4.info-3
  2178. *** m4-1.4/doc/m4.info-3    Sun Nov  6 04:13:42 1994
  2179. --- /gnu/src/amiga/m4-1.4/doc/m4.info-3    Sat Nov 12 15:26:43 1994
  2180. ***************
  2181. *** 87,108 ****
  2182.   * forloops:                             Loops.
  2183.   * formatted output:                     Format.
  2184.   * frozen files for fast loading:        Frozen files.
  2185.   * GNU extensions:                       Extensions.
  2186.   * GNU extensions:                       Frozen files.
  2187. - * GNU extensions:                       Esyscmd.
  2188.   * GNU extensions:                       Format.
  2189. - * GNU extensions:                       Patsubst.
  2190. - * GNU extensions:                       Regexp.
  2191. - * GNU extensions:                       Undivert.
  2192. - * GNU extensions:                       Search Path.
  2193.   * GNU extensions:                       Debug Output.
  2194.   * GNU extensions:                       Debug Levels.
  2195. - * GNU extensions:                       Builtin.
  2196. - * GNU extensions:                       Indir.
  2197. - * GNU extensions:                       Arguments.
  2198.   * included files, search path for:      Search Path.
  2199. - * inclusion, of files:                  Undivert.
  2200.   * inclusion, of files:                  File Inclusion.
  2201.   * increment operator:                   Incr.
  2202.   * indirect call of builtins:            Builtin.
  2203.   * indirect call of macros:              Indir.
  2204. --- 87,108 ----
  2205.   * forloops:                             Loops.
  2206.   * formatted output:                     Format.
  2207.   * frozen files for fast loading:        Frozen files.
  2208. + * GNU extensions:                       Indir.
  2209. + * GNU extensions:                       Search Path.
  2210. + * GNU extensions:                       Undivert.
  2211. + * GNU extensions:                       Esyscmd.
  2212. + * GNU extensions:                       Regexp.
  2213. + * GNU extensions:                       Builtin.
  2214. + * GNU extensions:                       Arguments.
  2215.   * GNU extensions:                       Extensions.
  2216. + * GNU extensions:                       Patsubst.
  2217.   * GNU extensions:                       Frozen files.
  2218.   * GNU extensions:                       Format.
  2219.   * GNU extensions:                       Debug Output.
  2220.   * GNU extensions:                       Debug Levels.
  2221.   * included files, search path for:      Search Path.
  2222.   * inclusion, of files:                  File Inclusion.
  2223. + * inclusion, of files:                  Undivert.
  2224.   * increment operator:                   Incr.
  2225.   * indirect call of builtins:            Builtin.
  2226.   * indirect call of macros:              Indir.
  2227. diff -rc --new-file m4-1.4/doc/stamp-vti /gnu/src/amiga/m4-1.4/doc/stamp-vti
  2228. *** m4-1.4/doc/stamp-vti    Sun Nov  6 03:46:26 1994
  2229. --- /gnu/src/amiga/m4-1.4/doc/stamp-vti    Sat Nov 12 15:26:39 1994
  2230. ***************
  2231. *** 1 ****
  2232. ! Sat Nov  5 22:46:26 EST 1994
  2233. --- 1 ----
  2234. ! Sat Nov 12 15:26:39  1994
  2235.