home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / extra-st / gnu / autoconf.8 / autoconf / autoconf-1.8 / configure < prev    next >
Encoding:
Text File  |  1994-04-15  |  17.3 KB  |  522 lines

  1. #!/bin/sh
  2. # Guess values for system-dependent variables and create Makefiles.
  3. # Generated automatically using autoconf version 1.8 
  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=`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=`echo $ac_option|sed -e 's/-*disable-//'`
  91.     # Reject names that aren't valid shell variable names.
  92.     if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  93.       echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  94.     fi
  95.     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  96.     eval "enable_${ac_feature}=no" ;;
  97.  
  98.   -enable-* | --enable-*)
  99.     ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  100.     # Reject names that aren't valid shell variable names.
  101.     if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  102.       echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  103.     fi
  104.     ac_feature=`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=1 ;; # 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.     echo "configure generated by autoconf version 1.8"
  201.     exit 0 ;;
  202.  
  203.   -with-* | --with-*)
  204.     ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  205.     # Reject names that aren't valid shell variable names.
  206.     if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  207.       echo "configure: $ac_package: invalid package name" >&2; exit 1
  208.     fi
  209.     ac_package=`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=`echo $ac_option|sed -e 's/-*without-//'`
  218.     # Reject names that aren't valid shell variable names.
  219.     if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  220.       echo "configure: $ac_package: invalid package name" >&2; exit 1
  221.     fi
  222.     ac_package=`echo $ac_package| sed 's/-/_/g'`
  223.     eval "with_${ac_package}=no" ;;
  224.  
  225.   --x) with_x=1 ;; # 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.   -*) echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
  242.     ;;
  243.  
  244.   *) 
  245.     if test -n "`echo $ac_option| sed 's/[-a-z0-9]//g'`"; then
  246.       echo "configure: warning: $ac_option: invalid host type" >&2
  247.     fi
  248.     if test "x$nonopt" -ne xNONE; then
  249.       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.   echo "configure: missing argument to --`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. 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=acgeneral.m4
  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=`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.     echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
  308.   else
  309.     echo "configure: can not find sources in ${srcdir}" >&2; exit 1
  310.   fi
  311. fi
  312.  
  313. ac_ext=c
  314. ac_cpp='${CPP} $CFLAGS'
  315. ac_compile='${CC-cc} $CFLAGS $LDFLAGS conftest.${ac_ext} -o conftest $LIBS >/dev/null 2>&1'
  316.  
  317. for ac_prog in gnum4 gm4 m4
  318. do
  319. if test -z "$M4"; then
  320.   # Extract the first word of `$ac_prog', so it can be a program name with args.
  321.   set ac_dummy $ac_prog; ac_word=$2
  322.   test -n "$silent" || echo "checking for $ac_word"
  323.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  324.   for ac_dir in $PATH; do
  325.     test -z "$ac_dir" && ac_dir=.
  326.     if test -f $ac_dir/$ac_word; then
  327.       M4="$ac_dir/$ac_word"
  328.       break
  329.     fi
  330.   done
  331.   IFS="$ac_save_ifs"
  332. fi
  333.  
  334. test -n "$M4" && test -n "$verbose" && echo "    setting M4 to $M4"
  335.  
  336. test -n "$M4" && break
  337. done
  338. test -n "$M4" || M4="m4"
  339.  
  340. # Make sure to not get the incompatible SysV /etc/install and
  341. # /usr/sbin/install, which might be in PATH before a BSD-like install,
  342. # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  343. # or the AFS install, which mishandles nonexistent args, or
  344. # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  345. # `staff', or /sbin/install on IRIX which has incompatible command-line
  346. # syntax.  Sigh.
  347. #
  348. #     On most BSDish systems install is in /usr/bin, not /usr/ucb
  349. #     anyway.
  350. # This turns out not to be true, so the mere pathname isn't an indication
  351. # of whether the program works.  What we really need is a set of tests for
  352. # the install program to see if it actually works in all the required ways.
  353. #
  354. # Avoid using ./install, which might have been erroneously created
  355. # by make from ./install.sh.
  356. if test "z${INSTALL}" = "z" ; then
  357.   test -n "$silent" || echo "checking for a BSD compatible install"
  358.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  359.   for ac_dir in $PATH; do
  360.     case "$ac_dir" in
  361.     ''|.|/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  362.     *)
  363.       # OSF1 and SCO ODT 3.0 have their own names for install.
  364.       for ac_prog in installbsd scoinst install; do
  365.         if test -f $ac_dir/$ac_prog; then
  366.       if grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  367.         : # AIX
  368.       else
  369.         INSTALL="$ac_dir/$ac_prog -c"
  370.         INSTALL_PROGRAM='${INSTALL}'
  371.         INSTALL_DATA='${INSTALL} -m 644'
  372.         break 2
  373.       fi
  374.     fi
  375.       done
  376.       ;;
  377.     esac
  378.   done
  379.   IFS="$ac_save_ifs"
  380. fi
  381. if test -z "$INSTALL"; then
  382.   if test -f ${srcdir}/install.sh; then
  383.     # As a last resort, use the slow shell script.
  384.     INSTALL='@top_srcdir@/install.sh -c'
  385.   else
  386.     echo "configure: warning: ${srcdir}/install.sh not found; using cp" >&2
  387.     INSTALL=cp
  388.   fi
  389. fi
  390. test -n "$verbose" && echo "    setting INSTALL to $INSTALL"
  391. # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
  392. # It thinks the first close brace ends the variable substitution.
  393. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  394. test -n "$verbose" && echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  395. test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL}'
  396. test -n "$verbose" && echo "    setting INSTALL_DATA to $INSTALL_DATA"
  397.  
  398. # Set default prefixes.
  399. if test -n "$prefix"; then
  400.   test -z "$exec_prefix" && exec_prefix='${prefix}' # Let make expand it.
  401.   ac_prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  402. fi
  403. if test -n "$exec_prefix"; then
  404.   ac_prsub="$ac_prsub
  405. s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%exec_prefix\\1=\\2$exec_prefix%"
  406. fi
  407. # Any assignment to VPATH causes Sun make to only execute
  408. # the first set of double-colon rules, so remove it if not needed.
  409. # If there is a colon in the path, we need to keep it.
  410. if test "x$srcdir" = x.; then
  411.   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  412. fi
  413.  
  414. # Quote sed substitution magic chars in DEFS.
  415. cat >conftest.def <<EOF
  416. $DEFS
  417. EOF
  418. ac_escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  419. DEFS=`sed "$ac_escape_ampersand_and_backslash" <conftest.def`
  420. rm -f conftest.def
  421. # Substitute for predefined variables.
  422.  
  423. trap 'rm -f config.status; exit 1' 1 2 15
  424. echo creating config.status
  425. rm -f config.status
  426. cat > config.status <<EOF
  427. #!/bin/sh
  428. # Generated automatically by configure.
  429. # Run this file to recreate the current configuration.
  430. # This directory was configured as follows,
  431. # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  432. #
  433. # $0 $configure_args
  434.  
  435. ac_cs_usage="Usage: config.status [--recheck] [--version] [--help]"
  436. for ac_option
  437. do
  438.   case "\$ac_option" in
  439.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  440.     echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
  441.     exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
  442.   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  443.     echo "config.status generated by autoconf version 1.8"
  444.     exit 0 ;;
  445.   -help | --help | --hel | --he | --h)
  446.     echo "\$ac_cs_usage"; exit 0 ;;
  447.   *) echo "\$ac_cs_usage"; exit 1 ;;
  448.   esac
  449. done
  450.  
  451. trap 'rm -f Makefile; exit 1' 1 2 15
  452. M4='$M4'
  453. INSTALL='$INSTALL'
  454. INSTALL_PROGRAM='$INSTALL_PROGRAM'
  455. INSTALL_DATA='$INSTALL_DATA'
  456. LIBS='$LIBS'
  457. srcdir='$srcdir'
  458. top_srcdir='$top_srcdir'
  459. prefix='$prefix'
  460. exec_prefix='$exec_prefix'
  461. DEFS='$DEFS'
  462. ac_prsub='$ac_prsub'
  463. ac_vpsub='$ac_vpsub'
  464. extrasub='$extrasub'
  465. EOF
  466. cat >> config.status <<\EOF
  467.  
  468. ac_given_srcdir=$srcdir
  469.  
  470. CONFIG_FILES=${CONFIG_FILES-"Makefile"}
  471. for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  472.   # Remove last slash and all that follows it.  Not all systems have dirname.
  473.   ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
  474.   if test "$ac_dir" != "$ac_file"; then
  475.     # The file is in a subdirectory.
  476.     test ! -d "$ac_dir" && mkdir "$ac_dir"
  477.     ac_dir_suffix="/$ac_dir"
  478.   else
  479.     ac_dir_suffix=
  480.   fi
  481.  
  482.   # A "../" for each directory in $ac_dir_suffix.
  483.   ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  484.   case "$ac_given_srcdir" in
  485.   .)  srcdir=.; top_srcdir="$ac_dots." ;;
  486.   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  487.   *) # Relative path.
  488.     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  489.     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  490.   esac
  491.  
  492.   echo creating "$ac_file"
  493.   rm -f "$ac_file"
  494.   comment_str="Generated automatically from `echo $ac_file|sed 's|.*/||'`.in by configure."
  495.   case "$ac_file" in
  496.     *.c | *.h | *.C | *.cc | *.m )  echo "/* $comment_str */" > "$ac_file" ;;
  497.     * )          echo "# $comment_str"     > "$ac_file" ;;
  498.   esac
  499.   sed -e "
  500. $ac_prsub
  501. $ac_vpsub
  502. $extrasub
  503. s%@M4@%$M4%g
  504. s%@INSTALL@%$INSTALL%g
  505. s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  506. s%@INSTALL_DATA@%$INSTALL_DATA%g
  507. s%@LIBS@%$LIBS%g
  508. s%@srcdir@%$srcdir%g
  509. s%@top_srcdir@%$top_srcdir%g
  510. s%@prefix@%$prefix%g
  511. s%@exec_prefix@%$exec_prefix%g
  512. s%@DEFS@%$DEFS%
  513. " $ac_given_srcdir/${ac_file}.in >> $ac_file
  514. fi; done
  515.  
  516.  
  517. exit 0
  518. EOF
  519. chmod +x config.status
  520. test -n "$no_create" || ${CONFIG_SHELL-/bin/sh} config.status
  521.  
  522.