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

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