configure revision bcea9925141b1e0076cd7b078f1dae1449a1229b
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# From configure.in Revision: 1.141
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*-
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## Copyright (C) 1996-1999 Free Software Foundation, Inc.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## This program is free software; you can redistribute it and/or modify
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## it under the terms of the GNU General Public License as published by
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## the Free Software Foundation; either version 2 of the License, or
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## (at your option) any later version.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## This program is distributed in the hope that it will be useful, but
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## WITHOUT ANY WARRANTY; without even the implied warranty of
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## General Public License for more details.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt## You should have received a copy of the GNU General Public License
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt## along with this program; if not, write to the Free Software
cd32f419a8a5432fbb139f56ee73cbf68b9350ccTinderbox User## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2cbb4ab75757fbb656997a82c14ca07db37d481aAutomatic Updater## As a special exception to the GNU General Public License, if you
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## distribute this file as part of a program that contains a
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## configuration script generated by Autoconf, you may include it under
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews## the same distribution terms that you use for the rest of that program.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# serial 40 AC_PROG_LIBTOOL
2cbb4ab75757fbb656997a82c14ca07db37d481aAutomatic Updater# AC_LIBTOOL_DLOPEN - enable checks for dlopen support
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_ENABLE_SHARED - implement the --enable-shared flag
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Usage: AC_ENABLE_SHARED[(DEFAULT)]
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_DISABLE_SHARED - set the default shared flag to --disable-shared
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_ENABLE_STATIC - implement the --enable-static flag
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Usage: AC_ENABLE_STATIC[(DEFAULT)]
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_DISABLE_STATIC - set the default static flag to --disable-static
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_PROG_LD - find the path to the GNU or non-GNU linker
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_PROG_NM - find the path to a BSD-compatible name lister
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_CHECK_LIBM - check for math library
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# the libltdl convenience library, adds --enable-ltdl-convenience to
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# to be `${top_builddir}/libltdl'. Make sure you start DIR with
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# '${top_builddir}/' (note the single quotes!) if your package is not
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# flat, and, if you're not using automake, define top_builddir as
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# appropriate in the Makefiles.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# the libltdl installable library, and adds --enable-ltdl-install to
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# to be `${top_builddir}/libltdl'. Make sure you start DIR with
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# '${top_builddir}/' (note the single quotes!) if your package is not
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# flat, and, if you're not using automake, define top_builddir as
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# appropriate in the Makefiles.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# In the future, this macro may have to be called after AC_PROG_LIBTOOL.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Guess values for system-dependent variables and create Makefiles.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Generated automatically using autoconf version 2.13
ad671240d635376dd8681550eebee799d2e3d1fdAutomatic Updater# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
ad671240d635376dd8681550eebee799d2e3d1fdAutomatic Updater# This configure script is free software; the Free Software Foundation
ad671240d635376dd8681550eebee799d2e3d1fdAutomatic Updater# gives unlimited permission to copy, distribute and modify it.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Any additions from configure.in:
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --with-ptl2 on NetBSD, use the ptl2 thread library (experimental)"
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews --with-libtool use GNU libtool (following indented options supported)"
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater --enable-shared[=PKGS] build shared libraries [default=yes]"
cd791043c8a6edbcacc2392575a9816d19b8157cTinderbox User --enable-static[=PKGS] build static libraries [default=yes]"
8e821eea5f57ac47a94305aa7ab0c3570d92a311Automatic Updater --enable-fast-install[=PKGS] optimize for fast installation [default=yes]"
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater --with-gnu-ld assume the C compiler uses GNU ld [default=no]"
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater --disable-libtool-lock avoid locking (might break parallel builds)"
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater --enable-ipv6 use IPv6 [default=autodetect]"
8e821eea5f57ac47a94305aa7ab0c3570d92a311Automatic Updater --with-kame[=PATH] use Kame IPv6 [default path /usr/local/v6]"
8e821eea5f57ac47a94305aa7ab0c3570d92a311Automatic Updater# Initialize some variables set by options.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# The variables have the same names as the options, with
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# dashes changed to underlines.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Initialize some other variables.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Maximum number of lines to put in a shell here document.
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater # If the previous option needs an argument, assign it.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt if test -n "$ac_prev"; then
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt eval "$ac_prev=\$ac_option"
8e821eea5f57ac47a94305aa7ab0c3570d92a311Automatic Updater -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt # Accept the important Cygnus configure options, so we can diagnose typos.
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater -bindir | --bindir | --bindi | --bind | --bin | --bi)
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews -build=* | --build=* | --buil=* | --bui=* | --bu=*)
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews -cache-file | --cache-file | --cache-fil | --cache-fi \
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
8ec3c085233cedb22b05da36e2773c8f357a7e45Automatic Updater | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
6ea2385360e9e2167e65f9286447da9eea189457Tinderbox User -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
6ea2385360e9e2167e65f9286447da9eea189457Tinderbox User ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
6ea2385360e9e2167e65f9286447da9eea189457Tinderbox User # Reject names that are not valid shell variable names.
6ea2385360e9e2167e65f9286447da9eea189457Tinderbox User if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt eval "enable_${ac_feature}=no" ;;
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt # Reject names that are not valid shell variable names.
f8e3e03cacd16ffb923a9603fca23a9e1a1fee07Automatic Updater if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
f8e3e03cacd16ffb923a9603fca23a9e1a1fee07Automatic Updater ac_feature=`echo $ac_feature| sed 's/-/_/g'`
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt eval "enable_${ac_feature}='$ac_optarg'" ;;
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt # Obsolete; use --with-gas.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt # Omit some internal or obsolete options to make the list less imposing.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt # This message is too long to be a string in the A/UX 3.1 sh.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntUsage: configure [options] [host]
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntOptions: [defaults in brackets after descriptions]
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark AndrewsConfiguration:
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --cache-file=FILE cache test results in FILE
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --help print this message
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater --no-create do not create output files
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --quiet, --silent do not print \`checking...' messages
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --version print the version of autoconf that created configure
a3f8c8e20780e488141d200acdfea6c5f3303513Automatic UpdaterDirectory and file names:
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --prefix=PREFIX install architecture-independent files in PREFIX
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt [$ac_default_prefix]
a3f8c8e20780e488141d200acdfea6c5f3303513Automatic Updater --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
a3f8c8e20780e488141d200acdfea6c5f3303513Automatic Updater [same as prefix]
a3f8c8e20780e488141d200acdfea6c5f3303513Automatic Updater --bindir=DIR user executables in DIR [EPREFIX/bin]
a3f8c8e20780e488141d200acdfea6c5f3303513Automatic Updater --sbindir=DIR system admin executables in DIR [EPREFIX/sbin]
ef8014e56f35bb36daa5fd2c313f5e7963e97aa1Tinderbox User --libexecdir=DIR program executables in DIR [EPREFIX/libexec]
ef8014e56f35bb36daa5fd2c313f5e7963e97aa1Tinderbox User --datadir=DIR read-only architecture-independent data in DIR
ef8014e56f35bb36daa5fd2c313f5e7963e97aa1Tinderbox User [PREFIX/share]
ef8014e56f35bb36daa5fd2c313f5e7963e97aa1Tinderbox User --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc]
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --sharedstatedir=DIR modifiable architecture-independent data in DIR
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt [PREFIX/com]
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var]
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --libdir=DIR object code libraries in DIR [EPREFIX/lib]
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --includedir=DIR C header files in DIR [PREFIX/include]
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include]
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews --infodir=DIR info documentation in DIR [PREFIX/info]
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews --mandir=DIR man documentation in DIR [PREFIX/man]
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews --srcdir=DIR find the sources in DIR [configure dir or ..]
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --program-prefix=PREFIX prepend PREFIX to installed program names
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --program-suffix=SUFFIX append SUFFIX to installed program names
575e15fed997a3ad1cb35c5b9ef34ab24ce47e72Automatic Updater --program-transform-name=PROGRAM
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt run sed PROGRAM on installed program names
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --build=BUILD configure for building on BUILD [BUILD=HOST]
575e15fed997a3ad1cb35c5b9ef34ab24ce47e72Automatic Updater --host=HOST configure for HOST [guessed]
575e15fed997a3ad1cb35c5b9ef34ab24ce47e72Automatic Updater --target=TARGET configure for TARGET [TARGET=HOST]
575e15fed997a3ad1cb35c5b9ef34ab24ce47e72Automatic UpdaterFeatures and packages:
575e15fed997a3ad1cb35c5b9ef34ab24ce47e72Automatic Updater --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
575e15fed997a3ad1cb35c5b9ef34ab24ce47e72Automatic Updater --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
575e15fed997a3ad1cb35c5b9ef34ab24ce47e72Automatic Updater --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
575e15fed997a3ad1cb35c5b9ef34ab24ce47e72Automatic Updater --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
575e15fed997a3ad1cb35c5b9ef34ab24ce47e72Automatic Updater --x-includes=DIR X include files are in DIR
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt --x-libraries=DIR X library files are in DIR
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews if test -n "$ac_help"; then
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt echo "--enable and --with options recognized:$ac_help"
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews -includedir | --includedir | --includedi | --included | --include \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater | --includ=* | --inclu=* | --incl=* | --inc=*)
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater -infodir | --infodir | --infodi | --infod | --info | --inf)
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater -localstatedir | --localstatedir | --localstatedi | --localstated \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater | --localstate | --localstat | --localsta | --localst \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater | --localstate=* | --localstat=* | --localsta=* | --localst=* \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews # Obsolete; use --without-fp.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews -no-create | --no-create | --no-creat | --no-crea | --no-cre \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -no-recursion | --no-recursion | --no-recursio | --no-recursi \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
6f1205897504b8f50b1785975482c995888dd630Tinderbox User -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -program-prefix | --program-prefix | --program-prefi | --program-pref \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -program-prefix=* | --program-prefix=* | --program-prefi=* \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
2895f101b5585a19015ac2c2c1e1812ac467fa12Automatic Updater -program-suffix | --program-suffix | --program-suffi | --program-suff \
2895f101b5585a19015ac2c2c1e1812ac467fa12Automatic Updater | --program-suf | --program-su | --program-s)
2895f101b5585a19015ac2c2c1e1812ac467fa12Automatic Updater -program-suffix=* | --program-suffix=* | --program-suffi=* \
bbbf2e27d3a981163dab139497d6b2dc85449db0Tinderbox User | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -program-transform-name | --program-transform-name \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt | --program-transform-nam | --program-transform-na \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater | --program-transform-n | --program-transform- \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater | --progr-tra | --program-tr | --program-t)
f8e3e03cacd16ffb923a9603fca23a9e1a1fee07Automatic Updater -program-transform-name=* | --program-transform-name=* \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt | --program-transform-nam=* | --program-transform-na=* \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt | --program-transform-n=* | --program-transform-=* \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater | --program-transform=* | --program-transfor=* \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater | --progr-tra=* | --program-tr=* | --program-t=*)
bbbf2e27d3a981163dab139497d6b2dc85449db0Tinderbox User -q | -quiet | --quiet | --quie | --qui | --qu | --q \
bbbf2e27d3a981163dab139497d6b2dc85449db0Tinderbox User | -silent | --silent | --silen | --sile | --sil)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater -sharedstatedir | --sharedstatedir | --sharedstatedi \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt | --sharedst | --shareds | --shared | --share | --shar \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
f8e3e03cacd16ffb923a9603fca23a9e1a1fee07Automatic Updater | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
f8e3e03cacd16ffb923a9603fca23a9e1a1fee07Automatic Updater | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
f8e3e03cacd16ffb923a9603fca23a9e1a1fee07Automatic Updater -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater | --syscon | --sysco | --sysc | --sys | --sy)
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater -target | --target | --targe | --targ | --tar | --ta | --t)
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater -v | -verbose | --verbose | --verbos | --verbo | --verb)
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater -version | --version | --versio | --versi | --vers)
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater echo "configure generated by autoconf version 2.13"
3acf5eb97cebc2ba868e6ac4a4e01e6d1be0c892Automatic Updater ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt # Reject names that are not valid shell variable names.
0a7ed88633a680bb881868b75ded4d09a7bbbc50Automatic Updater if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt eval "with_${ac_package}='$ac_optarg'" ;;
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews ac_package=`echo $ac_option|sed -e 's/-*without-//'`
90153b6536f7a5078e1c157c980110dbcd7fe205Mark Andrews # Reject names that are not valid shell variable names.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt eval "with_${ac_package}=no" ;;
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt # Obsolete; use --with-x.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews -x-libraries | --x-libraries | --x-librarie | --x-librari \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews echo "configure: warning: $ac_option: invalid host type" 1>&2
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
d71e2e0c61df16ff37c9934c371a4a60c08974f7Mark Andrewsif test -n "$ac_prev"; then
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunttrap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# File descriptor usage:
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# 0 standard input
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# 1 file creation
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# 2 errors and warnings
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# 3 some systems may open it to /dev/tty
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# 4 used on the Kubota Titan
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# 6 checking for... messages and results
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# 5 compiler messages saved in config.log
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark AndrewsThis file contains any messages produced by compilers while
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrewsrunning configure, to aid debugging if configure makes a mistake.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Strip out --no-create and --no-recursion so they do not pile up.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Also quote any args containing shell metacharacters.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt -no-create | --no-create | --no-creat | --no-crea | --no-cre \
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews -no-recursion | --no-recursion | --no-recursio | --no-recursi \
c6c78f699b55b3344fb6b17ddc854cbae4610468Automatic Updater | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
8e821eea5f57ac47a94305aa7ab0c3570d92a311Automatic Updater ac_configure_args="$ac_configure_args '$ac_arg'" ;;
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews *) ac_configure_args="$ac_configure_args $ac_arg" ;;
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# NLS nuisances.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Only set these to C if already set. These must not be set unconditionally
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# because not all systems understand e.g. LANG=C (notably SCO).
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Non-C LC_CTYPE values break the ctype check.
28b3569d6248168e6c00caab951521cc8141a49dAutomatic Updaterif test "${LANG+set}" = set; then LANG=C; export LANG; fi
cd32f419a8a5432fbb139f56ee73cbf68b9350ccTinderbox Userif test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
2cbb4ab75757fbb656997a82c14ca07db37d481aAutomatic Updaterif test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrewsif test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# confdefs.h avoids OS command line length limits that DEFS can exceed.
28b3569d6248168e6c00caab951521cc8141a49dAutomatic Updater# AIX cpp loses on an empty file, so make sure it contains at least a newline.
4abdfc917e6635a7c81d1f931a0c79227e72d025Mark Andrews# A filename unique to this package, relative to the directory that
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# configure is in, which we can look for to find out if srcdir is correct.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Find the source files, if location was not specified.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrewsif test -z "$srcdir"; then
srcdir=..
if test -z "$CONFIG_SITE"; then
if test -r "$ac_site_file"; then
echo "loading site script $ac_site_file"
. "$ac_site_file"
if test -r "$cache_file"; then
echo "loading cache $cache_file"
echo "creating cache $cache_file"
ac_ext=c
if test -z "$ac_aux_dir"; then
{ echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
# Make sure we can run config.sub.
NONE)
NONE)
all:
if test -n "$ac_maketemp"; then
if test -n "$RANLIB"; then
if test -n "$RANLIB"; then
# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
# ./install, which can be erroneously created by make from ./install.sh.
if test -z "$INSTALL"; then
if test -n "$AR"; then
if test -n "$ETAGS"; then
test -n "$ETAGS" && break
# the installation, but named.boot/named.conf was in /etc
# would. To change the prefix for everything but leave named.conf
# To put named.conf and named.pid in /usr/local with everything else,
NONE)
*-solaris*)
if test -f "$ac_dir/cc"; then
*-netbsd*)
Please install the devel/unproven-pthreads package and rerun configure.
if test -n "$CC"; then
if test -n "$CC"; then
if test -z "$CC"; then
if test -n "$CC"; then
if test -n "$CC"; then
if test -z "$CC"; then
if test -n "$CC"; then
if test -n "$CC"; then
ac_ext=c
if { (eval echo configure:1239: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
ac_ext=c
{ echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
echo "configure:1265: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1279: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
GCC=
if test "$ac_test_CFLAGS" = set; then
if test -n "$YACC"; then
if test -n "$YACC"; then
test -n "$YACC" && break
CPP=
if test -z "$CPP"; then
if test -z "$ac_err"; then
if test -z "$ac_err"; then
if test -z "$ac_err"; then
if test -z "$ac_err"; then
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
if { (eval echo configure:1526: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
if test -z "$ac_err"; then
eval "ac_cv_header_$ac_safe=yes"
eval "ac_cv_header_$ac_safe=no"
ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
if { (eval echo configure:1795: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
eval "ac_cv_lib_$ac_lib_var=yes"
eval "ac_cv_lib_$ac_lib_var=no"
if { (eval echo configure:1840: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
eval "ac_cv_lib_$ac_lib_var=yes"
eval "ac_cv_lib_$ac_lib_var=no"
if { (eval echo configure:1887: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
eval "ac_cv_lib_$ac_lib_var=yes"
eval "ac_cv_lib_$ac_lib_var=no"
if { (eval echo configure:1941: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
eval "ac_cv_lib_$ac_lib_var=yes"
eval "ac_cv_lib_$ac_lib_var=no"
if { (eval echo configure:1982: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
eval "ac_cv_lib_$ac_lib_var=yes"
eval "ac_cv_lib_$ac_lib_var=no"
if { (eval echo configure:2023: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
eval "ac_cv_lib_$ac_lib_var=yes"
eval "ac_cv_lib_$ac_lib_var=no"
*-freebsd*)
if { (eval echo configure:2080: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
eval "ac_cv_lib_$ac_lib_var=yes"
eval "ac_cv_lib_$ac_lib_var=no"
*-linux*)
*-solaris*)
*-UnixWare*)
if { (eval echo configure:2175: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:2232: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
eval "ac_cv_lib_$ac_lib_var=yes"
eval "ac_cv_lib_$ac_lib_var=no"
if { (eval echo configure:2279: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
eval "ac_cv_lib_$ac_lib_var=yes"
eval "ac_cv_lib_$ac_lib_var=no"
*-freebsd*)
*-openbsd*)
*-solaris*)
*-solaris*)
*-UnixWare*)
if { (eval echo configure:2708: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:2757: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:2806: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
yes)
NONE)
[\\/]* | [A-Za-z]:[\\/]*)
if test -z "$LD"; then
if test -n "$LD"; then
if test -n "$NM"; then
*-*-irix6*)
*N32*)
if { (eval echo configure:3169: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
# By default, configure uses ./config.cache as the cache file,
# config.status only pays attention to the cache file if you give it the
*ac_space=\ *)
sed -n \
esac >> confcache
if test -w $cache_file; then
echo "updating cache $cache_file"
echo "not updating unwritable cache $cache_file"
if test -r "$cache_file"; then
echo "loading cache $cache_file"
echo "creating cache $cache_file"
# Redirect the config.log output again, so that the ltconfig log is not
O=lo
A=la
SA=a
no)
no)
yes)
no)
# Whether netinet6/in6.h is needed has to be defined in isc/platform.h.
*-UnixWare*)
yes)
if { (eval echo configure:3441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
no)
if { (eval echo configure:3525: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3552: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3579: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3628: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3677: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3716: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
if { (eval echo configure:3764: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if test -z "$ac_err"; then
eval "ac_cv_header_$ac_safe=yes"
eval "ac_cv_header_$ac_safe=no"
ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
if test -z "$ac_err"; then
eval "ac_cv_header_$ac_safe=yes"
eval "ac_cv_header_$ac_safe=no"
ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
# Shut up a -Wmissing-prototypes warning from <stdio.h>.
# By default, configure uses ./config.cache as the cache file,
# config.status only pays attention to the cache file if you give it the
*ac_space=\ *)
sed -n \
esac >> confcache
if test -w $cache_file; then
echo "updating cache $cache_file"
echo "not updating unwritable cache $cache_file"
if test "x$srcdir" = x.; then
# Without the "./", some shells look in PATH for config.status.
while $ac_more_lines; do
ac_more_lines=false
if test -z "$ac_sed_cmds"; then
if test -z "$ac_sed_cmds"; then
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
.) srcdir=.
# $configure_input" ;;
*) ac_comsub= ;;
s%@configure_input@%$configure_input%g
s%@srcdir@%$srcdir%g
s%@top_srcdir@%$top_srcdir%g
s%@INSTALL@%$INSTALL%g
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
# Transform confdefs.h into a sed script conftest.vals that substitutes
# the proper values into config.h.in to produce config.h. And first:
# Protect against being on the right side of a sed subst in config.status.
# Protect against being in an unquoted here document in config.status.
sed -n -f conftest.hdr confdefs.h > conftest.vals
rm -f conftest.hdr
cat >> conftest.vals <<\EOF
# Break up conftest.vals because some shells have a limit on
rm -f conftest.tail
sed -f conftest.frag conftest.in > conftest.out
rm -f conftest.in
rm -f conftest.vals
rm -f conftest.vals
cat >> $CONFIG_STATUS <<\EOF
rm -f conftest.in
if cmp -s $ac_file conftest.h 2>/dev/null; then
rm -f conftest.h
cat >> $CONFIG_STATUS <<EOF
cat >> $CONFIG_STATUS <<\EOF