home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd2.bin / bbs / gnu / f2c-1993.04.28-src.lha / GNU / src / amiga / f2c-1993.04.28 / configure < prev    next >
Text File  |  1994-05-02  |  22KB  |  668 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=f2c.h
  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.  
  318. # We want these before the checks, so the checks can modify their values.
  319. test -z "$CFLAGS" && CFLAGS= auto_cflags=1
  320. test -z "$LDFLAGS" && LDFLAGS=
  321.  
  322. if test -z "$CC"; then
  323.   # Extract the first word of `gcc', so it can be a program name with args.
  324.   set ac_dummy gcc; ac_word=$2
  325.   test -n "$silent" || /bin/echo "checking for $ac_word"
  326.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  327.   for ac_dir in $PATH; do
  328.     test -z "$ac_dir" && ac_dir=.
  329.     if test -f $ac_dir/$ac_word; then
  330.       CC="gcc"
  331.       break
  332.     fi
  333.   done
  334.   IFS="$ac_save_ifs"
  335. fi
  336. test -z "$CC" && CC="cc"
  337. test -n "$CC" && test -n "$verbose" && /bin/echo "    setting CC to $CC"
  338.  
  339. # Find out if we are using GNU C, under whatever name.
  340. cat > conftest.c <<EOF
  341. #ifdef __GNUC__
  342.   yes
  343. #endif
  344. EOF
  345. ${CC-cc} -E conftest.c > conftest.out 2>&1
  346. if egrep yes conftest.out >/dev/null 2>&1; then
  347.   GCC=1 # For later tests.
  348. fi
  349. rm -f conftest*
  350.  
  351.  
  352. # If we're using gcc and the user hasn't specified CFLAGS, add -O to CFLAGS.
  353. test -n "$GCC" && test -n "$auto_cflags" && CFLAGS="$CFLAGS -O2"
  354.  
  355.  
  356. test -n "$silent" || /bin/echo "checking how to run the C preprocessor"
  357. if test -z "$CPP"; then
  358.   # This must be in double quotes, not single quotes, because CPP may get
  359.   # substituted into the Makefile and ``${CC-cc}'' will simply confuse
  360.   # make.  It must be expanded now.
  361.   CPP="${CC-cc} -E"
  362.   cat > conftest.${ac_ext} <<EOF
  363. #include "confdefs.h"
  364. #include <stdio.h>
  365. Syntax Error
  366. EOF
  367. # Some shells (Coherent) do redirections in the wrong order, so need
  368. # the parens.
  369. ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  370. if test -z "$ac_err"; then
  371.   :
  372. else
  373.   rm -rf conftest*
  374.   CPP="${CC-cc} -E -traditional-cpp"
  375.   cat > conftest.${ac_ext} <<EOF
  376. #include "confdefs.h"
  377. #include <stdio.h>
  378. Syntax Error
  379. EOF
  380. # Some shells (Coherent) do redirections in the wrong order, so need
  381. # the parens.
  382. ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  383. if test -z "$ac_err"; then
  384.   :
  385. else
  386.   rm -rf conftest*
  387.   CPP=/lib/cpp
  388. fi
  389. rm -f conftest*
  390. fi
  391. rm -f conftest*
  392. fi
  393. test -n "$verbose" && /bin/echo "    setting CPP to $CPP"
  394.  
  395. if test -n "$GCC"; then
  396.   test -n "$silent" || /bin/echo "checking whether -traditional is needed"
  397.   ac_pattern="Autoconf.*'x'"
  398.   ac_prog='#include <sgtty.h>
  399. Autoconf TIOCGETP'
  400.   cat > conftest.${ac_ext} <<EOF
  401. #include "confdefs.h"
  402. $ac_prog
  403. EOF
  404. eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  405. if egrep "$ac_pattern" conftest.out >/dev/null 2>&1; then
  406.   rm -rf conftest*
  407.   ac_need_trad=1
  408.  
  409. fi
  410. rm -f conftest*
  411.  
  412.  
  413.   if test -z "$ac_need_trad"; then
  414.     ac_prog='#include <termio.h>
  415. Autoconf TCGETA'
  416.     cat > conftest.${ac_ext} <<EOF
  417. #include "confdefs.h"
  418. $ac_prog
  419. EOF
  420. eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  421. if egrep "$ac_pattern" conftest.out >/dev/null 2>&1; then
  422.   rm -rf conftest*
  423.   ac_need_trad=1
  424.  
  425. fi
  426. rm -f conftest*
  427.  
  428.   fi
  429.   test -n "$ac_need_trad" && CC="$CC -traditional"
  430. fi
  431.  
  432. # Make sure to not get the incompatible SysV /etc/install and
  433. # /usr/sbin/install, which might be in PATH before a BSD-like install,
  434. # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  435. # or the AFS install, which mishandles nonexistent args, or
  436. # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  437. # `staff', or /sbin/install on IRIX which has incompatible command-line
  438. # syntax.  Sigh.
  439. #
  440. #     On most BSDish systems install is in /usr/bin, not /usr/ucb
  441. #     anyway.
  442. # This turns out not to be true, so the mere pathname isn't an indication
  443. # of whether the program works.  What we really need is a set of tests for
  444. # the install program to see if it actually works in all the required ways.
  445. #
  446. # Avoid using ./install, which might have been erroneously created
  447. # by make from ./install.sh.
  448. if test "z${INSTALL}" = "z" ; then
  449.   test -n "$silent" || /bin/echo "checking for a BSD compatible install"
  450.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  451.   for ac_dir in $PATH; do
  452.     case "$ac_dir" in
  453.     ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  454.     *)
  455.       # OSF1 and SCO ODT 3.0 have their own names for install.
  456.       for ac_prog in installbsd scoinst install; do
  457.         if test -f $ac_dir/$ac_prog; then
  458.       if test $ac_prog = install &&
  459.             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  460.         # AIX install.  It has an incompatible calling convention.
  461.         # OSF/1 installbsd also uses dspmsg, but is usable.
  462.         :
  463.       else
  464.         INSTALL="$ac_dir/$ac_prog -c"
  465.         INSTALL_PROGRAM='${INSTALL}'
  466.         INSTALL_DATA='${INSTALL} -m 644'
  467.         break 2
  468.       fi
  469.     fi
  470.       done
  471.       ;;
  472.     esac
  473.   done
  474.   IFS="$ac_save_ifs"
  475. fi
  476. if test -z "$INSTALL"; then
  477.   if test -f ${srcdir}/install.sh; then
  478.     # As a last resort, use the slow shell script.
  479.     INSTALL='@top_srcdir@/install.sh -c'
  480.   else
  481.     /bin/echo "configure: warning: ${srcdir}/install.sh not found; using cp" >&2
  482.     INSTALL=cp
  483.   fi
  484. fi
  485. test -n "$verbose" && /bin/echo "    setting INSTALL to $INSTALL"
  486. # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
  487. # It thinks the first close brace ends the variable substitution.
  488. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  489. test -n "$verbose" && /bin/echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  490. test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL}'
  491. test -n "$verbose" && /bin/echo "    setting INSTALL_DATA to $INSTALL_DATA"
  492.  
  493. if test -z "$RANLIB"; then
  494.   # Extract the first word of `ranlib', so it can be a program name with args.
  495.   set ac_dummy ranlib; ac_word=$2
  496.   test -n "$silent" || /bin/echo "checking for $ac_word"
  497.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  498.   for ac_dir in $PATH; do
  499.     test -z "$ac_dir" && ac_dir=.
  500.     if test -f $ac_dir/$ac_word; then
  501.       RANLIB="ranlib"
  502.       break
  503.     fi
  504.   done
  505.   IFS="$ac_save_ifs"
  506. fi
  507. test -z "$RANLIB" && RANLIB=":"
  508. test -n "$RANLIB" && test -n "$verbose" && /bin/echo "    setting RANLIB to $RANLIB"
  509.  
  510. for ac_prog in 'bison -y' byacc
  511. do
  512. if test -z "$YACC"; then
  513.   # Extract the first word of `$ac_prog', so it can be a program name with args.
  514.   set ac_dummy $ac_prog; ac_word=$2
  515.   test -n "$silent" || /bin/echo "checking for $ac_word"
  516.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  517.   for ac_dir in $PATH; do
  518.     test -z "$ac_dir" && ac_dir=.
  519.     if test -f $ac_dir/$ac_word; then
  520.       YACC="$ac_prog"
  521.       break
  522.     fi
  523.   done
  524.   IFS="$ac_save_ifs"
  525. fi
  526.  
  527. test -n "$YACC" && test -n "$verbose" && /bin/echo "    setting YACC to $YACC"
  528.  
  529. test -n "$YACC" && break
  530. done
  531. test -n "$YACC" || YACC="yacc"
  532.  
  533.  
  534. # Set default prefixes.
  535. if test -n "$prefix"; then
  536.   test -z "$exec_prefix" && exec_prefix='${prefix}' # Let make expand it.
  537.   ac_prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  538. fi
  539. if test -n "$exec_prefix"; then
  540.   ac_prsub="$ac_prsub
  541. s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%exec_prefix\\1=\\2$exec_prefix%"
  542. fi
  543. # Any assignment to VPATH causes Sun make to only execute
  544. # the first set of double-colon rules, so remove it if not needed.
  545. # If there is a colon in the path, we need to keep it.
  546. if test "x$srcdir" = x.; then
  547.   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  548. fi
  549.  
  550. # Quote sed substitution magic chars in DEFS.
  551. cat >conftest.def <<EOF
  552. $DEFS
  553. EOF
  554. ac_escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  555. DEFS=`sed "$ac_escape_ampersand_and_backslash" <conftest.def`
  556. rm -f conftest.def
  557. # Substitute for predefined variables.
  558.  
  559. trap 'rm -f config.status; exit 1' 1 2 15
  560. /bin/echo creating config.status
  561. rm -f config.status
  562. cat > config.status <<EOF
  563. #!/bin/sh
  564. # Generated automatically by configure.
  565. # Run this file to recreate the current configuration.
  566. # This directory was configured as follows,
  567. # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  568. #
  569. # $0 $configure_args
  570.  
  571. ac_cs_usage="Usage: config.status [--recheck] [--version] [--help]"
  572. for ac_option
  573. do
  574.   case "\$ac_option" in
  575.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  576.     /bin/echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
  577.     exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
  578.   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  579.     /bin/echo "config.status generated by autoconf version 1.9"
  580.     exit 0 ;;
  581.   -help | --help | --hel | --he | --h)
  582.     /bin/echo "\$ac_cs_usage"; exit 0 ;;
  583.   *) /bin/echo "\$ac_cs_usage"; exit 1 ;;
  584.   esac
  585. done
  586.  
  587. trap 'rm -f Makefile src/Makefile libF77/Makefile libI77/Makefile; exit 1' 1 2 15
  588. CC='$CC'
  589. CFLAGS='$CFLAGS'
  590. LDFLAGS='$LDFLAGS'
  591. CPP='$CPP'
  592. INSTALL='$INSTALL'
  593. INSTALL_PROGRAM='$INSTALL_PROGRAM'
  594. INSTALL_DATA='$INSTALL_DATA'
  595. RANLIB='$RANLIB'
  596. YACC='$YACC'
  597. LIBS='$LIBS'
  598. srcdir='$srcdir'
  599. top_srcdir='$top_srcdir'
  600. prefix='$prefix'
  601. exec_prefix='$exec_prefix'
  602. DEFS='$DEFS'
  603. ac_prsub='$ac_prsub'
  604. ac_vpsub='$ac_vpsub'
  605. extrasub='$extrasub'
  606. EOF
  607. cat >> config.status <<\EOF
  608.  
  609. ac_given_srcdir=$srcdir
  610.  
  611. CONFIG_FILES=${CONFIG_FILES-"Makefile src/Makefile libF77/Makefile libI77/Makefile"}
  612. for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  613.   # Remove last slash and all that follows it.  Not all systems have dirname.
  614.   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  615.   if test "$ac_dir" != "$ac_file"; then
  616.     # The file is in a subdirectory.
  617.     test ! -d "$ac_dir" && mkdir "$ac_dir"
  618.     ac_dir_suffix="/$ac_dir"
  619.   else
  620.     ac_dir_suffix=
  621.   fi
  622.  
  623.   # A "../" for each directory in $ac_dir_suffix.
  624.   ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  625.   case "$ac_given_srcdir" in
  626.   .)  srcdir=.; top_srcdir="$ac_dots." ;;
  627.   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  628.   *) # Relative path.
  629.     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  630.     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  631.   esac
  632.  
  633.   /bin/echo creating "$ac_file"
  634.   rm -f "$ac_file"
  635.   comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
  636.   case "$ac_file" in
  637.     *.c | *.h | *.C | *.cc | *.m )  /bin/echo "/* $comment_str */" > "$ac_file" ;;
  638.     * )          /bin/echo "# $comment_str"     > "$ac_file" ;;
  639.   esac
  640.   sed -e "
  641. $ac_prsub
  642. $ac_vpsub
  643. $extrasub
  644. s%@CC@%$CC%g
  645. s%@CFLAGS@%$CFLAGS%g
  646. s%@LDFLAGS@%$LDFLAGS%g
  647. s%@CPP@%$CPP%g
  648. s%@INSTALL@%$INSTALL%g
  649. s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  650. s%@INSTALL_DATA@%$INSTALL_DATA%g
  651. s%@RANLIB@%$RANLIB%g
  652. s%@YACC@%$YACC%g
  653. s%@LIBS@%$LIBS%g
  654. s%@srcdir@%$srcdir%g
  655. s%@top_srcdir@%$top_srcdir%g
  656. s%@prefix@%$prefix%g
  657. s%@exec_prefix@%$exec_prefix%g
  658. s%@DEFS@%$DEFS%
  659. " $ac_given_srcdir/${ac_file}.in >> $ac_file
  660. fi; done
  661.  
  662.  
  663. exit 0
  664. EOF
  665. chmod +x config.status
  666. test -n "$no_create" || ${CONFIG_SHELL-/bin/sh} config.status
  667.  
  668.