home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / amiga / ispell-4.0-src.lha / ispell-4.0 / configure < prev    next >
Encoding:
Text File  |  1994-04-26  |  32.9 KB  |  1,237 lines

  1. #!/bin/sh
  2. # Guess values for system-dependent variables and create Makefiles.
  3. # Generated automatically using autoconf version 1.9 
  4. # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  5.  
  6. # This configure script is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License as published
  8. # by the Free Software Foundation; either version 2, or (at your option)
  9. # any later version.
  10.  
  11. # This script is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
  14. # Public License for more details.
  15.  
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. # Save the original args to write them into config.status later.
  21. configure_args="$*"
  22.  
  23. # Only options that might do something get documented.
  24. ac_usage="Usage: configure [options] [host]
  25. Options: [defaults in brackets after descriptions]
  26. --build=BUILD        configure for building on BUILD [BUILD=HOST]
  27. --disable-FEATURE    do not include FEATURE (same as --enable-FEATURE=no)
  28. --enable-FEATURE[=ARG]    include FEATURE [ARG=yes]
  29. --exec-prefix=PREFIX    install host dependent files in PREFIX [/usr/local]
  30. --help            print this message
  31. --host=HOST        configure for HOST [guessed]
  32. --prefix=PREFIX        install host independent files in PREFIX [/usr/local]
  33. --quiet, --silent    do not print \`checking for...' messages
  34. --srcdir=DIR        find the sources in DIR [configure dir or ..]
  35. --target=TARGET        configure for TARGET [TARGET=HOST]
  36. --verbose        print results of checks
  37. --version        print the version of autoconf that created configure
  38. --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  39. --without-PACKAGE    do not use PACKAGE (same as --with-PACKAGE=no)
  40. --x-includes=DIR    X include files are in DIR
  41. --x-libraries=DIR    X library files are in DIR"
  42.  
  43. # Initialize some variables set by options.
  44. # The variables have the same names as the options, with
  45. # dashes changed to underlines.
  46. build=NONE
  47. exec_prefix=
  48. host=NONE
  49. no_create=
  50. nonopt=NONE
  51. norecursion=
  52. prefix=
  53. program_prefix=
  54. program_suffix=
  55. program_transform_name=
  56. silent=
  57. srcdir=
  58. target=NONE
  59. verbose=
  60. x_includes=
  61. x_libraries=
  62.  
  63. ac_prev=
  64. for ac_option
  65. do
  66.  
  67.   # If the previous option needs an argument, assign it.
  68.   if test -n "$ac_prev"; then
  69.     eval "$ac_prev=\$ac_option"
  70.     ac_prev=
  71.     continue
  72.   fi
  73.  
  74.   # Accept (but ignore some of) the important Cygnus configure
  75.   # options, so we can diagnose typos.
  76.  
  77.   case "$ac_option" in
  78.   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  79.   *) ac_optarg= ;;
  80.   esac
  81.  
  82.   case "$ac_option" in
  83.  
  84.   -build | --build | --buil | --bui | --bu | --b)
  85.     ac_prev=build ;;
  86.   -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  87.     build="$ac_optarg" ;;
  88.  
  89.   -disable-* | --disable-*)
  90.     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  91.     # Reject names that aren't valid shell variable names.
  92.     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  93.       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  94.     fi
  95.     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  96.     eval "enable_${ac_feature}=no" ;;
  97.  
  98.   -enable-* | --enable-*)
  99.     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  100.     # Reject names that aren't valid shell variable names.
  101.     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  102.       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  103.     fi
  104.     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  105.     case "$ac_option" in
  106.       *=*) ;;
  107.       *) ac_optarg=yes ;;
  108.     esac
  109.     eval "enable_${ac_feature}='$ac_optarg'" ;;
  110.  
  111.   # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  112.   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  113.   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  114.   | --exec | --exe | --ex)
  115.     ac_prev=exec_prefix ;;
  116.   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  117.   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  118.   | --exec=* | --exe=* | --ex=*)
  119.     exec_prefix="$ac_optarg" ;;
  120.  
  121.   -gas | --gas | --ga | --g)
  122.     with_gas=yes ;; # Obsolete; use --with-gas.
  123.  
  124.   -help | --help | --hel | --he)
  125.     cat << EOF
  126. $ac_usage
  127. EOF
  128.     exit 0 ;;
  129.  
  130.   -host | --host | --hos | --ho)
  131.     ac_prev=host ;;
  132.   -host=* | --host=* | --hos=* | --ho=*)
  133.     host="$ac_optarg" ;;
  134.  
  135.   -nfp | --nfp | --nf)
  136.     with_fp=no ;; # Obsolete; use --without-fp.
  137.  
  138.   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  139.   | --no-cr | --no-c)
  140.     no_create=yes ;;
  141.  
  142.   -norecursion | --norecursion | --norecursio | --norecursi \
  143.   | --norecurs | --norecur | --norecu | --norec | --nore | --nor)
  144.     norecursion=yes ;;
  145.  
  146.   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  147.     ac_prev=prefix ;;
  148.   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  149.     prefix="$ac_optarg" ;;
  150.  
  151.   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  152.   | --program-pre | --program-pr | --program-p)
  153.     ac_prev=program_prefix ;;
  154.   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  155.   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  156.     program_prefix="$ac_optarg" ;;
  157.  
  158.   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  159.   | --program-suf | --program-su | --program-s)
  160.     ac_prev=program_suffix ;;
  161.   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  162.   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  163.     program_suffix="$ac_optarg" ;;
  164.  
  165.   -program-transform-name | --program-transform-name \
  166.   | --program-transform-nam | --program-transform-na \
  167.   | --program-transform-n | --program-transform- \
  168.   | --program-transform | --program-transfor \
  169.   | --program-transfo | --program-transf \
  170.   | --program-trans | --program-tran \
  171.   | --progr-tra | --program-tr | --program-t)
  172.     ac_prev=program_transform_name ;;
  173.   -program-transform-name=* | --program-transform-name=* \
  174.   | --program-transform-nam=* | --program-transform-na=* \
  175.   | --program-transform-n=* | --program-transform-=* \
  176.   | --program-transform=* | --program-transfor=* \
  177.   | --program-transfo=* | --program-transf=* \
  178.   | --program-trans=* | --program-tran=* \
  179.   | --progr-tra=* | --program-tr=* | --program-t=*)
  180.     program_transform_name="$ac_optarg" ;;
  181.  
  182.   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  183.   | -silent | --silent | --silen | --sile | --sil)
  184.     silent=yes ;;
  185.  
  186.   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  187.     ac_prev=srcdir ;;
  188.   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  189.     srcdir="$ac_optarg" ;;
  190.  
  191.   -target | --target | --targe | --targ | --tar | --ta | --t)
  192.     ac_prev=target ;;
  193.   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  194.     target="$ac_optarg" ;;
  195.  
  196.   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  197.     verbose=yes ;;
  198.  
  199.   -version | --version | --versio | --versi | --vers)
  200.     /bin/echo "configure generated by autoconf version 1.9"
  201.     exit 0 ;;
  202.  
  203.   -with-* | --with-*)
  204.     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  205.     # Reject names that aren't valid shell variable names.
  206.     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  207.       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  208.     fi
  209.     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  210.     case "$ac_option" in
  211.       *=*) ;;
  212.       *) ac_optarg=yes ;;
  213.     esac
  214.     eval "with_${ac_package}='$ac_optarg'" ;;
  215.  
  216.   -without-* | --without-*)
  217.     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  218.     # Reject names that aren't valid shell variable names.
  219.     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  220.       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  221.     fi
  222.     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  223.     eval "with_${ac_package}=no" ;;
  224.  
  225.   --x) with_x=yes ;; # Obsolete; use --with-x.
  226.  
  227.   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  228.   | --x-incl | --x-inc | --x-in | --x-i)
  229.     ac_prev=x_includes ;;
  230.   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  231.   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  232.     x_includes="$ac_optarg" ;;
  233.  
  234.   -x-libraries | --x-libraries | --x-librarie | --x-librari \
  235.   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  236.     ac_prev=x_libraries ;;
  237.   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  238.   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  239.     x_libraries="$ac_optarg" ;;
  240.  
  241.   -*) /bin/echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
  242.     ;;
  243.  
  244.   *) 
  245.     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  246.       /bin/echo "configure: warning: $ac_option: invalid host type" >&2
  247.     fi
  248.     if test "x$nonopt" != xNONE; then
  249.       /bin/echo "configure: can only configure for one host and one target at a time" >&2; exit 1
  250.     fi
  251.     nonopt="$ac_option"
  252.     ;;
  253.  
  254.   esac
  255. done
  256.  
  257. if test -n "$ac_prev"; then
  258.   /bin/echo "configure: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" >&2; exit 1
  259. fi
  260.  
  261. trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  262. trap 'rm -fr confdefs* $ac_clean_files' 0
  263.  
  264. # Save the original args if we used an alternate arg parser.
  265. ac_configure_temp="${configure_args-$*}"
  266. # Strip out --no-create and --norecursion so they don't pile up.
  267. configure_args=
  268. for ac_arg in $ac_configure_temp; do
  269.   case "$ac_arg" in
  270.   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  271.   | --no-cr | --no-c) ;;
  272.   -norecursion | --norecursion | --norecursio | --norecursi \
  273.   | --norecurs | --norecur | --norecu | --norec | --nore | --nor) ;;
  274.   *) configure_args="$configure_args $ac_arg" ;;
  275.   esac
  276. done
  277.  
  278. # NLS nuisances.
  279. # These must not be set unconditionally because not all systems understand
  280. # e.g. LANG=C (notably SCO).
  281. if test "${LC_ALL+set}" = 'set'; then LC_ALL=C; export LC_ALL; fi
  282. if test "${LANG+set}"   = 'set'; then LANG=C;   export LANG;   fi
  283.  
  284. # confdefs.h avoids OS command line length limits that DEFS can exceed.
  285. rm -rf conftest* confdefs.h
  286. # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  287. /bin/echo > confdefs.h
  288.  
  289. # A filename unique to this package, relative to the directory that
  290. # configure is in, which we can look for to find out if srcdir is correct.
  291. ac_unique_file=ispell.c
  292.  
  293. # Find the source files, if location was not specified.
  294. if test -z "$srcdir"; then
  295.   ac_srcdir_defaulted=yes
  296.   # Try the directory containing this script, then `..'.
  297.   ac_prog=$0
  298.   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  299.   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  300.   srcdir=$ac_confdir
  301.   if test ! -r $srcdir/$ac_unique_file; then
  302.     srcdir=..
  303.   fi
  304. fi
  305. if test ! -r $srcdir/$ac_unique_file; then
  306.   if test x$ac_srcdir_defaulted = xyes; then
  307.     /bin/echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
  308.   else
  309.     /bin/echo "configure: can not find sources in ${srcdir}" >&2; exit 1
  310.   fi
  311. fi
  312. ac_ext=c
  313. ac_cpp='${CPP} $CFLAGS'
  314. ac_compile='${CC-cc} $CFLAGS $LDFLAGS conftest.${ac_ext} -o conftest $LIBS >/dev/null 2>&1'
  315.  
  316.  
  317. if test -z "$CC"; then
  318.   # Extract the first word of `gcc', so it can be a program name with args.
  319.   set ac_dummy gcc; ac_word=$2
  320.   test -n "$silent" || /bin/echo "checking for $ac_word"
  321.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  322.   for ac_dir in $PATH; do
  323.     test -z "$ac_dir" && ac_dir=.
  324.     if test -f $ac_dir/$ac_word; then
  325.       CC="gcc"
  326.       break
  327.     fi
  328.   done
  329.   IFS="$ac_save_ifs"
  330. fi
  331. test -z "$CC" && CC="cc"
  332. test -n "$CC" && test -n "$verbose" && /bin/echo "    setting CC to $CC"
  333.  
  334. # Find out if we are using GNU C, under whatever name.
  335. cat > conftest.c <<EOF
  336. #ifdef __GNUC__
  337.   yes
  338. #endif
  339. EOF
  340. ${CC-cc} -E conftest.c > conftest.out 2>&1
  341. if egrep yes conftest.out >/dev/null 2>&1; then
  342.   GCC=1 # For later tests.
  343. fi
  344. rm -f conftest*
  345.  
  346. test -n "$silent" || /bin/echo "checking how to run the C preprocessor"
  347. if test -z "$CPP"; then
  348.   # This must be in double quotes, not single quotes, because CPP may get
  349.   # substituted into the Makefile and ``${CC-cc}'' will simply confuse
  350.   # make.  It must be expanded now.
  351.   CPP="${CC-cc} -E"
  352.   cat > conftest.${ac_ext} <<EOF
  353. #include "confdefs.h"
  354. #include <stdio.h>
  355. Syntax Error
  356. EOF
  357. # Some shells (Coherent) do redirections in the wrong order, so need
  358. # the parens.
  359. ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  360. if test -z "$ac_err"; then
  361.   :
  362. else
  363.   rm -rf conftest*
  364.   CPP="${CC-cc} -E -traditional-cpp"
  365.   cat > conftest.${ac_ext} <<EOF
  366. #include "confdefs.h"
  367. #include <stdio.h>
  368. Syntax Error
  369. EOF
  370. # Some shells (Coherent) do redirections in the wrong order, so need
  371. # the parens.
  372. ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  373. if test -z "$ac_err"; then
  374.   :
  375. else
  376.   rm -rf conftest*
  377.   CPP=/lib/cpp
  378. fi
  379. rm -f conftest*
  380. fi
  381. rm -f conftest*
  382. fi
  383. test -n "$verbose" && /bin/echo "    setting CPP to $CPP"
  384.  
  385. if test -n "$GCC"; then
  386.   test -n "$silent" || /bin/echo "checking whether -traditional is needed"
  387.   ac_pattern="Autoconf.*'x'"
  388.   ac_prog='#include <sgtty.h>
  389. Autoconf TIOCGETP'
  390.   cat > conftest.${ac_ext} <<EOF
  391. #include "confdefs.h"
  392. $ac_prog
  393. EOF
  394. eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  395. if egrep "$ac_pattern" conftest.out >/dev/null 2>&1; then
  396.   rm -rf conftest*
  397.   ac_need_trad=1
  398.  
  399. fi
  400. rm -f conftest*
  401.  
  402.  
  403.   if test -z "$ac_need_trad"; then
  404.     ac_prog='#include <termio.h>
  405. Autoconf TCGETA'
  406.     cat > conftest.${ac_ext} <<EOF
  407. #include "confdefs.h"
  408. $ac_prog
  409. EOF
  410. eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  411. if egrep "$ac_pattern" conftest.out >/dev/null 2>&1; then
  412.   rm -rf conftest*
  413.   ac_need_trad=1
  414.  
  415. fi
  416. rm -f conftest*
  417.  
  418.   fi
  419.   test -n "$ac_need_trad" && CC="$CC -traditional"
  420. fi
  421.  
  422. # Make sure to not get the incompatible SysV /etc/install and
  423. # /usr/sbin/install, which might be in PATH before a BSD-like install,
  424. # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  425. # or the AFS install, which mishandles nonexistent args, or
  426. # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  427. # `staff', or /sbin/install on IRIX which has incompatible command-line
  428. # syntax.  Sigh.
  429. #
  430. #     On most BSDish systems install is in /usr/bin, not /usr/ucb
  431. #     anyway.
  432. # This turns out not to be true, so the mere pathname isn't an indication
  433. # of whether the program works.  What we really need is a set of tests for
  434. # the install program to see if it actually works in all the required ways.
  435. #
  436. # Avoid using ./install, which might have been erroneously created
  437. # by make from ./install.sh.
  438. if test "z${INSTALL}" = "z" ; then
  439.   test -n "$silent" || /bin/echo "checking for a BSD compatible install"
  440.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  441.   for ac_dir in $PATH; do
  442.     case "$ac_dir" in
  443.     ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  444.     *)
  445.       # OSF1 and SCO ODT 3.0 have their own names for install.
  446.       for ac_prog in installbsd scoinst install; do
  447.         if test -f $ac_dir/$ac_prog; then
  448.       if test $ac_prog = install &&
  449.             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  450.         # AIX install.  It has an incompatible calling convention.
  451.         # OSF/1 installbsd also uses dspmsg, but is usable.
  452.         :
  453.       else
  454.         INSTALL="$ac_dir/$ac_prog -c"
  455.         INSTALL_PROGRAM='${INSTALL}'
  456.         INSTALL_DATA='${INSTALL} -m 644'
  457.         break 2
  458.       fi
  459.     fi
  460.       done
  461.       ;;
  462.     esac
  463.   done
  464.   IFS="$ac_save_ifs"
  465. fi
  466. if test -z "$INSTALL"; then
  467.   if test -f ${srcdir}/install.sh; then
  468.     # As a last resort, use the slow shell script.
  469.     INSTALL='@top_srcdir@/install.sh -c'
  470.   else
  471.     /bin/echo "configure: warning: ${srcdir}/install.sh not found; using cp" >&2
  472.     INSTALL=cp
  473.   fi
  474. fi
  475. test -n "$verbose" && /bin/echo "    setting INSTALL to $INSTALL"
  476. # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
  477. # It thinks the first close brace ends the variable substitution.
  478. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  479. test -n "$verbose" && /bin/echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  480. test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL}'
  481. test -n "$verbose" && /bin/echo "    setting INSTALL_DATA to $INSTALL_DATA"
  482.  
  483.  
  484. CHARSET="c-generic.c"
  485. if test -z "$i386_host_p"; then
  486.   # Extract the first word of `i386', so it can be a program name with args.
  487.   set ac_dummy i386; ac_word=$2
  488.   test -n "$silent" || /bin/echo "checking for $ac_word"
  489.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  490.   for ac_dir in $PATH; do
  491.     test -z "$ac_dir" && ac_dir=.
  492.     if test -f $ac_dir/$ac_word; then
  493.       i386_host_p="t"
  494.       break
  495.     fi
  496.   done
  497.   IFS="$ac_save_ifs"
  498. fi
  499. test -z "$i386_host_p" && i386_host_p="nil"
  500. test -n "$i386_host_p" && test -n "$verbose" && /bin/echo "    setting i386_host_p to $i386_host_p"
  501.  
  502. if test "${i386_host_p}" = "t" && i386 > /dev/null 2>&1; then
  503.    CHARSET="c-ibmpc.c"
  504. fi
  505.  
  506. # Systems that have -ltermlib should use that before -ltermcap (e.g. SVR4)
  507. found_termlib=''
  508. for termlib in termlib termcap terminfo curses ; do
  509.    ac_save_LIBS="${LIBS}"
  510. LIBS="${LIBS} -l${termlib}"
  511. ac_have_lib=""
  512. test -n "$silent" || /bin/echo "checking for -l${termlib}"
  513. cat > conftest.${ac_ext} <<EOF
  514. #include "confdefs.h"
  515.  
  516. int main() { return 0; }
  517. int t() { main();; return 0; }
  518. EOF
  519. if eval $ac_compile; then
  520.   rm -rf conftest*
  521.   ac_have_lib="1"
  522.  
  523. fi
  524. rm -f conftest*
  525. LIBS="${ac_save_LIBS}"
  526. if test -n "${ac_have_lib}"; then
  527.    :; LIBS="${LIBS} -l${termlib}"
  528. else
  529.    :; 
  530. fi
  531.  
  532.    case " ${LIBS} " in
  533.       *" -l${termlib} "* ) found_termlib=t; break ;;
  534.    esac
  535. done
  536. if test ".${found_termlib}" = "." ; then 
  537.    
  538. {
  539. test -n "$verbose" && \
  540. /bin/echo "    defining NO_TERMCAP"
  541. /bin/echo "#define" NO_TERMCAP "1" >> confdefs.h
  542. DEFS="$DEFS -DNO_TERMCAP=1"
  543. }
  544.  
  545. fi
  546.  
  547. ac_save_LIBS="${LIBS}"
  548. LIBS="${LIBS} -lBSD"
  549. ac_have_lib=""
  550. test -n "$silent" || /bin/echo "checking for -lBSD"
  551. cat > conftest.${ac_ext} <<EOF
  552. #include "confdefs.h"
  553.  
  554. int main() { return 0; }
  555. int t() { main();; return 0; }
  556. EOF
  557. if eval $ac_compile; then
  558.   rm -rf conftest*
  559.   ac_have_lib="1"
  560.  
  561. fi
  562. rm -f conftest*
  563. LIBS="${ac_save_LIBS}"
  564. if test -n "${ac_have_lib}"; then
  565.    :; LIBS="${LIBS} -lBSD"
  566. else
  567.    :; 
  568. fi
  569.  
  570. ac_save_LIBS="${LIBS}"
  571. LIBS="${LIBS} -lc"
  572. ac_have_lib=""
  573. test -n "$silent" || /bin/echo "checking for -lc"
  574. cat > conftest.${ac_ext} <<EOF
  575. #include "confdefs.h"
  576.  
  577. int main() { return 0; }
  578. int t() { main();; return 0; }
  579. EOF
  580. if eval $ac_compile; then
  581.   rm -rf conftest*
  582.   ac_have_lib="1"
  583.  
  584. fi
  585. rm -f conftest*
  586. LIBS="${ac_save_LIBS}"
  587. if test -n "${ac_have_lib}"; then
  588.    :; LIBS="${LIBS} -lc"
  589. else
  590.    :; 
  591. fi
  592.  
  593.  
  594. # Needed by Solaris 2.x to resolve references in libucb.  (and maybe other
  595. # SVR4 systems need this too?)
  596. ac_save_LIBS="${LIBS}"
  597. LIBS="${LIBS} -lelf"
  598. ac_have_lib=""
  599. test -n "$silent" || /bin/echo "checking for -lelf"
  600. cat > conftest.${ac_ext} <<EOF
  601. #include "confdefs.h"
  602.  
  603. int main() { return 0; }
  604. int t() { main();; return 0; }
  605. EOF
  606. if eval $ac_compile; then
  607.   rm -rf conftest*
  608.   ac_have_lib="1"
  609.  
  610. fi
  611. rm -f conftest*
  612. LIBS="${ac_save_LIBS}"
  613. if test -n "${ac_have_lib}"; then
  614.    :; LIBS="${LIBS} -lelf"
  615. else
  616.    :; 
  617. fi
  618.  
  619.  
  620. # Needed for SVR4
  621. my_LIBS_save="${LIBS}"
  622. LIBS="${LIBS} -L/gnu/ucblib"
  623. ac_save_LIBS="${LIBS}"
  624. LIBS="${LIBS} -lucb"
  625. ac_have_lib=""
  626. test -n "$silent" || /bin/echo "checking for -lucb"
  627. cat > conftest.${ac_ext} <<EOF
  628. #include "confdefs.h"
  629.  
  630. int main() { return 0; }
  631. int t() { main();; return 0; }
  632. EOF
  633. if eval $ac_compile; then
  634.   rm -rf conftest*
  635.   ac_have_lib="1"
  636.  
  637. fi
  638. rm -f conftest*
  639. LIBS="${ac_save_LIBS}"
  640. if test -n "${ac_have_lib}"; then
  641.    :; LIBS="${LIBS} -lucb"
  642. else
  643.    :; LIBS="${my_LIBS_save}"
  644. fi
  645.  
  646. case " ${LIBS} " in
  647.    *' -lucb '* ) 
  648.       echo "*** Note: You may need to set LD_LIBRARY_PATH or LD_PATH to" 1>&2
  649.       echo "*** contain /gnu/ucblib for the ispell executables to work." 1>&2
  650.       echo "*** (don't blame us, this is SVR4 lossage)" 1>&2
  651.      ;;
  652. esac   
  653.  
  654. test -n "$silent" || /bin/echo "checking for return type of signal handlers"
  655. cat > conftest.${ac_ext} <<EOF
  656. #include "confdefs.h"
  657. #include <sys/types.h>
  658. #include <signal.h>
  659. #ifdef signal
  660. #undef signal
  661. #endif
  662. extern void (*signal ()) ();
  663. int main() { return 0; }
  664. int t() { int i;; return 0; }
  665. EOF
  666. if eval $ac_compile; then
  667.   rm -rf conftest*
  668.   
  669. {
  670. test -n "$verbose" && \
  671. /bin/echo "    defining" RETSIGTYPE to be "void"
  672. /bin/echo "#define" RETSIGTYPE "void" >> confdefs.h
  673. DEFS="$DEFS -DRETSIGTYPE=void"
  674. }
  675.  
  676.  
  677. else
  678.   rm -rf conftest*
  679.   
  680. {
  681. test -n "$verbose" && \
  682. /bin/echo "    defining" RETSIGTYPE to be "int"
  683. /bin/echo "#define" RETSIGTYPE "int" >> confdefs.h
  684. DEFS="$DEFS -DRETSIGTYPE=int"
  685. }
  686.  
  687. fi
  688. rm -f conftest*
  689.  
  690.  
  691. ac_prog='/* Ultrix mips cc rejects this.  */
  692. typedef int charset[2]; const charset x;
  693. /* SunOS 4.1.1 cc rejects this.  */
  694. char const *const *ccp;
  695. char **p;
  696. /* AIX XL C 1.02.0.0 rejects this.
  697.    It does not let you subtract one const X* pointer from another in an arm
  698.    of an if-expression whose if-part is not a constant expression */
  699. const char *g = "string";
  700. ccp = &g + (g ? g-g : 0);
  701. /* HPUX 7.0 cc rejects these. */
  702. ++ccp;
  703. p = (char**) ccp;
  704. ccp = (char const *const *) p;
  705. { /* SCO 3.2v4 cc rejects this.  */
  706.   char *t;
  707.   char const *s = 0 ? (char *) 0 : (char const *) 0;
  708.  
  709.   *t++ = 0;
  710. }
  711. { /* Someone thinks the Sun supposedly-ANSI compiler will reject this.  */
  712.   int x[] = {25,17};
  713.   const int *foo = &x[0];
  714.   ++foo;
  715. }
  716. { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
  717.   typedef const int *iptr;
  718.   iptr p = 0;
  719.   ++p;
  720. }
  721. { /* AIX XL C 1.02.0.0 rejects this saying
  722.      "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
  723.   struct s { int j; const int *ap[3]; };
  724.   struct s *b; b->j = 5;
  725. }
  726. { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
  727.   const int foo = 10;
  728. }'
  729. test -n "$silent" || /bin/echo "checking for lack of working const"
  730. cat > conftest.${ac_ext} <<EOF
  731. #include "confdefs.h"
  732.  
  733. int main() { return 0; }
  734. int t() { $ac_prog; return 0; }
  735. EOF
  736. if eval $ac_compile; then
  737.   :
  738. else
  739.   rm -rf conftest*
  740.   
  741. {
  742. test -n "$verbose" && \
  743. /bin/echo "    defining" const to be empty
  744. /bin/echo "#define" const "" >> confdefs.h
  745. DEFS="$DEFS -Dconst="
  746. }
  747.  
  748. fi
  749. rm -f conftest*
  750.  
  751. if test -n "$GCC"; then
  752. test -n "$silent" || /bin/echo "checking for inline"
  753. cat > conftest.${ac_ext} <<EOF
  754. #include "confdefs.h"
  755.  
  756. int main() { return 0; }
  757. int t() { } inline foo() {; return 0; }
  758. EOF
  759. if eval $ac_compile; then
  760.   :
  761. else
  762.   rm -rf conftest*
  763.   
  764. {
  765. test -n "$verbose" && \
  766. /bin/echo "    defining" inline to be "__inline"
  767. /bin/echo "#define" inline "__inline" >> confdefs.h
  768. DEFS="$DEFS -Dinline=__inline"
  769. }
  770.  
  771. fi
  772. rm -f conftest*
  773.  
  774. fi
  775.  
  776. # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  777. # for constant arguments.  Useless!
  778. test -n "$silent" || /bin/echo "checking for working alloca.h"
  779. cat > conftest.${ac_ext} <<EOF
  780. #include "confdefs.h"
  781. #include <alloca.h>
  782. int main() { return 0; }
  783. int t() { char *p = alloca(2 * sizeof(int));; return 0; }
  784. EOF
  785. if eval $ac_compile; then
  786.   rm -rf conftest*
  787.   
  788. {
  789. test -n "$verbose" && \
  790. /bin/echo "    defining HAVE_ALLOCA_H"
  791. /bin/echo "#define" HAVE_ALLOCA_H "1" >> confdefs.h
  792. DEFS="$DEFS -DHAVE_ALLOCA_H=1"
  793. }
  794.  
  795.  
  796. fi
  797. rm -f conftest*
  798.  
  799. ac_decl="#ifdef __GNUC__
  800. #define alloca __builtin_alloca
  801. #else
  802. #if HAVE_ALLOCA_H
  803. #include <alloca.h>
  804. #else
  805. #ifdef _AIX
  806.  #pragma alloca
  807. #else
  808. char *alloca ();
  809. #endif
  810. #endif
  811. #endif
  812. "
  813. test -n "$silent" || /bin/echo "checking for alloca"
  814. cat > conftest.${ac_ext} <<EOF
  815. #include "confdefs.h"
  816. $ac_decl
  817. int main() { return 0; }
  818. int t() { char *p = (char *) alloca(1);; return 0; }
  819. EOF
  820. if eval $ac_compile; then
  821.   rm -rf conftest*
  822.   
  823. {
  824. test -n "$verbose" && \
  825. /bin/echo "    defining HAVE_ALLOCA"
  826. /bin/echo "#define" HAVE_ALLOCA "1" >> confdefs.h
  827. DEFS="$DEFS -DHAVE_ALLOCA=1"
  828. }
  829.  
  830.  
  831. else
  832.   rm -rf conftest*
  833.   ac_alloca_missing=1
  834. cat > conftest.${ac_ext} <<EOF
  835. #include "confdefs.h"
  836.  
  837. #if defined(CRAY) && ! defined(CRAY2)
  838. winnitude
  839. #else
  840. lossage
  841. #endif
  842.  
  843. EOF
  844. eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  845. if egrep "winnitude" conftest.out >/dev/null 2>&1; then
  846.   rm -rf conftest*
  847.   test -n "$silent" || /bin/echo "checking for _getb67"
  848. cat > conftest.${ac_ext} <<EOF
  849. #include "confdefs.h"
  850. #include <ctype.h>
  851. int main() { return 0; }
  852. int t() { 
  853. /* The GNU C library defines this for functions which it implements
  854.     to always fail with ENOSYS.  Some functions are actually named
  855.     something starting with __ and the normal name is an alias.  */
  856. #if defined (__stub__getb67) || defined (__stub____getb67)
  857. choke me
  858. #else
  859. /* Override any gcc2 internal prototype to avoid an error.  */
  860. extern char _getb67(); _getb67();
  861. #endif
  862. ; return 0; }
  863. EOF
  864. if eval $ac_compile; then
  865.   rm -rf conftest*
  866.   {
  867. test -n "$verbose" && \
  868. /bin/echo "    defining" CRAY_STACKSEG_END to be "_getb67"
  869. /bin/echo "#define" CRAY_STACKSEG_END "_getb67" >> confdefs.h
  870. DEFS="$DEFS -DCRAY_STACKSEG_END=_getb67"
  871. }
  872.  
  873.  
  874. else
  875.   rm -rf conftest*
  876.   test -n "$silent" || /bin/echo "checking for GETB67"
  877. cat > conftest.${ac_ext} <<EOF
  878. #include "confdefs.h"
  879. #include <ctype.h>
  880. int main() { return 0; }
  881. int t() { 
  882. /* The GNU C library defines this for functions which it implements
  883.     to always fail with ENOSYS.  Some functions are actually named
  884.     something starting with __ and the normal name is an alias.  */
  885. #if defined (__stub_GETB67) || defined (__stub___GETB67)
  886. choke me
  887. #else
  888. /* Override any gcc2 internal prototype to avoid an error.  */
  889. extern char GETB67(); GETB67();
  890. #endif
  891. ; return 0; }
  892. EOF
  893. if eval $ac_compile; then
  894.   rm -rf conftest*
  895.   {
  896. test -n "$verbose" && \
  897. /bin/echo "    defining" CRAY_STACKSEG_END to be "GETB67"
  898. /bin/echo "#define" CRAY_STACKSEG_END "GETB67" >> confdefs.h
  899. DEFS="$DEFS -DCRAY_STACKSEG_END=GETB67"
  900. }
  901.  
  902.  
  903. else
  904.   rm -rf conftest*
  905.   test -n "$silent" || /bin/echo "checking for getb67"
  906. cat > conftest.${ac_ext} <<EOF
  907. #include "confdefs.h"
  908. #include <ctype.h>
  909. int main() { return 0; }
  910. int t() { 
  911. /* The GNU C library defines this for functions which it implements
  912.     to always fail with ENOSYS.  Some functions are actually named
  913.     something starting with __ and the normal name is an alias.  */
  914. #if defined (__stub_getb67) || defined (__stub___getb67)
  915. choke me
  916. #else
  917. /* Override any gcc2 internal prototype to avoid an error.  */
  918. extern char getb67(); getb67();
  919. #endif
  920. ; return 0; }
  921. EOF
  922. if eval $ac_compile; then
  923.   rm -rf conftest*
  924.   {
  925. test -n "$verbose" && \
  926. /bin/echo "    defining" CRAY_STACKSEG_END to be "getb67"
  927. /bin/echo "#define" CRAY_STACKSEG_END "getb67" >> confdefs.h
  928. DEFS="$DEFS -DCRAY_STACKSEG_END=getb67"
  929. }
  930.  
  931.  
  932. fi
  933. rm -f conftest*
  934.  
  935. fi
  936. rm -f conftest*
  937.  
  938. fi
  939. rm -f conftest*
  940.  
  941.  
  942. fi
  943. rm -f conftest*
  944.  
  945.  
  946. fi
  947. rm -f conftest*
  948.  
  949. if test -n "$ac_alloca_missing"; then
  950.   # The SVR3 libPW and SVR4 libucb both contain incompatible functions
  951.   # that cause trouble.  Some versions do not even contain alloca or
  952.   # contain a buggy version.  If you still want to use their alloca,
  953.   # use ar to extract alloca.o from them instead of compiling alloca.c.
  954.   ALLOCA=alloca.o
  955.   
  956. {
  957. test -n "$verbose" && \
  958. /bin/echo "    defining C_ALLOCA"
  959. /bin/echo "#define" C_ALLOCA "1" >> confdefs.h
  960. DEFS="$DEFS -DC_ALLOCA=1"
  961. }
  962.  
  963.  
  964.   test -n "$silent" || /bin/echo "checking stack direction for C alloca"
  965.   test -n "$silent" || /bin/echo "checking whether cross-compiling"
  966. # If we cannot run a trivial program, we must be cross compiling.
  967. cat > conftest.${ac_ext} <<EOF
  968. #include "confdefs.h"
  969. main(){exit(0);}
  970. EOF
  971. eval $ac_compile
  972. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  973.   :
  974. else
  975.   cross_compiling=1
  976. fi
  977. rm -fr conftest*
  978.  
  979. if test -n "$cross_compiling"
  980. then
  981.   
  982. {
  983. test -n "$verbose" && \
  984. /bin/echo "    defining" STACK_DIRECTION to be "0"
  985. /bin/echo "#define" STACK_DIRECTION "0" >> confdefs.h
  986. DEFS="$DEFS -DSTACK_DIRECTION=0"
  987. }
  988.  
  989. else
  990. cat > conftest.${ac_ext} <<EOF
  991. #include "confdefs.h"
  992. find_stack_direction ()
  993. {
  994.   static char *addr = 0;
  995.   auto char dummy;
  996.   if (addr == 0)
  997.     {
  998.       addr = &dummy;
  999.       return find_stack_direction ();
  1000.     }
  1001.   else
  1002.     return (&dummy > addr) ? 1 : -1;
  1003. }
  1004. main ()
  1005. {
  1006.   exit (find_stack_direction() < 0);
  1007. }
  1008. EOF
  1009. eval $ac_compile
  1010. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1011.   
  1012. {
  1013. test -n "$verbose" && \
  1014. /bin/echo "    defining" STACK_DIRECTION to be "1"
  1015. /bin/echo "#define" STACK_DIRECTION "1" >> confdefs.h
  1016. DEFS="$DEFS -DSTACK_DIRECTION=1"
  1017. }
  1018.  
  1019.  
  1020. else
  1021.   
  1022. {
  1023. test -n "$verbose" && \
  1024. /bin/echo "    defining" STACK_DIRECTION to be "-1"
  1025. /bin/echo "#define" STACK_DIRECTION "-1" >> confdefs.h
  1026. DEFS="$DEFS -DSTACK_DIRECTION=-1"
  1027. }
  1028.  
  1029. fi
  1030. fi
  1031. rm -fr conftest*
  1032. fi
  1033.  
  1034.  
  1035. #Disable check for termio.h and termios.h by removing from list.
  1036. for ac_hdr in malloc.h string.h strings.h
  1037. do
  1038. ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./' '[A-Z]__'`
  1039. test -n "$silent" || /bin/echo "checking for ${ac_hdr}"
  1040. cat > conftest.${ac_ext} <<EOF
  1041. #include "confdefs.h"
  1042. #include <${ac_hdr}>
  1043. EOF
  1044. # Some shells (Coherent) do redirections in the wrong order, so need
  1045. # the parens.
  1046. ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1047. if test -z "$ac_err"; then
  1048.   rm -rf conftest*
  1049.   
  1050. {
  1051. test -n "$verbose" && \
  1052. /bin/echo "    defining ${ac_tr_hdr}"
  1053. /bin/echo "#define" ${ac_tr_hdr} "1" >> confdefs.h
  1054. DEFS="$DEFS -D${ac_tr_hdr}=1"
  1055. }
  1056.  
  1057.  
  1058. fi
  1059. rm -f conftest*
  1060. done
  1061.  
  1062.  
  1063. test -n "$silent" || /bin/echo "checking for checking for broken TIOCGWINSZ"
  1064. cat > conftest.${ac_ext} <<EOF
  1065. #include "confdefs.h"
  1066.  
  1067. #include <sys/ioctl.h>
  1068. #ifdef HAVE_TERMIOS_H
  1069. #include <termios.h>
  1070. #else /* ! HAVE_TERMIOS_H */
  1071. #ifdef HAVE_TERMIO_H
  1072. #include <termio.h>
  1073. #else /* ! HAVE_TERMIO_H */
  1074. #include <sgtty.h>
  1075. #endif
  1076. #endif
  1077.  
  1078. int main() { return 0; }
  1079. int t() { 
  1080. #ifdef TIOCGWINSZ
  1081. struct winsize    wsize;
  1082. #endif /* TIOCGWINSZ */
  1083. ; return 0; }
  1084. EOF
  1085. if eval $ac_compile; then
  1086.   rm -rf conftest*
  1087.   :
  1088.  
  1089. else
  1090.   rm -rf conftest*
  1091.   
  1092. {
  1093. test -n "$verbose" && \
  1094. /bin/echo "    defining BROKEN_TIOCGWINSZ"
  1095. /bin/echo "#define" BROKEN_TIOCGWINSZ "1" >> confdefs.h
  1096. DEFS="$DEFS -DBROKEN_TIOCGWINSZ=1"
  1097. }
  1098.  
  1099.  
  1100. fi
  1101. rm -f conftest*
  1102.  
  1103.  
  1104.  
  1105. # Set default prefixes.
  1106. if test -n "$prefix"; then
  1107.   test -z "$exec_prefix" && exec_prefix='${prefix}' # Let make expand it.
  1108.   ac_prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  1109. fi
  1110. if test -n "$exec_prefix"; then
  1111.   ac_prsub="$ac_prsub
  1112. s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%exec_prefix\\1=\\2$exec_prefix%"
  1113. fi
  1114. # Any assignment to VPATH causes Sun make to only execute
  1115. # the first set of double-colon rules, so remove it if not needed.
  1116. # If there is a colon in the path, we need to keep it.
  1117. if test "x$srcdir" = x.; then
  1118.   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  1119. fi
  1120.  
  1121. # Quote sed substitution magic chars in DEFS.
  1122. cat >conftest.def <<EOF
  1123. $DEFS
  1124. EOF
  1125. ac_escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  1126. DEFS=`sed "$ac_escape_ampersand_and_backslash" <conftest.def`
  1127. rm -f conftest.def
  1128. # Substitute for predefined variables.
  1129.  
  1130. trap 'rm -f config.status; exit 1' 1 2 15
  1131. /bin/echo creating config.status
  1132. rm -f config.status
  1133. cat > config.status <<EOF
  1134. #!/bin/sh
  1135. # Generated automatically by configure.
  1136. # Run this file to recreate the current configuration.
  1137. # This directory was configured as follows,
  1138. # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  1139. #
  1140. # $0 $configure_args
  1141.  
  1142. ac_cs_usage="Usage: config.status [--recheck] [--version] [--help]"
  1143. for ac_option
  1144. do
  1145.   case "\$ac_option" in
  1146.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1147.     /bin/echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
  1148.     exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
  1149.   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  1150.     /bin/echo "config.status generated by autoconf version 1.9"
  1151.     exit 0 ;;
  1152.   -help | --help | --hel | --he | --h)
  1153.     /bin/echo "\$ac_cs_usage"; exit 0 ;;
  1154.   *) /bin/echo "\$ac_cs_usage"; exit 1 ;;
  1155.   esac
  1156. done
  1157.  
  1158. trap 'rm -f Makefile; exit 1' 1 2 15
  1159. CC='$CC'
  1160. CPP='$CPP'
  1161. INSTALL='$INSTALL'
  1162. INSTALL_PROGRAM='$INSTALL_PROGRAM'
  1163. INSTALL_DATA='$INSTALL_DATA'
  1164. i386_host_p='$i386_host_p'
  1165. ALLOCA='$ALLOCA'
  1166. CHARSET='$CHARSET'
  1167. LIBS='$LIBS'
  1168. srcdir='$srcdir'
  1169. top_srcdir='$top_srcdir'
  1170. prefix='$prefix'
  1171. exec_prefix='$exec_prefix'
  1172. DEFS='$DEFS'
  1173. ac_prsub='$ac_prsub'
  1174. ac_vpsub='$ac_vpsub'
  1175. extrasub='$extrasub'
  1176. EOF
  1177. cat >> config.status <<\EOF
  1178.  
  1179. ac_given_srcdir=$srcdir
  1180.  
  1181. CONFIG_FILES=${CONFIG_FILES-"Makefile"}
  1182. for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  1183.   # Remove last slash and all that follows it.  Not all systems have dirname.
  1184.   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  1185.   if test "$ac_dir" != "$ac_file"; then
  1186.     # The file is in a subdirectory.
  1187.     test ! -d "$ac_dir" && mkdir "$ac_dir"
  1188.     ac_dir_suffix="/$ac_dir"
  1189.   else
  1190.     ac_dir_suffix=
  1191.   fi
  1192.  
  1193.   # A "../" for each directory in $ac_dir_suffix.
  1194.   ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  1195.   case "$ac_given_srcdir" in
  1196.   .)  srcdir=.; top_srcdir="$ac_dots." ;;
  1197.   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  1198.   *) # Relative path.
  1199.     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  1200.     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  1201.   esac
  1202.  
  1203.   /bin/echo creating "$ac_file"
  1204.   rm -f "$ac_file"
  1205.   comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
  1206.   case "$ac_file" in
  1207.     *.c | *.h | *.C | *.cc | *.m )  /bin/echo "/* $comment_str */" > "$ac_file" ;;
  1208.     * )          /bin/echo "# $comment_str"     > "$ac_file" ;;
  1209.   esac
  1210.   sed -e "
  1211. $ac_prsub
  1212. $ac_vpsub
  1213. $extrasub
  1214. s%@CC@%$CC%g
  1215. s%@CPP@%$CPP%g
  1216. s%@INSTALL@%$INSTALL%g
  1217. s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  1218. s%@INSTALL_DATA@%$INSTALL_DATA%g
  1219. s%@i386_host_p@%$i386_host_p%g
  1220. s%@ALLOCA@%$ALLOCA%g
  1221. s%@CHARSET@%$CHARSET%g
  1222. s%@LIBS@%$LIBS%g
  1223. s%@srcdir@%$srcdir%g
  1224. s%@top_srcdir@%$top_srcdir%g
  1225. s%@prefix@%$prefix%g
  1226. s%@exec_prefix@%$exec_prefix%g
  1227. s%@DEFS@%$DEFS%
  1228. " $ac_given_srcdir/${ac_file}.in >> $ac_file
  1229. fi; done
  1230.  
  1231.  
  1232. exit 0
  1233. EOF
  1234. chmod +x config.status
  1235. test -n "$no_create" || ${CONFIG_SHELL-/bin/sh} config.status
  1236.  
  1237.