home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / findutils-4.1-src.lha / findutils-4.1 / configure < prev    next >
Text File  |  1994-11-12  |  72KB  |  2,779 lines

  1. #!/bin/sh
  2.  
  3. # Guess values for system-dependent variables and create Makefiles.
  4. # Generated automatically using autoconf version 2.1 
  5. # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
  6. #
  7. # This configure script is free software; the Free Software Foundation
  8. # gives unlimited permission to copy, distribute and modify it.
  9.  
  10. # Defaults:
  11. ac_help=
  12. ac_default_prefix=/gnu
  13. # Any additions from configure.in:
  14. ac_help="$ac_help
  15.   --enable-id-cache       cache all UIDs & GIDs; avoid if using NIS or Hesiod"
  16. ac_help="$ac_help
  17.   --with-afs              support -fstype afs"
  18.  
  19. # Initialize some variables set by options.
  20. # The variables have the same names as the options, with
  21. # dashes changed to underlines.
  22. build=NONE
  23. cache_file=./config.cache
  24. exec_prefix=NONE
  25. host=NONE
  26. no_create=
  27. nonopt=NONE
  28. no_recursion=
  29. prefix=NONE
  30. program_prefix=NONE
  31. program_suffix=NONE
  32. program_transform_name=s,x,x,
  33. silent=
  34. site=
  35. srcdir=
  36. target=NONE
  37. verbose=
  38. x_includes=NONE
  39. x_libraries=NONE
  40.  
  41. # Initialize some other variables.
  42. subdirs=
  43.  
  44. ac_prev=
  45. for ac_option
  46. do
  47.  
  48.   # If the previous option needs an argument, assign it.
  49.   if test -n "$ac_prev"; then
  50.     eval "$ac_prev=\$ac_option"
  51.     ac_prev=
  52.     continue
  53.   fi
  54.  
  55.   case "$ac_option" in
  56.   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  57.   *) ac_optarg= ;;
  58.   esac
  59.  
  60.   # Accept the important Cygnus configure options, so we can diagnose typos.
  61.  
  62.   case "$ac_option" in
  63.  
  64.   -build | --build | --buil | --bui | --bu | --b)
  65.     ac_prev=build ;;
  66.   -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  67.     build="$ac_optarg" ;;
  68.  
  69.   -cache-file | --cache-file | --cache-fil | --cache-fi \
  70.   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  71.     ac_prev=cache_file ;;
  72.   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  73.   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  74.     cache_file="$ac_optarg" ;;
  75.  
  76.   -disable-* | --disable-*)
  77.     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  78.     # Reject names that are not valid shell variable names.
  79.     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  80.       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  81.     fi
  82.     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  83.     eval "enable_${ac_feature}=no" ;;
  84.  
  85.   -enable-* | --enable-*)
  86.     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  87.     # Reject names that are not valid shell variable names.
  88.     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  89.       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  90.     fi
  91.     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  92.     case "$ac_option" in
  93.       *=*) ;;
  94.       *) ac_optarg=yes ;;
  95.     esac
  96.     eval "enable_${ac_feature}='$ac_optarg'" ;;
  97.  
  98.   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  99.   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  100.   | --exec | --exe | --ex)
  101.     ac_prev=exec_prefix ;;
  102.   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  103.   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  104.   | --exec=* | --exe=* | --ex=*)
  105.     exec_prefix="$ac_optarg" ;;
  106.  
  107.   -gas | --gas | --ga | --g)
  108.     # Obsolete; use --with-gas.
  109.     with_gas=yes ;;
  110.  
  111.   -help | --help | --hel | --he)
  112.     # Omit some internal or obsolete options to make the list less imposing.
  113.     # This message is too long to be a string in the A/UX 3.1 sh.
  114.     cat << EOF
  115. Usage: configure [options] [host]
  116. Options: [defaults in brackets after descriptions]
  117. Configuration:
  118.   --cache-file=FILE       cache test results in FILE
  119.   --help                  print this message
  120.   --no-create             do not create output files
  121.   --quiet, --silent       do not print \`checking...' messages
  122.   --version               print the version of autoconf that created configure
  123. Directory and file names:
  124.   --prefix=PREFIX         install architecture-independent files in PREFIX
  125.                           [$ac_default_prefix]
  126.   --exec-prefix=PREFIX    install architecture-dependent files in PREFIX
  127.                           [same as prefix]
  128.   --srcdir=DIR            find the sources in DIR [configure dir or ..]
  129.   --program-prefix=PREFIX prepend PREFIX to installed program names
  130.   --program-suffix=SUFFIX append SUFFIX to installed program names
  131.   --program-transform-name=PROGRAM run sed PROGRAM on installed program names
  132. Host type:
  133.   --build=BUILD           configure for building on BUILD [BUILD=HOST]
  134.   --host=HOST             configure for HOST [guessed]
  135.   --target=TARGET         configure for TARGET [TARGET=HOST]
  136. Features and packages:
  137.   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  138.   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  139.   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  140.   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  141.   --x-includes=DIR        X include files are in DIR
  142.   --x-libraries=DIR       X library files are in DIR
  143. --enable and --with options recognized:$ac_help
  144. EOF
  145.     exit 0 ;;
  146.  
  147.   -host | --host | --hos | --ho)
  148.     ac_prev=host ;;
  149.   -host=* | --host=* | --hos=* | --ho=*)
  150.     host="$ac_optarg" ;;
  151.  
  152.   -nfp | --nfp | --nf)
  153.     # Obsolete; use --without-fp.
  154.     with_fp=no ;;
  155.  
  156.   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  157.   | --no-cr | --no-c)
  158.     no_create=yes ;;
  159.  
  160.   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  161.   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  162.     no_recursion=yes ;;
  163.  
  164.   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  165.     ac_prev=prefix ;;
  166.   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  167.     prefix="$ac_optarg" ;;
  168.  
  169.   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  170.   | --program-pre | --program-pr | --program-p)
  171.     ac_prev=program_prefix ;;
  172.   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  173.   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  174.     program_prefix="$ac_optarg" ;;
  175.  
  176.   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  177.   | --program-suf | --program-su | --program-s)
  178.     ac_prev=program_suffix ;;
  179.   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  180.   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  181.     program_suffix="$ac_optarg" ;;
  182.  
  183.   -program-transform-name | --program-transform-name \
  184.   | --program-transform-nam | --program-transform-na \
  185.   | --program-transform-n | --program-transform- \
  186.   | --program-transform | --program-transfor \
  187.   | --program-transfo | --program-transf \
  188.   | --program-trans | --program-tran \
  189.   | --progr-tra | --program-tr | --program-t)
  190.     ac_prev=program_transform_name ;;
  191.   -program-transform-name=* | --program-transform-name=* \
  192.   | --program-transform-nam=* | --program-transform-na=* \
  193.   | --program-transform-n=* | --program-transform-=* \
  194.   | --program-transform=* | --program-transfor=* \
  195.   | --program-transfo=* | --program-transf=* \
  196.   | --program-trans=* | --program-tran=* \
  197.   | --progr-tra=* | --program-tr=* | --program-t=*)
  198.     program_transform_name="$ac_optarg" ;;
  199.  
  200.   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  201.   | -silent | --silent | --silen | --sile | --sil)
  202.     silent=yes ;;
  203.  
  204.   -site | --site | --sit)
  205.     ac_prev=site ;;
  206.   -site=* | --site=* | --sit=*)
  207.     site="$ac_optarg" ;;
  208.  
  209.   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  210.     ac_prev=srcdir ;;
  211.   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  212.     srcdir="$ac_optarg" ;;
  213.  
  214.   -target | --target | --targe | --targ | --tar | --ta | --t)
  215.     ac_prev=target ;;
  216.   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  217.     target="$ac_optarg" ;;
  218.  
  219.   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  220.     verbose=yes ;;
  221.  
  222.   -version | --version | --versio | --versi | --vers)
  223.     echo "configure generated by autoconf version 2.1"
  224.     exit 0 ;;
  225.  
  226.   -with-* | --with-*)
  227.     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  228.     # Reject names that are not valid shell variable names.
  229.     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  230.       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  231.     fi
  232.     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  233.     case "$ac_option" in
  234.       *=*) ;;
  235.       *) ac_optarg=yes ;;
  236.     esac
  237.     eval "with_${ac_package}='$ac_optarg'" ;;
  238.  
  239.   -without-* | --without-*)
  240.     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  241.     # Reject names that are not valid shell variable names.
  242.     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  243.       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  244.     fi
  245.     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  246.     eval "with_${ac_package}=no" ;;
  247.  
  248.   --x)
  249.     # Obsolete; use --with-x.
  250.     with_x=yes ;;
  251.  
  252.   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  253.   | --x-incl | --x-inc | --x-in | --x-i)
  254.     ac_prev=x_includes ;;
  255.   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  256.   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  257.     x_includes="$ac_optarg" ;;
  258.  
  259.   -x-libraries | --x-libraries | --x-librarie | --x-librari \
  260.   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  261.     ac_prev=x_libraries ;;
  262.   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  263.   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  264.     x_libraries="$ac_optarg" ;;
  265.  
  266.   -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
  267.     ;;
  268.  
  269.   *) 
  270.     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  271.       echo "configure: warning: $ac_option: invalid host type" 1>&2
  272.     fi
  273.     if test "x$nonopt" != xNONE; then
  274.       { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
  275.     fi
  276.     nonopt="$ac_option"
  277.     ;;
  278.  
  279.   esac
  280. done
  281.  
  282. if test -n "$ac_prev"; then
  283.   { echo "configure: error: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
  284. fi
  285.  
  286. trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  287.  
  288. # File descriptor usage:
  289. # 0 unused; standard input
  290. # 1 file creation
  291. # 2 errors and warnings
  292. # 3 unused; some systems may open it to /dev/tty
  293. # 4 checking for... messages and results
  294. # 5 compiler messages saved in config.log
  295. if test "$silent" = yes; then
  296.   exec 4>/dev/null
  297. else
  298.   exec 4>&1
  299. fi
  300. exec 5>./config.log
  301.  
  302. echo "\
  303. This file contains any messages produced by compilers while
  304. running configure, to aid debugging if configure makes a mistake.
  305. " 1>&5
  306.  
  307. # Strip out --no-create and --no-recursion so they do not pile up.
  308. # Also quote any args containing shell metacharacters.
  309. ac_configure_args=
  310. for ac_arg
  311. do
  312.   case "$ac_arg" in
  313.   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  314.   | --no-cr | --no-c) ;;
  315.   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  316.   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
  317.   *" "*|*"    "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
  318.   ac_configure_args="$ac_configure_args '$ac_arg'" ;;
  319.   *) ac_configure_args="$ac_configure_args $ac_arg" ;;
  320.   esac
  321. done
  322.  
  323. # NLS nuisances.
  324. # Only set LANG and LC_ALL to C if already set.
  325. # These must not be set unconditionally because not all systems understand
  326. # e.g. LANG=C (notably SCO).
  327. if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
  328. if test "${LANG+set}"   = set; then LANG=C;   export LANG;   fi
  329.  
  330. # confdefs.h avoids OS command line length limits that DEFS can exceed.
  331. rm -rf conftest* confdefs.h
  332. # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  333. /bin/echo > confdefs.h
  334.  
  335. # A filename unique to this package, relative to the directory that
  336. # configure is in, which we can look for to find out if srcdir is correct.
  337. ac_unique_file=find/pred.c
  338.  
  339. # Find the source files, if location was not specified.
  340. if test -z "$srcdir"; then
  341.   ac_srcdir_defaulted=yes
  342.   # Try the directory containing this script, then its parent.
  343.   ac_prog=$0
  344.   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  345.   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  346.   srcdir=$ac_confdir
  347.   if test ! -r $srcdir/$ac_unique_file; then
  348.     srcdir=..
  349.   fi
  350. else
  351.   ac_srcdir_defaulted=no
  352. fi
  353. if test ! -r $srcdir/$ac_unique_file; then
  354.   if test "$ac_srcdir_defaulted" = yes; then
  355.     { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
  356.   else
  357.     { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
  358.   fi
  359. fi
  360. srcdir=`/bin/echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
  361.  
  362. # Prefer explicitly selected file to automatically selected ones.
  363. if test -z "$CONFIG_SITE"; then
  364.   if test "x$prefix" != xNONE; then
  365.     CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
  366.   else
  367.     CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
  368.   fi
  369. fi
  370. for ac_site_file in $CONFIG_SITE; do
  371.   if test -r "$ac_site_file"; then
  372.     echo "loading site script $ac_site_file"
  373.     . "$ac_site_file"
  374.   fi
  375. done
  376.  
  377. if test -r "$cache_file"; then
  378.   echo "loading cache $cache_file"
  379.   . $cache_file
  380. else
  381.   echo "creating cache $cache_file"
  382.   > $cache_file
  383. fi
  384.  
  385. ac_ext=c
  386. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  387. ac_cpp='$CPP $CPPFLAGS'
  388. ac_compile='${CC-cc} $CFLAGS $CPPFLAGS conftest.$ac_ext -c 1>&5 2>&5'
  389. ac_link='${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext -o conftest $LIBS 1>&5 2>&5'
  390.  
  391. if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
  392.   # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
  393.   if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
  394.     ac_n= ac_c='
  395. ' ac_t='    '
  396.   else
  397.     ac_n=-n ac_c= ac_t=
  398.   fi
  399. else
  400.   ac_n= ac_c='\c' ac_t=
  401. fi
  402.  
  403.  
  404.  
  405.  
  406. # Check whether --enable-id-cache or --disable-id-cache was given.
  407. enableval="$enable_id_cache"
  408. if test -n "$enableval"; then
  409.   cat >> confdefs.h <<\EOF
  410. #define CACHE_IDS 1
  411. EOF
  412.  
  413. fi
  414.  
  415. # Check whether --with-afs or --without-afs was given.
  416. withval="$with_afs"
  417. if test -n "$withval"; then
  418.     cat >> confdefs.h <<\EOF
  419. #define AFS 1
  420. EOF
  421.  
  422.   CPPFLAGS="$CPPFLAGS -I/usr/afsws/include"
  423.   LIBS="$LIBS -L/usr/afsws/lib -L/usr/afsws/lib/afs -lsys -lrx -llwp"
  424. fi
  425.  
  426. if test "$program_transform_name" = s,x,x,; then
  427.   program_transform_name=
  428. else
  429.   # Double any \ or $.
  430.   echo 's,\\,\\\\,g; s,\$,$$,g' > conftestsed
  431.   program_transform_name="`/bin/echo $program_transform_name|sed -f conftestsed`"
  432.   rm -f conftestsed
  433. fi
  434. test "$program_prefix" != NONE &&
  435.   program_transform_name="s,^,${program_prefix},; $program_transform_name"
  436. # Use a double $ so make ignores it.
  437. test "$program_suffix" != NONE &&
  438.   program_transform_name="s,\$\$,${program_suffix},; $program_transform_name"
  439.  
  440. # sed with no file args requires a program.
  441. test "$program_transform_name" = "" && program_transform_name="s,x,x,"
  442.  
  443.  
  444. # Extract the first word of "gcc", so it can be a program name with args.
  445. set dummy gcc; ac_word=$2
  446. /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  447. if eval "test \"`echo '${'ac_cv_prog_CC'+set}'`\" = set"; then
  448.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  449. else
  450.   if test -n "$CC"; then
  451.   ac_cv_prog_CC="$CC" # Let the user override the test.
  452. else
  453.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  454.   for ac_dir in $PATH; do
  455.     test -z "$ac_dir" && ac_dir=.
  456.     if test -f $ac_dir/$ac_word; then
  457.       ac_cv_prog_CC="gcc"
  458.       break
  459.     fi
  460.   done
  461.   IFS="$ac_save_ifs"
  462.   test -z "$ac_cv_prog_CC" && ac_cv_prog_CC="cc"
  463. fi
  464. fi
  465. CC="$ac_cv_prog_CC"
  466. if test -n "$CC"; then
  467.   /bin/echo "$ac_t""$CC" 1>&4
  468. else
  469.   /bin/echo "$ac_t""no" 1>&4
  470. fi
  471.  
  472.  
  473. /bin/echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&4
  474. if eval "test \"`echo '${'ac_cv_prog_gcc'+set}'`\" = set"; then
  475.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  476. else
  477.   cat > conftest.c <<EOF
  478. #ifdef __GNUC__
  479.   yes;
  480. #endif
  481. EOF
  482. if ${CC-cc} -E conftest.c 2>&5 | egrep yes >/dev/null 2>&1; then
  483.   ac_cv_prog_gcc=yes
  484. else
  485.   ac_cv_prog_gcc=no
  486. fi
  487. fi
  488. /bin/echo "$ac_t""$ac_cv_prog_gcc" 1>&4
  489. if test $ac_cv_prog_gcc = yes; then
  490.   GCC=yes
  491.   if test "${CFLAGS+set}" != set; then
  492.     /bin/echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&4
  493. if eval "test \"`echo '${'ac_cv_prog_gcc_g'+set}'`\" = set"; then
  494.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  495. else
  496.   echo 'void f(){}' > conftest.c
  497. if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
  498.   ac_cv_prog_gcc_g=yes
  499. else
  500.   ac_cv_prog_gcc_g=no
  501. fi
  502. rm -f conftest*
  503.  
  504. fi
  505.     /bin/echo "$ac_t""$ac_cv_prog_gcc_g" 1>&4
  506.     if test $ac_cv_prog_gcc_g = yes; then
  507.       # Amiga hack - suppress automatically using -g for now
  508.       # Also default to using -O2
  509.       CFLAGS="-O2"
  510.     else
  511.       CFLAGS="-O2"
  512.     fi
  513.   fi
  514. else
  515.   GCC=
  516.   test "${CFLAGS+set}" = set || CFLAGS="-g"
  517. fi
  518.  
  519. /bin/echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&4
  520. # On Suns, sometimes $CPP names a directory.
  521. if test -n "$CPP" && test -d "$CPP"; then
  522.   CPP=
  523. fi
  524. if test -z "$CPP"; then
  525. if eval "test \"`echo '${'ac_cv_prog_CPP'+set}'`\" = set"; then
  526.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  527. else
  528.     # This must be in double quotes, not single quotes, because CPP may get
  529.   # substituted into the Makefile and "${CC-cc}" will confuse make.
  530.   CPP="${CC-cc} -E"
  531.   # On the NeXT, cc -E runs the code through the compiler's parser,
  532.   # not just through cpp.
  533.   cat > conftest.$ac_ext <<EOF
  534. #line 535 "configure"
  535. #include "confdefs.h"
  536. #include <assert.h>
  537. Syntax Error
  538. EOF
  539. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  540. ac_err=`grep -v '^ *+' conftest.out`
  541. if test -z "$ac_err"; then
  542.   :
  543. else
  544.   /bin/echo "$ac_err" >&5
  545.   rm -rf conftest*
  546.   CPP="${CC-cc} -E -traditional-cpp"
  547.   cat > conftest.$ac_ext <<EOF
  548. #line 549 "configure"
  549. #include "confdefs.h"
  550. #include <assert.h>
  551. Syntax Error
  552. EOF
  553. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  554. ac_err=`grep -v '^ *+' conftest.out`
  555. if test -z "$ac_err"; then
  556.   :
  557. else
  558.   /bin/echo "$ac_err" >&5
  559.   rm -rf conftest*
  560.   CPP=/lib/cpp
  561. fi
  562. rm -f conftest*
  563. fi
  564. rm -f conftest*
  565.   ac_cv_prog_CPP="$CPP"
  566. fi
  567. fi
  568. CPP="$ac_cv_prog_CPP"
  569. /bin/echo "$ac_t""$CPP" 1>&4
  570.  
  571. ac_aux_dir=
  572. for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
  573.   if test -f $ac_dir/install-sh; then
  574.     ac_aux_dir=$ac_dir
  575.     ac_install_sh="$ac_aux_dir/install-sh -c"
  576.     break
  577.   elif test -f $ac_dir/install.sh; then
  578.     ac_aux_dir=$ac_dir
  579.     ac_install_sh="$ac_aux_dir/install.sh -c"
  580.     break
  581.   fi
  582. done
  583. if test -z "$ac_aux_dir"; then
  584.   { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
  585. fi
  586. ac_config_guess=$ac_aux_dir/config.guess
  587. ac_config_sub=$ac_aux_dir/config.sub
  588. ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
  589.  
  590. # Find a good install program.  We prefer a C program (faster),
  591. # so one script is as good as another.  But avoid the broken or
  592. # incompatible versions:
  593. # SysV /etc/install, /usr/sbin/install
  594. # SunOS /usr/etc/install
  595. # IRIX /sbin/install
  596. # AIX /bin/install
  597. # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  598. # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  599. # ./install, which can be erroneously created by make from ./install.sh.
  600. /bin/echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&4
  601. if test -z "$INSTALL"; then
  602. if eval "test \"`echo '${'ac_cv_path_install'+set}'`\" = set"; then
  603.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  604. else
  605.     IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  606.   for ac_dir in $PATH; do
  607.     case "$ac_dir" in
  608.     ''|.|/gnu/etc) ;;
  609.     *)
  610.       # OSF1 and SCO ODT 3.0 have their own names for install.
  611.       for ac_prog in ginstall installbsd scoinst install; do
  612.         if test -f $ac_dir/$ac_prog; then
  613.       if test $ac_prog = install &&
  614.             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  615.         # AIX install.  It has an incompatible calling convention.
  616.         # OSF/1 installbsd also uses dspmsg, but is usable.
  617.         :
  618.       else
  619.         ac_cv_path_install="$ac_dir/$ac_prog -c"
  620.         break 2
  621.       fi
  622.     fi
  623.       done
  624.       ;;
  625.     esac
  626.   done
  627.   IFS="$ac_save_ifs"
  628.   # As a last resort, use the slow shell script.
  629.   test -z "$ac_cv_path_install" && ac_cv_path_install="$ac_install_sh"
  630. fi
  631.   INSTALL="$ac_cv_path_install"
  632. fi
  633. /bin/echo "$ac_t""$INSTALL" 1>&4
  634.  
  635. # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  636. # It thinks the first close brace ends the variable substitution.
  637. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  638.  
  639. test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  640.  
  641. # Extract the first word of "ranlib", so it can be a program name with args.
  642. set dummy ranlib; ac_word=$2
  643. /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
  644. if eval "test \"`echo '${'ac_cv_prog_RANLIB'+set}'`\" = set"; then
  645.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  646. else
  647.   if test -n "$RANLIB"; then
  648.   ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
  649. else
  650.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  651.   for ac_dir in $PATH; do
  652.     test -z "$ac_dir" && ac_dir=.
  653.     if test -f $ac_dir/$ac_word; then
  654.       ac_cv_prog_RANLIB="ranlib"
  655.       break
  656.     fi
  657.   done
  658.   IFS="$ac_save_ifs"
  659.   test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":"
  660. fi
  661. fi
  662. RANLIB="$ac_cv_prog_RANLIB"
  663. if test -n "$RANLIB"; then
  664.   /bin/echo "$ac_t""$RANLIB" 1>&4
  665. else
  666.   /bin/echo "$ac_t""no" 1>&4
  667. fi
  668.  
  669. /bin/echo $ac_n "checking whether ${MAKE-make} sets \$MAKE""... $ac_c" 1>&4
  670. set dummy ${MAKE-make}; ac_make=$2
  671. if eval "test \"`echo '${'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
  672.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  673. else
  674.   cat > conftestmake <<\EOF
  675. all:
  676.     @/bin/echo 'ac_maketemp="${MAKE}"'
  677. EOF
  678. # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  679. eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
  680. if test -n "$ac_maketemp"; then
  681.   eval ac_cv_prog_make_${ac_make}_set=yes
  682. else
  683.   eval ac_cv_prog_make_${ac_make}_set=no
  684. fi
  685. rm -f conftestmake
  686. fi
  687. if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
  688.   /bin/echo "$ac_t""yes" 1>&4
  689.   SET_MAKE=
  690. else
  691.   /bin/echo "$ac_t""no" 1>&4
  692.   SET_MAKE="MAKE=${MAKE-make}"
  693. fi
  694.  
  695.  
  696. /bin/echo $ac_n "checking for AIX""... $ac_c" 1>&4
  697. cat > conftest.$ac_ext <<EOF
  698. #line 699 "configure"
  699. #include "confdefs.h"
  700. #ifdef _AIX
  701.   yes
  702. #endif
  703.  
  704. EOF
  705. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  706.   egrep "yes" >/dev/null 2>&1; then
  707.   rm -rf conftest*
  708.   /bin/echo "$ac_t""yes" 1>&4; cat >> confdefs.h <<\EOF
  709. #define _ALL_SOURCE 1
  710. EOF
  711.  
  712. else
  713.   rm -rf conftest*
  714.   /bin/echo "$ac_t""no" 1>&4
  715. fi
  716. rm -f conftest*
  717.  
  718.  
  719. ac_safe=`/bin/echo "minix/config.h" | tr './\055' '___'`
  720. /bin/echo $ac_n "checking for minix/config.h""... $ac_c" 1>&4
  721. if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  722.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  723. else
  724.   cat > conftest.$ac_ext <<EOF
  725. #line 726 "configure"
  726. #include "confdefs.h"
  727. #include <minix/config.h>
  728. EOF
  729. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  730. ac_err=`grep -v '^ *+' conftest.out`
  731. if test -z "$ac_err"; then
  732.   rm -rf conftest*
  733.   eval "ac_cv_header_$ac_safe=yes"
  734. else
  735.   /bin/echo "$ac_err" >&5
  736.   rm -rf conftest*
  737.   eval "ac_cv_header_$ac_safe=no"
  738. fi
  739. rm -f conftest*
  740. fi
  741. if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  742.   /bin/echo "$ac_t""yes" 1>&4
  743.   MINIX=yes
  744. else
  745.   /bin/echo "$ac_t""no" 1>&4
  746. MINIX=
  747. fi
  748.  
  749. if test "$MINIX" = yes; then
  750.   cat >> confdefs.h <<\EOF
  751. #define _POSIX_SOURCE 1
  752. EOF
  753.  
  754.   cat >> confdefs.h <<\EOF
  755. #define _POSIX_1_SOURCE 2
  756. EOF
  757.  
  758.   cat >> confdefs.h <<\EOF
  759. #define _MINIX 1
  760. EOF
  761.  
  762. fi
  763.  
  764. /bin/echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&4
  765. if test -d /gnu/etc/conf/kconfig.d &&
  766.   grep _POSIX_VERSION /gnu/include/sys/unistd.h >/dev/null 2>&1
  767. then
  768.   /bin/echo "$ac_t""yes" 1>&4
  769.   ISC=yes # If later tests want to check for ISC.
  770.   cat >> confdefs.h <<\EOF
  771. #define _POSIX_SOURCE 1
  772. EOF
  773.  
  774.   if test "$GCC" = yes; then
  775.     CC="$CC -posix"
  776.   else
  777.     CC="$CC -Xp"
  778.   fi
  779. else
  780.   /bin/echo "$ac_t""no" 1>&4
  781.   ISC=
  782. fi
  783.  
  784.  
  785. /bin/echo $ac_n "checking for -lsun""... $ac_c" 1>&4
  786. if eval "test \"`echo '${'ac_cv_lib_sun'+set}'`\" = set"; then
  787.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  788. else
  789.   ac_save_LIBS="$LIBS"
  790. LIBS="$LIBS -lsun "
  791. cat > conftest.$ac_ext <<EOF
  792. #line 793 "configure"
  793. #include "confdefs.h"
  794.  
  795. int main() { return 0; }
  796. int t() {
  797. getpwnam()
  798. ; return 0; }
  799. EOF
  800. if eval $ac_link; then
  801.   rm -rf conftest*
  802.   eval "ac_cv_lib_sun=yes"
  803. else
  804.   rm -rf conftest*
  805.   eval "ac_cv_lib_sun=no"
  806. fi
  807. rm -f conftest*
  808. LIBS="$ac_save_LIBS"
  809.  
  810. fi
  811. if eval "test \"`echo '$ac_cv_lib_'sun`\" = yes"; then
  812.   /bin/echo "$ac_t""yes" 1>&4
  813.     ac_tr_lib=HAVE_LIB`/bin/echo sun | tr '[a-z]' '[A-Z]'`
  814.   cat >> confdefs.h <<EOF
  815. #define $ac_tr_lib 1
  816. EOF
  817.  
  818.   LIBS="$LIBS -lsun"
  819.  
  820. else
  821.   /bin/echo "$ac_t""no" 1>&4
  822. fi
  823.  
  824.  
  825. for ac_hdr in fcntl.h string.h limits.h unistd.h
  826. do
  827. ac_safe=`/bin/echo "$ac_hdr" | tr './\055' '___'`
  828. /bin/echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&4
  829. if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  830.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  831. else
  832.   cat > conftest.$ac_ext <<EOF
  833. #line 834 "configure"
  834. #include "confdefs.h"
  835. #include <$ac_hdr>
  836. EOF
  837. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  838. ac_err=`grep -v '^ *+' conftest.out`
  839. if test -z "$ac_err"; then
  840.   rm -rf conftest*
  841.   eval "ac_cv_header_$ac_safe=yes"
  842. else
  843.   /bin/echo "$ac_err" >&5
  844.   rm -rf conftest*
  845.   eval "ac_cv_header_$ac_safe=no"
  846. fi
  847. rm -f conftest*
  848. fi
  849. if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  850.   /bin/echo "$ac_t""yes" 1>&4
  851.     ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
  852.   cat >> confdefs.h <<EOF
  853. #define $ac_tr_hdr 1
  854. EOF
  855.  
  856. else
  857.   /bin/echo "$ac_t""no" 1>&4
  858. fi
  859. done
  860.  
  861. # If we cannot run a trivial program, we must be cross compiling.
  862. /bin/echo $ac_n "checking whether cross-compiling""... $ac_c" 1>&4
  863. if eval "test \"`echo '${'ac_cv_c_cross'+set}'`\" = set"; then
  864.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  865. else
  866.   if test "$cross_compiling" = yes; then
  867.   ac_cv_cross=yes
  868. else
  869. cat > conftest.$ac_ext <<EOF
  870. #line 871 "configure"
  871. #include "confdefs.h"
  872. main(){return(0);}
  873. EOF
  874. eval $ac_link
  875. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  876.   ac_cv_c_cross=no
  877. else
  878.   ac_cv_c_cross=yes
  879. fi
  880. fi
  881. rm -fr conftest*
  882. fi
  883. cross_compiling=$ac_cv_c_cross
  884. /bin/echo "$ac_t""$ac_cv_c_cross" 1>&4
  885.  
  886. /bin/echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&4
  887. if eval "test \"`echo '${'ac_cv_header_stdc'+set}'`\" = set"; then
  888.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  889. else
  890.   cat > conftest.$ac_ext <<EOF
  891. #line 892 "configure"
  892. #include "confdefs.h"
  893. #include <stdlib.h>
  894. #include <stdarg.h>
  895. #include <string.h>
  896. #include <float.h>
  897. EOF
  898. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  899. ac_err=`grep -v '^ *+' conftest.out`
  900. if test -z "$ac_err"; then
  901.   rm -rf conftest*
  902.   ac_cv_header_stdc=yes
  903. else
  904.   /bin/echo "$ac_err" >&5
  905.   rm -rf conftest*
  906.   ac_cv_header_stdc=no
  907. fi
  908. rm -f conftest*
  909.  
  910. if test $ac_cv_header_stdc = yes; then
  911.   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  912. cat > conftest.$ac_ext <<EOF
  913. #line 914 "configure"
  914. #include "confdefs.h"
  915. #include <string.h>
  916. EOF
  917. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  918.   egrep "memchr" >/dev/null 2>&1; then
  919.   :
  920. else
  921.   rm -rf conftest*
  922.   ac_cv_header_stdc=no
  923. fi
  924. rm -f conftest*
  925.  
  926. fi
  927.  
  928. if test $ac_cv_header_stdc = yes; then
  929.   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  930. cat > conftest.$ac_ext <<EOF
  931. #line 932 "configure"
  932. #include "confdefs.h"
  933. #include <stdlib.h>
  934. EOF
  935. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  936.   egrep "free" >/dev/null 2>&1; then
  937.   :
  938. else
  939.   rm -rf conftest*
  940.   ac_cv_header_stdc=no
  941. fi
  942. rm -f conftest*
  943.  
  944. fi
  945.  
  946. if test $ac_cv_header_stdc = yes; then
  947.   # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  948. if test "$cross_compiling" = yes; then
  949.   ac_cv_header_stdc=no
  950. else
  951. cat > conftest.$ac_ext <<EOF
  952. #line 953 "configure"
  953. #include "confdefs.h"
  954. #include <ctype.h>
  955. #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  956. #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  957. #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
  958. int main () { int i; for (i = 0; i < 256; i++)
  959. if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
  960. exit (0); }
  961.  
  962. EOF
  963. eval $ac_link
  964. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  965.   :
  966. else
  967.   ac_cv_header_stdc=no
  968. fi
  969. fi
  970. rm -fr conftest*
  971. fi
  972. fi
  973. /bin/echo "$ac_t""$ac_cv_header_stdc" 1>&4
  974. if test $ac_cv_header_stdc = yes; then
  975.   cat >> confdefs.h <<\EOF
  976. #define STDC_HEADERS 1
  977. EOF
  978.  
  979. fi
  980.  
  981. /bin/echo $ac_n "checking whether sys/types.h defines makedev""... $ac_c" 1>&4
  982. if eval "test \"`echo '${'ac_cv_header_sys_types_h_makedev'+set}'`\" = set"; then
  983.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  984. else
  985.   cat > conftest.$ac_ext <<EOF
  986. #line 987 "configure"
  987. #include "confdefs.h"
  988. #include <sys/types.h>
  989. int main() { return 0; }
  990. int t() {
  991. return makedev(0, 0);
  992. ; return 0; }
  993. EOF
  994. if eval $ac_link; then
  995.   rm -rf conftest*
  996.   ac_cv_header_sys_types_h_makedev=yes
  997. else
  998.   rm -rf conftest*
  999.   ac_cv_header_sys_types_h_makedev=no
  1000. fi
  1001. rm -f conftest*
  1002.  
  1003.  
  1004. fi
  1005. /bin/echo "$ac_t""$ac_cv_header_sys_types_h_makedev" 1>&4
  1006.  
  1007. if test $ac_cv_header_sys_types_h_makedev = no; then
  1008. ac_safe=`/bin/echo "sys/mkdev.h" | tr './\055' '___'`
  1009. /bin/echo $ac_n "checking for sys/mkdev.h""... $ac_c" 1>&4
  1010. if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  1011.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1012. else
  1013.   cat > conftest.$ac_ext <<EOF
  1014. #line 1015 "configure"
  1015. #include "confdefs.h"
  1016. #include <sys/mkdev.h>
  1017. EOF
  1018. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1019. ac_err=`grep -v '^ *+' conftest.out`
  1020. if test -z "$ac_err"; then
  1021.   rm -rf conftest*
  1022.   eval "ac_cv_header_$ac_safe=yes"
  1023. else
  1024.   /bin/echo "$ac_err" >&5
  1025.   rm -rf conftest*
  1026.   eval "ac_cv_header_$ac_safe=no"
  1027. fi
  1028. rm -f conftest*
  1029. fi
  1030. if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  1031.   /bin/echo "$ac_t""yes" 1>&4
  1032.   cat >> confdefs.h <<\EOF
  1033. #define MAJOR_IN_MKDEV 1
  1034. EOF
  1035.  
  1036. else
  1037.   /bin/echo "$ac_t""no" 1>&4
  1038. fi
  1039.  
  1040.  
  1041.   if test $ac_cv_header_sys_mkdev_h = no; then
  1042. ac_safe=`/bin/echo "sys/sysmacros.h" | tr './\055' '___'`
  1043. /bin/echo $ac_n "checking for sys/sysmacros.h""... $ac_c" 1>&4
  1044. if eval "test \"`echo '${'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  1045.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1046. else
  1047.   cat > conftest.$ac_ext <<EOF
  1048. #line 1049 "configure"
  1049. #include "confdefs.h"
  1050. #include <sys/sysmacros.h>
  1051. EOF
  1052. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1053. ac_err=`grep -v '^ *+' conftest.out`
  1054. if test -z "$ac_err"; then
  1055.   rm -rf conftest*
  1056.   eval "ac_cv_header_$ac_safe=yes"
  1057. else
  1058.   /bin/echo "$ac_err" >&5
  1059.   rm -rf conftest*
  1060.   eval "ac_cv_header_$ac_safe=no"
  1061. fi
  1062. rm -f conftest*
  1063. fi
  1064. if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  1065.   /bin/echo "$ac_t""yes" 1>&4
  1066.   cat >> confdefs.h <<\EOF
  1067. #define MAJOR_IN_SYSMACROS 1
  1068. EOF
  1069.  
  1070. else
  1071.   /bin/echo "$ac_t""no" 1>&4
  1072. fi
  1073.  
  1074.   fi
  1075. fi
  1076.  
  1077. ac_header_dirent=no
  1078. for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h
  1079. do
  1080. ac_safe=`/bin/echo "$ac_hdr" | tr './\055' '___'`
  1081. /bin/echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&4
  1082. if eval "test \"`echo '${'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then
  1083.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1084. else
  1085.   cat > conftest.$ac_ext <<EOF
  1086. #line 1087 "configure"
  1087. #include "confdefs.h"
  1088. #include <sys/types.h>
  1089. #include <$ac_hdr>
  1090. int main() { return 0; }
  1091. int t() {
  1092. DIR *dirp = 0;
  1093. ; return 0; }
  1094. EOF
  1095. if eval $ac_compile; then
  1096.   rm -rf conftest*
  1097.   eval "ac_cv_header_dirent_$ac_safe=yes"
  1098. else
  1099.   rm -rf conftest*
  1100.   eval "ac_cv_header_dirent_$ac_safe=no"
  1101. fi
  1102. rm -f conftest*
  1103.  
  1104. fi
  1105. if eval "test \"`echo '$ac_cv_header_dirent_'$ac_safe`\" = yes"; then
  1106.   /bin/echo "$ac_t""yes" 1>&4
  1107.     ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./\055' '[A-Z]___'`
  1108.   cat >> confdefs.h <<EOF
  1109. #define $ac_tr_hdr 1
  1110. EOF
  1111.  ac_header_dirent=$ac_hdr; break
  1112. else
  1113.   /bin/echo "$ac_t""no" 1>&4
  1114. fi
  1115. done
  1116. # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
  1117. if test $ac_header_dirent = dirent.h; then
  1118. /bin/echo $ac_n "checking for -ldir""... $ac_c" 1>&4
  1119. if eval "test \"`echo '${'ac_cv_lib_dir'+set}'`\" = set"; then
  1120.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1121. else
  1122.   ac_save_LIBS="$LIBS"
  1123. LIBS="$LIBS -ldir "
  1124. cat > conftest.$ac_ext <<EOF
  1125. #line 1126 "configure"
  1126. #include "confdefs.h"
  1127.  
  1128. int main() { return 0; }
  1129. int t() {
  1130. opendir()
  1131. ; return 0; }
  1132. EOF
  1133. if eval $ac_link; then
  1134.   rm -rf conftest*
  1135.   eval "ac_cv_lib_dir=yes"
  1136. else
  1137.   rm -rf conftest*
  1138.   eval "ac_cv_lib_dir=no"
  1139. fi
  1140. rm -f conftest*
  1141. LIBS="$ac_save_LIBS"
  1142.  
  1143. fi
  1144. if eval "test \"`echo '$ac_cv_lib_'dir`\" = yes"; then
  1145.   /bin/echo "$ac_t""yes" 1>&4
  1146.   LIBS="$LIBS -ldir"
  1147. else
  1148.   /bin/echo "$ac_t""no" 1>&4
  1149. fi
  1150.  
  1151. else
  1152. /bin/echo $ac_n "checking for -lx""... $ac_c" 1>&4
  1153. if eval "test \"`echo '${'ac_cv_lib_x'+set}'`\" = set"; then
  1154.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1155. else
  1156.   ac_save_LIBS="$LIBS"
  1157. LIBS="$LIBS -lx "
  1158. cat > conftest.$ac_ext <<EOF
  1159. #line 1160 "configure"
  1160. #include "confdefs.h"
  1161.  
  1162. int main() { return 0; }
  1163. int t() {
  1164. opendir()
  1165. ; return 0; }
  1166. EOF
  1167. if eval $ac_link; then
  1168.   rm -rf conftest*
  1169.   eval "ac_cv_lib_x=yes"
  1170. else
  1171.   rm -rf conftest*
  1172.   eval "ac_cv_lib_x=no"
  1173. fi
  1174. rm -f conftest*
  1175. LIBS="$ac_save_LIBS"
  1176.  
  1177. fi
  1178. if eval "test \"`echo '$ac_cv_lib_'x`\" = yes"; then
  1179.   /bin/echo "$ac_t""yes" 1>&4
  1180.   LIBS="$LIBS -lx"
  1181. else
  1182.   /bin/echo "$ac_t""no" 1>&4
  1183. fi
  1184.  
  1185. fi
  1186.  
  1187. /bin/echo $ac_n "checking whether stat file-mode macros are broken""... $ac_c" 1>&4
  1188. if eval "test \"`echo '${'ac_cv_header_stat_broken'+set}'`\" = set"; then
  1189.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1190. else
  1191.   cat > conftest.$ac_ext <<EOF
  1192. #line 1193 "configure"
  1193. #include "confdefs.h"
  1194. #include <sys/types.h>
  1195. #include <sys/stat.h>
  1196. #ifdef S_ISBLK
  1197. # if S_ISBLK (S_IFDIR)
  1198. You lose.
  1199. # endif
  1200. # ifdef S_IFCHR
  1201. #  if S_ISBLK (S_IFCHR)
  1202. You lose.
  1203. #  endif
  1204. # endif
  1205. #endif
  1206.  
  1207. #ifdef S_ISLNK
  1208. # if S_ISLNK (S_IFREG)
  1209. You lose.
  1210. # endif
  1211. #endif
  1212.  
  1213. #ifdef S_ISSOCK
  1214. # if S_ISSOCK (S_IFREG)
  1215. You lose.
  1216. # endif
  1217. #endif
  1218.  
  1219. EOF
  1220. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1221.   egrep "You lose" >/dev/null 2>&1; then
  1222.   rm -rf conftest*
  1223.   ac_cv_header_stat_broken=yes
  1224. else
  1225.   rm -rf conftest*
  1226.   ac_cv_header_stat_broken=no
  1227. fi
  1228. rm -f conftest*
  1229.  
  1230. fi
  1231. /bin/echo "$ac_t""$ac_cv_header_stat_broken" 1>&4
  1232. if test $ac_cv_header_stat_broken = yes; then
  1233.   cat >> confdefs.h <<\EOF
  1234. #define STAT_MACROS_BROKEN 1
  1235. EOF
  1236.  
  1237. fi
  1238.  
  1239. /bin/echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&4
  1240. if eval "test \"`echo '${'ac_cv_header_sys_wait_h'+set}'`\" = set"; then
  1241.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1242. else
  1243.   cat > conftest.$ac_ext <<EOF
  1244. #line 1245 "configure"
  1245. #include "confdefs.h"
  1246. #include <sys/types.h>
  1247. #include <sys/wait.h>
  1248. #ifndef WEXITSTATUS
  1249. #define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
  1250. #endif
  1251. #ifndef WIFEXITED
  1252. #define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
  1253. #endif
  1254. int main() { return 0; }
  1255. int t() {
  1256. int s;
  1257. wait (&s);
  1258. s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
  1259. ; return 0; }
  1260. EOF
  1261. if eval $ac_compile; then
  1262.   rm -rf conftest*
  1263.   ac_cv_header_sys_wait_h=yes
  1264. else
  1265.   rm -rf conftest*
  1266.   ac_cv_header_sys_wait_h=no
  1267. fi
  1268. rm -f conftest*
  1269.  
  1270. fi
  1271. /bin/echo "$ac_t""$ac_cv_header_sys_wait_h" 1>&4
  1272. if test $ac_cv_header_sys_wait_h = yes; then
  1273.   cat >> confdefs.h <<\EOF
  1274. #define HAVE_SYS_WAIT_H 1
  1275. EOF
  1276.  
  1277. fi
  1278.  
  1279.  
  1280. /bin/echo $ac_n "checking how to get filesystem type""... $ac_c" 1>&4
  1281. fstype=no
  1282. # The order of these tests is important.
  1283. cat > conftest.$ac_ext <<EOF
  1284. #line 1285 "configure"
  1285. #include "confdefs.h"
  1286. #include <sys/statvfs.h>
  1287. #include <sys/fstyp.h>
  1288. EOF
  1289. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1290. ac_err=`grep -v '^ *+' conftest.out`
  1291. if test -z "$ac_err"; then
  1292.   rm -rf conftest*
  1293.   cat >> confdefs.h <<\EOF
  1294. #define FSTYPE_STATVFS 1
  1295. EOF
  1296.  fstype=SVR4
  1297. else
  1298.   /bin/echo "$ac_err" >&5
  1299. fi
  1300. rm -f conftest*
  1301. if test $fstype = no; then
  1302. cat > conftest.$ac_ext <<EOF
  1303. #line 1304 "configure"
  1304. #include "confdefs.h"
  1305. #include <sys/statfs.h>
  1306. #include <sys/fstyp.h>
  1307. EOF
  1308. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1309. ac_err=`grep -v '^ *+' conftest.out`
  1310. if test -z "$ac_err"; then
  1311.   rm -rf conftest*
  1312.   cat >> confdefs.h <<\EOF
  1313. #define FSTYPE_USG_STATFS 1
  1314. EOF
  1315.  fstype=SVR3
  1316. else
  1317.   /bin/echo "$ac_err" >&5
  1318. fi
  1319. rm -f conftest*
  1320. fi
  1321. if test $fstype = no; then
  1322. cat > conftest.$ac_ext <<EOF
  1323. #line 1324 "configure"
  1324. #include "confdefs.h"
  1325. #include <sys/statfs.h>
  1326. #include <sys/vmount.h>
  1327. EOF
  1328. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1329. ac_err=`grep -v '^ *+' conftest.out`
  1330. if test -z "$ac_err"; then
  1331.   rm -rf conftest*
  1332.   cat >> confdefs.h <<\EOF
  1333. #define FSTYPE_AIX_STATFS 1
  1334. EOF
  1335.  fstype=AIX
  1336. else
  1337.   /bin/echo "$ac_err" >&5
  1338. fi
  1339. rm -f conftest*
  1340. fi
  1341. if test $fstype = no; then  
  1342. cat > conftest.$ac_ext <<EOF
  1343. #line 1344 "configure"
  1344. #include "confdefs.h"
  1345. #include <mntent.h>
  1346. EOF
  1347. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1348. ac_err=`grep -v '^ *+' conftest.out`
  1349. if test -z "$ac_err"; then
  1350.   rm -rf conftest*
  1351.   cat >> confdefs.h <<\EOF
  1352. #define FSTYPE_MNTENT 1
  1353. EOF
  1354.  fstype=4.3BSD
  1355. else
  1356.   /bin/echo "$ac_err" >&5
  1357. fi
  1358. rm -f conftest*
  1359. fi
  1360. if test $fstype = no; then  
  1361. cat > conftest.$ac_ext <<EOF
  1362. #line 1363 "configure"
  1363. #include "confdefs.h"
  1364. #include <sys/mount.h>
  1365. EOF
  1366. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1367.   egrep "f_type;" >/dev/null 2>&1; then
  1368.   rm -rf conftest*
  1369.   cat >> confdefs.h <<\EOF
  1370. #define FSTYPE_STATFS 1
  1371. EOF
  1372.  fstype=4.4BSD/OSF1
  1373. fi
  1374. rm -f conftest*
  1375.  
  1376. fi
  1377. if test $fstype = no; then  
  1378. cat > conftest.$ac_ext <<EOF
  1379. #line 1380 "configure"
  1380. #include "confdefs.h"
  1381. #include <sys/mount.h>
  1382. #include <sys/fs_types.h>
  1383. EOF
  1384. eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1385. ac_err=`grep -v '^ *+' conftest.out`
  1386. if test -z "$ac_err"; then
  1387.   rm -rf conftest*
  1388.   cat >> confdefs.h <<\EOF
  1389. #define FSTYPE_GETMNT 1
  1390. EOF
  1391.  fstype=Ultrix
  1392. else
  1393.   /bin/echo "$ac_err" >&5
  1394. fi
  1395. rm -f conftest*
  1396. fi
  1397. /bin/echo "$ac_t""$fstype" 1>&4
  1398.  
  1399.  
  1400. /bin/echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&4
  1401. if eval "test \"`echo '${'ac_cv_type_uid_t'+set}'`\" = set"; then
  1402.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1403. else
  1404.   cat > conftest.$ac_ext <<EOF
  1405. #line 1406 "configure"
  1406. #include "confdefs.h"
  1407. #include <sys/types.h>
  1408. EOF
  1409. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1410.   egrep "uid_t" >/dev/null 2>&1; then
  1411.   rm -rf conftest*
  1412.   ac_cv_type_uid_t=yes
  1413. else
  1414.   rm -rf conftest*
  1415.   ac_cv_type_uid_t=no
  1416. fi
  1417. rm -f conftest*
  1418.  
  1419. fi
  1420. /bin/echo "$ac_t""$ac_cv_type_uid_t" 1>&4
  1421. if test $ac_cv_type_uid_t = no; then
  1422.   cat >> confdefs.h <<\EOF
  1423. #define uid_t int
  1424. EOF
  1425.  
  1426.   cat >> confdefs.h <<\EOF
  1427. #define gid_t int
  1428. EOF
  1429.  
  1430. fi
  1431.  
  1432. /bin/echo $ac_n "checking for size_t""... $ac_c" 1>&4
  1433. if eval "test \"`echo '${'ac_cv_type_size_t'+set}'`\" = set"; then
  1434.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1435. else
  1436.   cat > conftest.$ac_ext <<EOF
  1437. #line 1438 "configure"
  1438. #include "confdefs.h"
  1439. #include <sys/types.h>
  1440. #if STDC_HEADERS
  1441. #include <stdlib.h>
  1442. #endif
  1443. EOF
  1444. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1445.   egrep "size_t" >/dev/null 2>&1; then
  1446.   rm -rf conftest*
  1447.   ac_cv_type_size_t=yes
  1448. else
  1449.   rm -rf conftest*
  1450.   ac_cv_type_size_t=no
  1451. fi
  1452. rm -f conftest*
  1453.  
  1454. fi
  1455. /bin/echo "$ac_t""$ac_cv_type_size_t" 1>&4
  1456. if test $ac_cv_type_size_t = no; then
  1457.   cat >> confdefs.h <<\EOF
  1458. #define size_t unsigned
  1459. EOF
  1460.  
  1461. fi
  1462.  
  1463. /bin/echo $ac_n "checking for pid_t""... $ac_c" 1>&4
  1464. if eval "test \"`echo '${'ac_cv_type_pid_t'+set}'`\" = set"; then
  1465.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1466. else
  1467.   cat > conftest.$ac_ext <<EOF
  1468. #line 1469 "configure"
  1469. #include "confdefs.h"
  1470. #include <sys/types.h>
  1471. #if STDC_HEADERS
  1472. #include <stdlib.h>
  1473. #endif
  1474. EOF
  1475. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1476.   egrep "pid_t" >/dev/null 2>&1; then
  1477.   rm -rf conftest*
  1478.   ac_cv_type_pid_t=yes
  1479. else
  1480.   rm -rf conftest*
  1481.   ac_cv_type_pid_t=no
  1482. fi
  1483. rm -f conftest*
  1484.  
  1485. fi
  1486. /bin/echo "$ac_t""$ac_cv_type_pid_t" 1>&4
  1487. if test $ac_cv_type_pid_t = no; then
  1488.   cat >> confdefs.h <<\EOF
  1489. #define pid_t int
  1490. EOF
  1491.  
  1492. fi
  1493.  
  1494. /bin/echo $ac_n "checking for ino_t""... $ac_c" 1>&4
  1495. if eval "test \"`echo '${'ac_cv_type_ino_t'+set}'`\" = set"; then
  1496.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1497. else
  1498.   cat > conftest.$ac_ext <<EOF
  1499. #line 1500 "configure"
  1500. #include "confdefs.h"
  1501. #include <sys/types.h>
  1502. #if STDC_HEADERS
  1503. #include <stdlib.h>
  1504. #endif
  1505. EOF
  1506. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1507.   egrep "ino_t" >/dev/null 2>&1; then
  1508.   rm -rf conftest*
  1509.   ac_cv_type_ino_t=yes
  1510. else
  1511.   rm -rf conftest*
  1512.   ac_cv_type_ino_t=no
  1513. fi
  1514. rm -f conftest*
  1515.  
  1516. fi
  1517. /bin/echo "$ac_t""$ac_cv_type_ino_t" 1>&4
  1518. if test $ac_cv_type_ino_t = no; then
  1519.   cat >> confdefs.h <<\EOF
  1520. #define ino_t unsigned long
  1521. EOF
  1522.  
  1523. fi
  1524.  
  1525. /bin/echo $ac_n "checking for dev_t""... $ac_c" 1>&4
  1526. if eval "test \"`echo '${'ac_cv_type_dev_t'+set}'`\" = set"; then
  1527.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1528. else
  1529.   cat > conftest.$ac_ext <<EOF
  1530. #line 1531 "configure"
  1531. #include "confdefs.h"
  1532. #include <sys/types.h>
  1533. #if STDC_HEADERS
  1534. #include <stdlib.h>
  1535. #endif
  1536. EOF
  1537. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1538.   egrep "dev_t" >/dev/null 2>&1; then
  1539.   rm -rf conftest*
  1540.   ac_cv_type_dev_t=yes
  1541. else
  1542.   rm -rf conftest*
  1543.   ac_cv_type_dev_t=no
  1544. fi
  1545. rm -f conftest*
  1546.  
  1547. fi
  1548. /bin/echo "$ac_t""$ac_cv_type_dev_t" 1>&4
  1549. if test $ac_cv_type_dev_t = no; then
  1550.   cat >> confdefs.h <<\EOF
  1551. #define dev_t unsigned long
  1552. EOF
  1553.  
  1554. fi
  1555.  
  1556. /bin/echo $ac_n "checking for st_blocks in struct stat""... $ac_c" 1>&4
  1557. if eval "test \"`echo '${'ac_cv_struct_st_blocks'+set}'`\" = set"; then
  1558.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1559. else
  1560.   cat > conftest.$ac_ext <<EOF
  1561. #line 1562 "configure"
  1562. #include "confdefs.h"
  1563. #include <sys/types.h>
  1564. #include <sys/stat.h>
  1565. int main() { return 0; }
  1566. int t() {
  1567. struct stat s; s.st_blocks;
  1568. ; return 0; }
  1569. EOF
  1570. if eval $ac_compile; then
  1571.   rm -rf conftest*
  1572.   ac_cv_struct_st_blocks=yes
  1573. else
  1574.   rm -rf conftest*
  1575.   ac_cv_struct_st_blocks=no
  1576. fi
  1577. rm -f conftest*
  1578.  
  1579. fi
  1580. /bin/echo "$ac_t""$ac_cv_struct_st_blocks" 1>&4
  1581. if test $ac_cv_struct_st_blocks = yes; then
  1582.   cat >> confdefs.h <<\EOF
  1583. #define HAVE_ST_BLOCKS 1
  1584. EOF
  1585.  
  1586. else
  1587.   LIBOBJS="$LIBOBJS fileblocks.o"
  1588. fi
  1589.  
  1590. /bin/echo $ac_n "checking for st_rdev in struct stat""... $ac_c" 1>&4
  1591. if eval "test \"`echo '${'ac_cv_struct_st_rdev'+set}'`\" = set"; then
  1592.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1593. else
  1594.   cat > conftest.$ac_ext <<EOF
  1595. #line 1596 "configure"
  1596. #include "confdefs.h"
  1597. #include <sys/types.h>
  1598. #include <sys/stat.h>
  1599. int main() { return 0; }
  1600. int t() {
  1601. struct stat s; s.st_rdev;
  1602. ; return 0; }
  1603. EOF
  1604. if eval $ac_compile; then
  1605.   rm -rf conftest*
  1606.   ac_cv_struct_st_rdev=yes
  1607. else
  1608.   rm -rf conftest*
  1609.   ac_cv_struct_st_rdev=no
  1610. fi
  1611. rm -f conftest*
  1612.  
  1613. fi
  1614. /bin/echo "$ac_t""$ac_cv_struct_st_rdev" 1>&4
  1615. if test $ac_cv_struct_st_rdev = yes; then
  1616.   cat >> confdefs.h <<\EOF
  1617. #define HAVE_ST_RDEV 1
  1618. EOF
  1619.  
  1620. fi
  1621.  
  1622. /bin/echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&4
  1623. if eval "test \"`echo '${'ac_cv_struct_tm'+set}'`\" = set"; then
  1624.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1625. else
  1626.   cat > conftest.$ac_ext <<EOF
  1627. #line 1628 "configure"
  1628. #include "confdefs.h"
  1629. #include <sys/types.h>
  1630. #include <time.h>
  1631. int main() { return 0; }
  1632. int t() {
  1633. struct tm *tp; tp->tm_sec;
  1634. ; return 0; }
  1635. EOF
  1636. if eval $ac_compile; then
  1637.   rm -rf conftest*
  1638.   ac_cv_struct_tm=time.h
  1639. else
  1640.   rm -rf conftest*
  1641.   ac_cv_struct_tm=sys/time.h
  1642. fi
  1643. rm -f conftest*
  1644.  
  1645. fi
  1646. /bin/echo "$ac_t""$ac_cv_struct_tm" 1>&4
  1647. if test $ac_cv_struct_tm = sys/time.h; then
  1648.   cat >> confdefs.h <<\EOF
  1649. #define TM_IN_SYS_TIME 1
  1650. EOF
  1651.  
  1652. fi
  1653.  
  1654. /bin/echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&4
  1655. if eval "test \"`echo '${'ac_cv_struct_tm_zone'+set}'`\" = set"; then
  1656.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1657. else
  1658.   cat > conftest.$ac_ext <<EOF
  1659. #line 1660 "configure"
  1660. #include "confdefs.h"
  1661. #include <sys/types.h>
  1662. #include <$ac_cv_struct_tm>
  1663. int main() { return 0; }
  1664. int t() {
  1665. struct tm tm; tm.tm_zone;
  1666. ; return 0; }
  1667. EOF
  1668. if eval $ac_compile; then
  1669.   rm -rf conftest*
  1670.   ac_cv_struct_tm_zone=yes
  1671. else
  1672.   rm -rf conftest*
  1673.   ac_cv_struct_tm_zone=no
  1674. fi
  1675. rm -f conftest*
  1676.  
  1677. fi
  1678. /bin/echo "$ac_t""$ac_cv_struct_tm_zone" 1>&4
  1679. if test "$ac_cv_struct_tm_zone" = yes; then
  1680.   cat >> confdefs.h <<\EOF
  1681. #define HAVE_TM_ZONE 1
  1682. EOF
  1683.  
  1684. else
  1685.   /bin/echo $ac_n "checking for tzname""... $ac_c" 1>&4
  1686. if eval "test \"`echo '${'ac_cv_var_tzname'+set}'`\" = set"; then
  1687.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1688. else
  1689.   cat > conftest.$ac_ext <<EOF
  1690. #line 1691 "configure"
  1691. #include "confdefs.h"
  1692. #include <time.h>
  1693. #ifndef tzname /* For SGI.  */
  1694. extern char *tzname[]; /* RS6000 and others reject char **tzname.  */
  1695. #endif
  1696. int main() { return 0; }
  1697. int t() {
  1698. atoi(*tzname);
  1699. ; return 0; }
  1700. EOF
  1701. if eval $ac_link; then
  1702.   rm -rf conftest*
  1703.   ac_cv_var_tzname=yes
  1704. else
  1705.   rm -rf conftest*
  1706.   ac_cv_var_tzname=no
  1707. fi
  1708. rm -f conftest*
  1709.  
  1710. fi
  1711.   /bin/echo "$ac_t""$ac_cv_var_tzname" 1>&4
  1712.   if test $ac_cv_var_tzname = yes; then
  1713.     cat >> confdefs.h <<\EOF
  1714. #define HAVE_TZNAME 1
  1715. EOF
  1716.  
  1717.   fi
  1718. fi
  1719.  
  1720. /bin/echo $ac_n "checking for working const""... $ac_c" 1>&4
  1721. if eval "test \"`echo '${'ac_cv_c_const'+set}'`\" = set"; then
  1722.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1723. else
  1724.   cat > conftest.$ac_ext <<EOF
  1725. #line 1726 "configure"
  1726. #include "confdefs.h"
  1727.  
  1728. int main() { return 0; }
  1729. int t() {
  1730.  
  1731. /* Ultrix mips cc rejects this.  */
  1732. typedef int charset[2]; const charset x;
  1733. /* SunOS 4.1.1 cc rejects this.  */
  1734. char const *const *ccp;
  1735. char **p;
  1736. /* NEC SVR4.0.2 mips cc rejects this.  */
  1737. struct point {int x, y;};
  1738. static struct point const zero;
  1739. /* AIX XL C 1.02.0.0 rejects this.
  1740.    It does not let you subtract one const X* pointer from another in an arm
  1741.    of an if-expression whose if-part is not a constant expression */
  1742. const char *g = "string";
  1743. ccp = &g + (g ? g-g : 0);
  1744. /* HPUX 7.0 cc rejects these. */
  1745. ++ccp;
  1746. p = (char**) ccp;
  1747. ccp = (char const *const *) p;
  1748. { /* SCO 3.2v4 cc rejects this.  */
  1749.   char *t;
  1750.   char const *s = 0 ? (char *) 0 : (char const *) 0;
  1751.  
  1752.   *t++ = 0;
  1753. }
  1754. { /* Someone thinks the Sun supposedly-ANSI compiler will reject this.  */
  1755.   int x[] = {25, 17};
  1756.   const int *foo = &x[0];
  1757.   ++foo;
  1758. }
  1759. { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
  1760.   typedef const int *iptr;
  1761.   iptr p = 0;
  1762.   ++p;
  1763. }
  1764. { /* AIX XL C 1.02.0.0 rejects this saying
  1765.      "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
  1766.   struct s { int j; const int *ap[3]; };
  1767.   struct s *b; b->j = 5;
  1768. }
  1769. { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
  1770.   const int foo = 10;
  1771. }
  1772.  
  1773. ; return 0; }
  1774. EOF
  1775. if eval $ac_compile; then
  1776.   rm -rf conftest*
  1777.   ac_cv_c_const=yes
  1778. else
  1779.   rm -rf conftest*
  1780.   ac_cv_c_const=no
  1781. fi
  1782. rm -f conftest*
  1783.  
  1784. fi
  1785. /bin/echo "$ac_t""$ac_cv_c_const" 1>&4
  1786. if test $ac_cv_c_const = no; then
  1787.   cat >> confdefs.h <<\EOF
  1788. #define const 
  1789. EOF
  1790.  
  1791. fi
  1792.  
  1793.  
  1794.  
  1795. for ac_func in memcmp memset mktime stpcpy strdup strftime strspn strstr strtol
  1796. do
  1797. /bin/echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
  1798. if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
  1799.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1800. else
  1801.   cat > conftest.$ac_ext <<EOF
  1802. #line 1803 "configure"
  1803. #include "confdefs.h"
  1804. #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1805. /* Override any gcc2 internal prototype to avoid an error.  */
  1806. char $ac_func(); 
  1807.  
  1808. int main() { return 0; }
  1809. int t() {
  1810.  
  1811. /* The GNU C library defines this for functions which it implements
  1812.     to always fail with ENOSYS.  Some functions are actually named
  1813.     something starting with __ and the normal name is an alias.  */
  1814. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  1815. choke me
  1816. #else
  1817. $ac_func();
  1818. #endif
  1819.  
  1820. ; return 0; }
  1821. EOF
  1822. if eval $ac_link; then
  1823.   rm -rf conftest*
  1824.   eval "ac_cv_func_$ac_func=yes"
  1825. else
  1826.   rm -rf conftest*
  1827.   eval "ac_cv_func_$ac_func=no"
  1828. fi
  1829. rm -f conftest*
  1830.  
  1831. fi
  1832. if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  1833.   /bin/echo "$ac_t""yes" 1>&4
  1834.   :
  1835. else
  1836.   /bin/echo "$ac_t""no" 1>&4
  1837. LIBOBJS="$LIBOBJS ${ac_func}.o"
  1838. fi
  1839.  
  1840. done
  1841.  
  1842. for ac_func in fchdir getcwd strerror
  1843. do
  1844. /bin/echo $ac_n "checking for $ac_func""... $ac_c" 1>&4
  1845. if eval "test \"`echo '${'ac_cv_func_$ac_func'+set}'`\" = set"; then
  1846.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1847. else
  1848.   cat > conftest.$ac_ext <<EOF
  1849. #line 1850 "configure"
  1850. #include "confdefs.h"
  1851. #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1852. /* Override any gcc2 internal prototype to avoid an error.  */
  1853. char $ac_func(); 
  1854.  
  1855. int main() { return 0; }
  1856. int t() {
  1857.  
  1858. /* The GNU C library defines this for functions which it implements
  1859.     to always fail with ENOSYS.  Some functions are actually named
  1860.     something starting with __ and the normal name is an alias.  */
  1861. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  1862. choke me
  1863. #else
  1864. $ac_func();
  1865. #endif
  1866.  
  1867. ; return 0; }
  1868. EOF
  1869. if eval $ac_link; then
  1870.   rm -rf conftest*
  1871.   eval "ac_cv_func_$ac_func=yes"
  1872. else
  1873.   rm -rf conftest*
  1874.   eval "ac_cv_func_$ac_func=no"
  1875. fi
  1876. rm -f conftest*
  1877.  
  1878. fi
  1879. if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  1880.   /bin/echo "$ac_t""yes" 1>&4
  1881.     ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
  1882.   cat >> confdefs.h <<EOF
  1883. #define $ac_tr_func 1
  1884. EOF
  1885.  
  1886. else
  1887.   /bin/echo "$ac_t""no" 1>&4
  1888. fi
  1889. done
  1890.  
  1891. # strftime is in -lintl on SCO UNIX.
  1892. /bin/echo $ac_n "checking for -lintl""... $ac_c" 1>&4
  1893. if eval "test \"`echo '${'ac_cv_lib_intl'+set}'`\" = set"; then
  1894.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1895. else
  1896.   ac_save_LIBS="$LIBS"
  1897. LIBS="$LIBS -lintl "
  1898. cat > conftest.$ac_ext <<EOF
  1899. #line 1900 "configure"
  1900. #include "confdefs.h"
  1901.  
  1902. int main() { return 0; }
  1903. int t() {
  1904. strftime()
  1905. ; return 0; }
  1906. EOF
  1907. if eval $ac_link; then
  1908.   rm -rf conftest*
  1909.   eval "ac_cv_lib_intl=yes"
  1910. else
  1911.   rm -rf conftest*
  1912.   eval "ac_cv_lib_intl=no"
  1913. fi
  1914. rm -f conftest*
  1915. LIBS="$ac_save_LIBS"
  1916.  
  1917. fi
  1918. if eval "test \"`echo '$ac_cv_lib_'intl`\" = yes"; then
  1919.   /bin/echo "$ac_t""yes" 1>&4
  1920.   LIBS="$LIBS -lintl"
  1921. else
  1922.   /bin/echo "$ac_t""no" 1>&4
  1923. fi
  1924.  
  1925. /bin/echo $ac_n "checking for strftime""... $ac_c" 1>&4
  1926. if eval "test \"`echo '${'ac_cv_func_strftime'+set}'`\" = set"; then
  1927.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1928. else
  1929.   cat > conftest.$ac_ext <<EOF
  1930. #line 1931 "configure"
  1931. #include "confdefs.h"
  1932. #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1933. /* Override any gcc2 internal prototype to avoid an error.  */
  1934. char strftime(); 
  1935.  
  1936. int main() { return 0; }
  1937. int t() {
  1938.  
  1939. /* The GNU C library defines this for functions which it implements
  1940.     to always fail with ENOSYS.  Some functions are actually named
  1941.     something starting with __ and the normal name is an alias.  */
  1942. #if defined (__stub_strftime) || defined (__stub___strftime)
  1943. choke me
  1944. #else
  1945. strftime();
  1946. #endif
  1947.  
  1948. ; return 0; }
  1949. EOF
  1950. if eval $ac_link; then
  1951.   rm -rf conftest*
  1952.   eval "ac_cv_func_strftime=yes"
  1953. else
  1954.   rm -rf conftest*
  1955.   eval "ac_cv_func_strftime=no"
  1956. fi
  1957. rm -f conftest*
  1958.  
  1959. fi
  1960. if eval "test \"`echo '$ac_cv_func_'strftime`\" = yes"; then
  1961.   /bin/echo "$ac_t""yes" 1>&4
  1962.   cat >> confdefs.h <<\EOF
  1963. #define HAVE_STRFTIME 1
  1964. EOF
  1965.  
  1966. else
  1967.   /bin/echo "$ac_t""no" 1>&4
  1968. fi
  1969.  
  1970. /bin/echo $ac_n "checking for vprintf""... $ac_c" 1>&4
  1971. if eval "test \"`echo '${'ac_cv_func_vprintf'+set}'`\" = set"; then
  1972.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  1973. else
  1974.   cat > conftest.$ac_ext <<EOF
  1975. #line 1976 "configure"
  1976. #include "confdefs.h"
  1977. #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  1978. /* Override any gcc2 internal prototype to avoid an error.  */
  1979. char vprintf(); 
  1980.  
  1981. int main() { return 0; }
  1982. int t() {
  1983.  
  1984. /* The GNU C library defines this for functions which it implements
  1985.     to always fail with ENOSYS.  Some functions are actually named
  1986.     something starting with __ and the normal name is an alias.  */
  1987. #if defined (__stub_vprintf) || defined (__stub___vprintf)
  1988. choke me
  1989. #else
  1990. vprintf();
  1991. #endif
  1992.  
  1993. ; return 0; }
  1994. EOF
  1995. if eval $ac_link; then
  1996.   rm -rf conftest*
  1997.   eval "ac_cv_func_vprintf=yes"
  1998. else
  1999.   rm -rf conftest*
  2000.   eval "ac_cv_func_vprintf=no"
  2001. fi
  2002. rm -f conftest*
  2003.  
  2004. fi
  2005. if eval "test \"`echo '$ac_cv_func_'vprintf`\" = yes"; then
  2006.   /bin/echo "$ac_t""yes" 1>&4
  2007.   cat >> confdefs.h <<\EOF
  2008. #define HAVE_VPRINTF 1
  2009. EOF
  2010.  
  2011. else
  2012.   /bin/echo "$ac_t""no" 1>&4
  2013. fi
  2014.  
  2015. if test "$ac_cv_func_vprintf" != yes; then
  2016. /bin/echo $ac_n "checking for _doprnt""... $ac_c" 1>&4
  2017. if eval "test \"`echo '${'ac_cv_func__doprnt'+set}'`\" = set"; then
  2018.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2019. else
  2020.   cat > conftest.$ac_ext <<EOF
  2021. #line 2022 "configure"
  2022. #include "confdefs.h"
  2023. #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  2024. /* Override any gcc2 internal prototype to avoid an error.  */
  2025. char _doprnt(); 
  2026.  
  2027. int main() { return 0; }
  2028. int t() {
  2029.  
  2030. /* The GNU C library defines this for functions which it implements
  2031.     to always fail with ENOSYS.  Some functions are actually named
  2032.     something starting with __ and the normal name is an alias.  */
  2033. #if defined (__stub__doprnt) || defined (__stub____doprnt)
  2034. choke me
  2035. #else
  2036. _doprnt();
  2037. #endif
  2038.  
  2039. ; return 0; }
  2040. EOF
  2041. if eval $ac_link; then
  2042.   rm -rf conftest*
  2043.   eval "ac_cv_func__doprnt=yes"
  2044. else
  2045.   rm -rf conftest*
  2046.   eval "ac_cv_func__doprnt=no"
  2047. fi
  2048. rm -f conftest*
  2049.  
  2050. fi
  2051. if eval "test \"`echo '$ac_cv_func_'_doprnt`\" = yes"; then
  2052.   /bin/echo "$ac_t""yes" 1>&4
  2053.   cat >> confdefs.h <<\EOF
  2054. #define HAVE_DOPRNT 1
  2055. EOF
  2056.  
  2057. else
  2058.   /bin/echo "$ac_t""no" 1>&4
  2059. fi
  2060.  
  2061. fi
  2062.  
  2063. # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  2064. # for constant arguments.  Useless!
  2065. /bin/echo $ac_n "checking for working alloca.h""... $ac_c" 1>&4
  2066. if eval "test \"`echo '${'ac_cv_header_alloca_h'+set}'`\" = set"; then
  2067.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2068. else
  2069.   cat > conftest.$ac_ext <<EOF
  2070. #line 2071 "configure"
  2071. #include "confdefs.h"
  2072. #include <alloca.h>
  2073. int main() { return 0; }
  2074. int t() {
  2075. char *p = alloca(2 * sizeof(int));
  2076. ; return 0; }
  2077. EOF
  2078. if eval $ac_link; then
  2079.   rm -rf conftest*
  2080.   ac_cv_header_alloca_h=yes
  2081. else
  2082.   rm -rf conftest*
  2083.   ac_cv_header_alloca_h=no
  2084. fi
  2085. rm -f conftest*
  2086.  
  2087. fi
  2088. /bin/echo "$ac_t""$ac_cv_header_alloca_h" 1>&4
  2089. if test $ac_cv_header_alloca_h = yes; then
  2090.   cat >> confdefs.h <<\EOF
  2091. #define HAVE_ALLOCA_H 1
  2092. EOF
  2093.  
  2094. fi
  2095.  
  2096. /bin/echo $ac_n "checking for alloca""... $ac_c" 1>&4
  2097. if eval "test \"`echo '${'ac_cv_func_alloca'+set}'`\" = set"; then
  2098.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2099. else
  2100.   cat > conftest.$ac_ext <<EOF
  2101. #line 2102 "configure"
  2102. #include "confdefs.h"
  2103.  
  2104. #ifdef __GNUC__
  2105. # define alloca __builtin_alloca
  2106. #else
  2107. # if HAVE_ALLOCA_H
  2108. #  include <alloca.h>
  2109. # else
  2110. #  ifdef _AIX
  2111.  #pragma alloca
  2112. #  else
  2113. #   ifndef alloca /* predefined by HP cc +Olibcalls */
  2114. char *alloca ();
  2115. #   endif
  2116. #  endif
  2117. # endif
  2118. #endif
  2119.  
  2120. int main() { return 0; }
  2121. int t() {
  2122. char *p = (char *) alloca(1);
  2123. ; return 0; }
  2124. EOF
  2125. if eval $ac_link; then
  2126.   rm -rf conftest*
  2127.   ac_cv_func_alloca=yes
  2128. else
  2129.   rm -rf conftest*
  2130.   ac_cv_func_alloca=no
  2131. fi
  2132. rm -f conftest*
  2133.  
  2134. fi
  2135. /bin/echo "$ac_t""$ac_cv_func_alloca" 1>&4
  2136. if test $ac_cv_func_alloca = yes; then
  2137.   cat >> confdefs.h <<\EOF
  2138. #define HAVE_ALLOCA 1
  2139. EOF
  2140.  
  2141. fi
  2142.  
  2143. if test $ac_cv_func_alloca = no; then
  2144.   # The SVR3 libPW and SVR4 libucb both contain incompatible functions
  2145.   # that cause trouble.  Some versions do not even contain alloca or
  2146.   # contain a buggy version.  If you still want to use their alloca,
  2147.   # use ar to extract alloca.o from them instead of compiling alloca.c.
  2148.   ALLOCA=alloca.o
  2149.   cat >> confdefs.h <<\EOF
  2150. #define C_ALLOCA 1
  2151. EOF
  2152.  
  2153.  
  2154. /bin/echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&4
  2155. if eval "test \"`echo '${'ac_cv_os_cray'+set}'`\" = set"; then
  2156.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2157. else
  2158.   cat > conftest.$ac_ext <<EOF
  2159. #line 2160 "configure"
  2160. #include "confdefs.h"
  2161. #if defined(CRAY) && ! defined(CRAY2)
  2162. webecray
  2163. #else
  2164. wenotbecray
  2165. #endif
  2166.  
  2167. EOF
  2168. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  2169.   egrep "webecray" >/dev/null 2>&1; then
  2170.   rm -rf conftest*
  2171.   ac_cv_os_cray=yes
  2172. else
  2173.   rm -rf conftest*
  2174.   ac_cv_os_cray=no
  2175. fi
  2176. rm -f conftest*
  2177.  
  2178. fi
  2179. /bin/echo "$ac_t""$ac_cv_os_cray" 1>&4
  2180. if test $ac_cv_os_cray = yes; then
  2181. /bin/echo $ac_n "checking for _getb67""... $ac_c" 1>&4
  2182. if eval "test \"`echo '${'ac_cv_func__getb67'+set}'`\" = set"; then
  2183.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2184. else
  2185.   cat > conftest.$ac_ext <<EOF
  2186. #line 2187 "configure"
  2187. #include "confdefs.h"
  2188. #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  2189. /* Override any gcc2 internal prototype to avoid an error.  */
  2190. char _getb67(); 
  2191.  
  2192. int main() { return 0; }
  2193. int t() {
  2194.  
  2195. /* The GNU C library defines this for functions which it implements
  2196.     to always fail with ENOSYS.  Some functions are actually named
  2197.     something starting with __ and the normal name is an alias.  */
  2198. #if defined (__stub__getb67) || defined (__stub____getb67)
  2199. choke me
  2200. #else
  2201. _getb67();
  2202. #endif
  2203.  
  2204. ; return 0; }
  2205. EOF
  2206. if eval $ac_link; then
  2207.   rm -rf conftest*
  2208.   eval "ac_cv_func__getb67=yes"
  2209. else
  2210.   rm -rf conftest*
  2211.   eval "ac_cv_func__getb67=no"
  2212. fi
  2213. rm -f conftest*
  2214.  
  2215. fi
  2216. if eval "test \"`echo '$ac_cv_func_'_getb67`\" = yes"; then
  2217.   /bin/echo "$ac_t""yes" 1>&4
  2218.   cat >> confdefs.h <<\EOF
  2219. #define CRAY_STACKSEG_END _getb67
  2220. EOF
  2221.  
  2222. else
  2223.   /bin/echo "$ac_t""no" 1>&4
  2224. /bin/echo $ac_n "checking for GETB67""... $ac_c" 1>&4
  2225. if eval "test \"`echo '${'ac_cv_func_GETB67'+set}'`\" = set"; then
  2226.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2227. else
  2228.   cat > conftest.$ac_ext <<EOF
  2229. #line 2230 "configure"
  2230. #include "confdefs.h"
  2231. #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  2232. /* Override any gcc2 internal prototype to avoid an error.  */
  2233. char GETB67(); 
  2234.  
  2235. int main() { return 0; }
  2236. int t() {
  2237.  
  2238. /* The GNU C library defines this for functions which it implements
  2239.     to always fail with ENOSYS.  Some functions are actually named
  2240.     something starting with __ and the normal name is an alias.  */
  2241. #if defined (__stub_GETB67) || defined (__stub___GETB67)
  2242. choke me
  2243. #else
  2244. GETB67();
  2245. #endif
  2246.  
  2247. ; return 0; }
  2248. EOF
  2249. if eval $ac_link; then
  2250.   rm -rf conftest*
  2251.   eval "ac_cv_func_GETB67=yes"
  2252. else
  2253.   rm -rf conftest*
  2254.   eval "ac_cv_func_GETB67=no"
  2255. fi
  2256. rm -f conftest*
  2257.  
  2258. fi
  2259. if eval "test \"`echo '$ac_cv_func_'GETB67`\" = yes"; then
  2260.   /bin/echo "$ac_t""yes" 1>&4
  2261.   cat >> confdefs.h <<\EOF
  2262. #define CRAY_STACKSEG_END GETB67
  2263. EOF
  2264.  
  2265. else
  2266.   /bin/echo "$ac_t""no" 1>&4
  2267. /bin/echo $ac_n "checking for getb67""... $ac_c" 1>&4
  2268. if eval "test \"`echo '${'ac_cv_func_getb67'+set}'`\" = set"; then
  2269.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2270. else
  2271.   cat > conftest.$ac_ext <<EOF
  2272. #line 2273 "configure"
  2273. #include "confdefs.h"
  2274. #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  2275. /* Override any gcc2 internal prototype to avoid an error.  */
  2276. char getb67(); 
  2277.  
  2278. int main() { return 0; }
  2279. int t() {
  2280.  
  2281. /* The GNU C library defines this for functions which it implements
  2282.     to always fail with ENOSYS.  Some functions are actually named
  2283.     something starting with __ and the normal name is an alias.  */
  2284. #if defined (__stub_getb67) || defined (__stub___getb67)
  2285. choke me
  2286. #else
  2287. getb67();
  2288. #endif
  2289.  
  2290. ; return 0; }
  2291. EOF
  2292. if eval $ac_link; then
  2293.   rm -rf conftest*
  2294.   eval "ac_cv_func_getb67=yes"
  2295. else
  2296.   rm -rf conftest*
  2297.   eval "ac_cv_func_getb67=no"
  2298. fi
  2299. rm -f conftest*
  2300.  
  2301. fi
  2302. if eval "test \"`echo '$ac_cv_func_'getb67`\" = yes"; then
  2303.   /bin/echo "$ac_t""yes" 1>&4
  2304.   cat >> confdefs.h <<\EOF
  2305. #define CRAY_STACKSEG_END getb67
  2306. EOF
  2307.  
  2308. else
  2309.   /bin/echo "$ac_t""no" 1>&4
  2310. fi
  2311.  
  2312. fi
  2313.  
  2314. fi
  2315.  
  2316. fi
  2317.  
  2318. /bin/echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&4
  2319. if eval "test \"`echo '${'ac_cv_c_stack_direction'+set}'`\" = set"; then
  2320.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2321. else
  2322.   if test "$cross_compiling" = yes; then
  2323.   ac_cv_c_stack_direction=0
  2324. else
  2325. cat > conftest.$ac_ext <<EOF
  2326. #line 2327 "configure"
  2327. #include "confdefs.h"
  2328. find_stack_direction ()
  2329. {
  2330.   static char *addr = 0;
  2331.   auto char dummy;
  2332.   if (addr == 0)
  2333.     {
  2334.       addr = &dummy;
  2335.       return find_stack_direction ();
  2336.     }
  2337.   else
  2338.     return (&dummy > addr) ? 1 : -1;
  2339. }
  2340. main ()
  2341. {
  2342.   exit (find_stack_direction() < 0);
  2343. }
  2344. EOF
  2345. eval $ac_link
  2346. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  2347.   ac_cv_c_stack_direction=1
  2348. else
  2349.   ac_cv_c_stack_direction=-1
  2350. fi
  2351. fi
  2352. rm -fr conftest*
  2353. fi
  2354. /bin/echo "$ac_t""$ac_cv_c_stack_direction" 1>&4
  2355. cat >> confdefs.h <<EOF
  2356. #define STACK_DIRECTION $ac_cv_c_stack_direction
  2357. EOF
  2358.  
  2359. fi
  2360.  
  2361. # getmntent is in -lsun on Irix 4, -lseq on Dynix/PTX.
  2362. /bin/echo $ac_n "checking for -lsun""... $ac_c" 1>&4
  2363. if eval "test \"`echo '${'ac_cv_lib_sun'+set}'`\" = set"; then
  2364.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2365. else
  2366.   ac_save_LIBS="$LIBS"
  2367. LIBS="$LIBS -lsun "
  2368. cat > conftest.$ac_ext <<EOF
  2369. #line 2370 "configure"
  2370. #include "confdefs.h"
  2371.  
  2372. int main() { return 0; }
  2373. int t() {
  2374. getmntent()
  2375. ; return 0; }
  2376. EOF
  2377. if eval $ac_link; then
  2378.   rm -rf conftest*
  2379.   eval "ac_cv_lib_sun=yes"
  2380. else
  2381.   rm -rf conftest*
  2382.   eval "ac_cv_lib_sun=no"
  2383. fi
  2384. rm -f conftest*
  2385. LIBS="$ac_save_LIBS"
  2386.  
  2387. fi
  2388. if eval "test \"`echo '$ac_cv_lib_'sun`\" = yes"; then
  2389.   /bin/echo "$ac_t""yes" 1>&4
  2390.   LIBS="$LIBS -lsun"
  2391. else
  2392.   /bin/echo "$ac_t""no" 1>&4
  2393. /bin/echo $ac_n "checking for -lseq""... $ac_c" 1>&4
  2394. if eval "test \"`echo '${'ac_cv_lib_seq'+set}'`\" = set"; then
  2395.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2396. else
  2397.   ac_save_LIBS="$LIBS"
  2398. LIBS="$LIBS -lseq "
  2399. cat > conftest.$ac_ext <<EOF
  2400. #line 2401 "configure"
  2401. #include "confdefs.h"
  2402.  
  2403. int main() { return 0; }
  2404. int t() {
  2405. getmntent()
  2406. ; return 0; }
  2407. EOF
  2408. if eval $ac_link; then
  2409.   rm -rf conftest*
  2410.   eval "ac_cv_lib_seq=yes"
  2411. else
  2412.   rm -rf conftest*
  2413.   eval "ac_cv_lib_seq=no"
  2414. fi
  2415. rm -f conftest*
  2416. LIBS="$ac_save_LIBS"
  2417.  
  2418. fi
  2419. if eval "test \"`echo '$ac_cv_lib_'seq`\" = yes"; then
  2420.   /bin/echo "$ac_t""yes" 1>&4
  2421.   LIBS="$LIBS -lseq"
  2422. else
  2423.   /bin/echo "$ac_t""no" 1>&4
  2424. fi
  2425.  
  2426. fi
  2427.  
  2428. /bin/echo $ac_n "checking for getmntent""... $ac_c" 1>&4
  2429. if eval "test \"`echo '${'ac_cv_func_getmntent'+set}'`\" = set"; then
  2430.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2431. else
  2432.   cat > conftest.$ac_ext <<EOF
  2433. #line 2434 "configure"
  2434. #include "confdefs.h"
  2435. #include <ctype.h> /* Arbitrary system header to define __stub macros. */
  2436. /* Override any gcc2 internal prototype to avoid an error.  */
  2437. char getmntent(); 
  2438.  
  2439. int main() { return 0; }
  2440. int t() {
  2441.  
  2442. /* The GNU C library defines this for functions which it implements
  2443.     to always fail with ENOSYS.  Some functions are actually named
  2444.     something starting with __ and the normal name is an alias.  */
  2445. #if defined (__stub_getmntent) || defined (__stub___getmntent)
  2446. choke me
  2447. #else
  2448. getmntent();
  2449. #endif
  2450.  
  2451. ; return 0; }
  2452. EOF
  2453. if eval $ac_link; then
  2454.   rm -rf conftest*
  2455.   eval "ac_cv_func_getmntent=yes"
  2456. else
  2457.   rm -rf conftest*
  2458.   eval "ac_cv_func_getmntent=no"
  2459. fi
  2460. rm -f conftest*
  2461.  
  2462. fi
  2463. if eval "test \"`echo '$ac_cv_func_'getmntent`\" = yes"; then
  2464.   /bin/echo "$ac_t""yes" 1>&4
  2465.   cat >> confdefs.h <<\EOF
  2466. #define HAVE_GETMNTENT 1
  2467. EOF
  2468.  
  2469. else
  2470.   /bin/echo "$ac_t""no" 1>&4
  2471. fi
  2472.  
  2473. /bin/echo $ac_n "checking whether closedir returns void""... $ac_c" 1>&4
  2474. if eval "test \"`echo '${'ac_cv_func_closedir_void'+set}'`\" = set"; then
  2475.   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  2476. else
  2477.   if test "$cross_compiling" = yes; then
  2478.     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
  2479. else
  2480. cat > conftest.$ac_ext <<EOF
  2481. #line 2482 "configure"
  2482. #include "confdefs.h"
  2483. #include <sys/types.h>
  2484. #include <$ac_header_dirent>
  2485. int closedir(); main() { exit(closedir(opendir(".")) != 0); }
  2486. EOF
  2487. eval $ac_link
  2488. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  2489.   ac_cv_func_closedir_void=no
  2490. else
  2491.   ac_cv_func_closedir_void=yes
  2492. fi
  2493. fi
  2494. rm -fr conftest*
  2495. fi
  2496. /bin/echo "$ac_t""$ac_cv_func_closedir_void" 1>&4
  2497. if test $ac_cv_func_closedir_void = yes; then
  2498.   cat >> confdefs.h <<\EOF
  2499. #define CLOSEDIR_VOID 1
  2500. EOF
  2501.  
  2502. fi
  2503.  
  2504.  
  2505. trap '' 1 2 15
  2506. if test -w $cache_file; then
  2507. echo "updating cache $cache_file"
  2508. cat > $cache_file <<\EOF
  2509. # This file is a shell script that caches the results of configure
  2510. # tests run on this system so they can be shared between configure
  2511. # scripts and configure runs.  It is not useful on other systems.
  2512. # If it contains results you don't want to keep, you may remove or edit it.
  2513. #
  2514. # By default, configure uses ./config.cache as the cache file,
  2515. # creating it if it does not exist already.  You can give configure
  2516. # the --cache-file=FILE option to use a different cache file; that is
  2517. # what configure does when it calls configure scripts in
  2518. # subdirectories, so they share the cache.
  2519. # Giving --cache-file=/dev/null disables caching, for debugging configure.
  2520. # config.status only pays attention to the cache file if you give it the
  2521. # --recheck option to rerun configure.
  2522. #
  2523. EOF
  2524. # Ultrix sh set writes to stderr and can't be redirected directly.
  2525. (set) 2>&1 |
  2526.   sed -n "s/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/: \${\1='\2'}/p" \
  2527.   >> $cache_file
  2528. else
  2529. echo "not updating unwritable cache $cache_file"
  2530. fi
  2531.  
  2532. trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  2533.  
  2534. test "x$prefix" = xNONE && prefix=$ac_default_prefix
  2535. # Let make expand exec_prefix.
  2536. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  2537.  
  2538. # Any assignment to VPATH causes Sun make to only execute
  2539. # the first set of double-colon rules, so remove it if not needed.
  2540. # If there is a colon in the path, we need to keep it.
  2541. if test "x$srcdir" = x.; then
  2542.   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  2543. fi
  2544.  
  2545. trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
  2546.  
  2547. DEFS=-DHAVE_CONFIG_H
  2548.  
  2549. # Without the "./", some shells look in PATH for config.status.
  2550. : ${CONFIG_STATUS=./config.status}
  2551.  
  2552. echo creating $CONFIG_STATUS
  2553. # Some systems, like AmigaDOS, won't allow you to remove a script that is
  2554. # being executed, so just move it out of the way instead.
  2555. if test -f $CONFIG_STATUS; then mv $CONFIG_STATUS $CONFIG_STATUS.old; else true; fi
  2556. cat > $CONFIG_STATUS <<EOF
  2557. #!/bin/sh
  2558. # Generated automatically by configure.
  2559. # Run this file to recreate the current configuration.
  2560. # This directory was configured as follows,
  2561. # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  2562. #
  2563. # $0 $ac_configure_args
  2564. #
  2565. # Compiler output produced by configure, useful for debugging
  2566. # configure, is in ./config.log if it exists.
  2567.  
  2568. ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
  2569. for ac_option
  2570. do
  2571.   case "\$ac_option" in
  2572.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  2573.     echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
  2574.     exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  2575.   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  2576.     /bin/echo "$CONFIG_STATUS generated by autoconf version 2.1"
  2577.     exit 0 ;;
  2578.   -help | --help | --hel | --he | --h)
  2579.     echo "\$ac_cs_usage"; exit 0 ;;
  2580.   *) echo "\$ac_cs_usage"; exit 1 ;;
  2581.   esac
  2582. done
  2583.  
  2584. ac_given_srcdir=$srcdir
  2585. ac_given_INSTALL="$INSTALL"
  2586.  
  2587. trap 'rm -fr Makefile lib/Makefile find/Makefile xargs/Makefile \
  2588. locate/Makefile doc/Makefile testsuite/Makefile config.h conftest*; exit 1' 1 2 15
  2589.  
  2590. # Protect against being on the right side of a sed subst in config.status. 
  2591. sed 's/%@/@@/; s/@%/@@/; s/%g$/@g/; /@g$/s/[\\\\&%]/\\\\&/g; 
  2592.  s/@@/%@/; s/@@/@%/; s/@g$/%g/' > conftest.subs <<\CEOF
  2593. $ac_vpsub
  2594. $extrasub
  2595. s%@CFLAGS@%$CFLAGS%g
  2596. s%@CPPFLAGS@%$CPPFLAGS%g
  2597. s%@CXXFLAGS@%$CXXFLAGS%g
  2598. s%@DEFS@%$DEFS%g
  2599. s%@LDFLAGS@%$LDFLAGS%g
  2600. s%@LIBS@%$LIBS%g
  2601. s%@exec_prefix@%$exec_prefix%g
  2602. s%@prefix@%$prefix%g
  2603. s%@program_transform_name@%$program_transform_name%g
  2604. s%@INCLUDES@%$INCLUDES%g
  2605. s%@CC@%$CC%g
  2606. s%@CPP@%$CPP%g
  2607. s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  2608. s%@INSTALL_DATA@%$INSTALL_DATA%g
  2609. s%@RANLIB@%$RANLIB%g
  2610. s%@SET_MAKE@%$SET_MAKE%g
  2611. s%@LIBOBJS@%$LIBOBJS%g
  2612. s%@ALLOCA@%$ALLOCA%g
  2613.  
  2614. CEOF
  2615. EOF
  2616. cat >> $CONFIG_STATUS <<EOF
  2617.  
  2618. CONFIG_FILES=\${CONFIG_FILES-"Makefile lib/Makefile find/Makefile xargs/Makefile \
  2619. locate/Makefile doc/Makefile testsuite/Makefile"}
  2620. EOF
  2621. cat >> $CONFIG_STATUS <<\EOF
  2622. for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
  2623.   # Support "outfile[:infile]", defaulting infile="outfile.in".
  2624.   case "$ac_file" in
  2625.   *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
  2626.        ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
  2627.   *) ac_file_in="${ac_file}.in" ;;
  2628.   esac
  2629.  
  2630.   # Adjust relative srcdir, etc. for subdirectories.
  2631.  
  2632.   # Remove last slash and all that follows it.  Not all systems have dirname.
  2633.   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  2634.   if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  2635.     # The file is in a subdirectory.
  2636.     test ! -d "$ac_dir" && mkdir "$ac_dir"
  2637.     ac_dir_suffix="/$ac_dir"
  2638.     # A "../" for each directory in $ac_dir_suffix.
  2639.     ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  2640.   else
  2641.     ac_dir_suffix= ac_dots=
  2642.   fi
  2643.  
  2644.   case "$ac_given_srcdir" in
  2645.   .)  srcdir=.
  2646.       if test -z "$ac_dots"; then top_srcdir=.
  2647.       else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
  2648.   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  2649.   *) # Relative path.
  2650.     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  2651.     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  2652.   esac
  2653.  
  2654.   case "$ac_given_INSTALL" in
  2655.   [/$]*) INSTALL="$ac_given_INSTALL" ;;
  2656.   *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
  2657.   esac
  2658.   echo creating "$ac_file"
  2659.   rm -f "$ac_file"
  2660.   configure_input="Generated automatically from `/bin/echo $ac_file_in|sed 's%.*/%%'` by configure."
  2661.   case "$ac_file" in
  2662.   *Makefile*) ac_comsub="1i\\
  2663. # $configure_input" ;;
  2664.   *) ac_comsub= ;;
  2665.   esac
  2666.   sed -e "$ac_comsub
  2667. s%@configure_input@%$configure_input%g
  2668. s%@srcdir@%$srcdir%g
  2669. s%@top_srcdir@%$top_srcdir%g
  2670. s%@INSTALL@%$INSTALL%g
  2671. " -f conftest.subs $ac_given_srcdir/$ac_file_in > $ac_file
  2672. fi; done
  2673. rm -f conftest.subs
  2674.  
  2675. # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
  2676. # NAME is the cpp macro being defined and VALUE is the value it is being given.
  2677. #
  2678. # ac_d sets the value in "#define NAME VALUE" lines.
  2679. ac_dA='s%^\([     ]*\)#\([     ]*define[     ][     ]*\)'
  2680. ac_dB='\([     ][     ]*\)[^     ]*%\1#\2'
  2681. ac_dC='\3'
  2682. ac_dD='%g'
  2683. # ac_u turns "#undef NAME" with trailing blanks into "#define NAME VALUE".
  2684. ac_uA='s%^\([     ]*\)#\([     ]*\)undef\([     ][     ]*\)'
  2685. ac_uB='\([     ]\)%\1#\2define\3'
  2686. ac_uC=' '
  2687. ac_uD='\4%g'
  2688. # ac_e turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
  2689. ac_eA='s%^\([     ]*\)#\([     ]*\)undef\([     ][     ]*\)'
  2690. ac_eB='$%\1#\2define\3'
  2691. ac_eC=' '
  2692. ac_eD='%g'
  2693.  
  2694. CONFIG_HEADERS=${CONFIG_HEADERS-"config.h"}
  2695. for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then
  2696.   # Support "outfile[:infile]", defaulting infile="outfile.in".
  2697.   case "$ac_file" in
  2698.   *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
  2699.        ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
  2700.   *) ac_file_in="${ac_file}.in" ;;
  2701.   esac
  2702.  
  2703.   echo creating $ac_file
  2704.  
  2705.   rm -f conftest.frag conftest.in conftest.out
  2706.   cp $ac_given_srcdir/$ac_file_in conftest.in
  2707.  
  2708. EOF
  2709.  
  2710. # Transform confdefs.h into a sed script conftest.vals that substitutes
  2711. # the proper values into config.h.in to produce config.h.  And first:
  2712. # Protect against being on the right side of a sed subst in config.status. 
  2713. # Protect against being in an unquoted here document in config.status.
  2714. rm -f conftest.vals
  2715. cat > conftest.hdr <<\EOF
  2716. s/[\\&%]/\\&/g
  2717. s%[\\$`]%\\&%g
  2718. s%#define \([A-Za-z_][A-Za-z0-9_]*\) \(.*\)%${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD}%gp
  2719. s%ac_d%ac_u%gp
  2720. s%ac_u%ac_e%gp
  2721. EOF
  2722. sed -n -f conftest.hdr confdefs.h > conftest.vals
  2723. rm -f conftest.hdr
  2724.  
  2725. # This sed command replaces #undef with comments.  This is necessary, for
  2726. # example, in the case of _POSIX_SOURCE, which is predefined and required
  2727. # on some systems where configure will not decide to define it.
  2728. cat >> conftest.vals <<\EOF
  2729. s%^[     ]*#[     ]*undef[     ][     ]*[a-zA-Z_][a-zA-Z_0-9]*%/* & */%
  2730. EOF
  2731.  
  2732. # Break up conftest.vals because some shells have a limit on
  2733. # the size of here documents, and old seds have small limits too.
  2734. # Maximum number of lines to put in a single here document.
  2735. ac_max_here_lines=12
  2736.  
  2737. rm -f conftest.tail
  2738. while :
  2739. do
  2740.   ac_lines=`grep -c . conftest.vals`
  2741.   # grep -c gives empty output for an empty file on some AIX systems.
  2742.   if test -z "$ac_lines" || test "$ac_lines" -eq 0; then break; fi
  2743.   # Write a limited-size here document to conftest.frag.
  2744.   echo '  cat > conftest.frag <<CEOF' >> $CONFIG_STATUS
  2745.   sed ${ac_max_here_lines}q conftest.vals >> $CONFIG_STATUS
  2746.   echo 'CEOF
  2747.   sed -f conftest.frag conftest.in > conftest.out
  2748.   rm -f conftest.in
  2749.   mv conftest.out conftest.in
  2750. ' >> $CONFIG_STATUS
  2751.   sed 1,${ac_max_here_lines}d conftest.vals > conftest.tail
  2752.   rm -f conftest.vals
  2753.   mv conftest.tail conftest.vals
  2754. done
  2755. rm -f conftest.vals
  2756.  
  2757. cat >> $CONFIG_STATUS <<\EOF
  2758.   rm -f conftest.frag conftest.h
  2759.   echo "/* $ac_file.  Generated automatically by configure.  */" > conftest.h
  2760.   cat conftest.in >> conftest.h
  2761.   rm -f conftest.in
  2762.   if cmp -s $ac_file conftest.h 2>/dev/null; then
  2763.     /bin/echo "$ac_file is unchanged"
  2764.     rm -f conftest.h
  2765.   else
  2766.     rm -f $ac_file
  2767.     mv conftest.h $ac_file
  2768.   fi
  2769. fi; done
  2770.  
  2771.  
  2772. date > stamp-h
  2773. exit 0
  2774. EOF
  2775. chmod +x $CONFIG_STATUS
  2776. rm -fr confdefs* $ac_clean_files
  2777. test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS
  2778.  
  2779.