configure revision acf9f794255e69d3f69804a5e6a3d7de3885e81a
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# Copyright (C) 1996-2001 Internet Software Consortium.
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# Permission to use, copy, modify, and distribute this software for any
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# purpose with or without fee is hereby granted, provided that the above
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# copyright notice and this permission notice appear in all copies.
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# From configure.in Revision: 1.252
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*-
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch## Copyright (C) 1996-1999, 2000 Free Software Foundation, Inc.
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch## This program is free software; you can redistribute it and/or modify
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch## it under the terms of the GNU General Public License as published by
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch## the Free Software Foundation; either version 2 of the License, or
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch## (at your option) any later version.
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch## This program is distributed in the hope that it will be useful, but
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch## WITHOUT ANY WARRANTY; without even the implied warranty of
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
d67f004ebf944adca3ba09ed547febfa75442476Stephan Bosch## General Public License for more details.
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch## You should have received a copy of the GNU General Public License
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch## along with this program; if not, write to the Free Software
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch## As a special exception to the GNU General Public License, if you
d67f004ebf944adca3ba09ed547febfa75442476Stephan Bosch## distribute this file as part of a program that contains a
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch## configuration script generated by Autoconf, you may include it under
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch## the same distribution terms that you use for the rest of that program.
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# serial 40 AC_PROG_LIBTOOL
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch# AC_LIBTOOL_DLOPEN - enable checks for dlopen support
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# AC_ENABLE_SHARED - implement the --enable-shared flag
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# Usage: AC_ENABLE_SHARED[(DEFAULT)]
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch# AC_DISABLE_SHARED - set the default shared flag to --disable-shared
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# AC_ENABLE_STATIC - implement the --enable-static flag
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# Usage: AC_ENABLE_STATIC[(DEFAULT)]
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# AC_DISABLE_STATIC - set the default static flag to --disable-static
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# AC_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
6776cc851a593b2a893103833e08ed3902ce1933Stephan Bosch# AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch# AC_PROG_LD - find the path to the GNU or non-GNU linker
de96afeeaa5242cffe89f1966457e935806b5746Stephan Bosch# AC_PROG_NM - find the path to a BSD-compatible name lister
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainen# AC_CHECK_LIBM - check for math library
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# the libltdl convenience library and INCLTDL to the include flags for
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# the libltdl header and adds --enable-ltdl-convenience to the
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# configure arguments. Note that LIBLTDL and INCLTDL are not
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If DIR is not
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# provided, it is assumed to be `libltdl'. LIBLTDL will be prefixed
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# with '${top_builddir}/' and INCLTDL will be prefixed with
fd30e54bd56f0869f5c2e14b42fd53f7b36cff45Stephan Bosch# '${top_srcdir}/' (note the single quotes!). If your package is not
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# flat and you're not using automake, define top_builddir and
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen# top_srcdir appropriately in the Makefiles.
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# the libltdl installable library and INCLTDL to the include flags for
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch# the libltdl header and adds --enable-ltdl-install to the configure
c275cef636c79e1d08b3a82462c4abdca6f8cef3Martti Rannanjärvi# arguments. Note that LIBLTDL and INCLTDL are not AC_SUBSTed, nor is
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# AC_CONFIG_SUBDIRS called. If DIR is not provided and an installed
fd30e54bd56f0869f5c2e14b42fd53f7b36cff45Stephan Bosch# libltdl is not found, it is assumed to be `libltdl'. LIBLTDL will
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# be prefixed with '${top_builddir}/' and INCLTDL will be prefixed
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# with '${top_srcdir}/' (note the single quotes!). If your package is
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# not flat and you're not using automake, define top_builddir and
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen# top_srcdir appropriately in the Makefiles.
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# In the future, this macro may have to be called after AC_PROG_LIBTOOL.
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen# Guess values for system-dependent variables and create Makefiles.
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen# Generated automatically using autoconf version 2.13
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen# This configure script is free software; the Free Software Foundation
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen# gives unlimited permission to copy, distribute and modify it.
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen# Any additions from configure.in:
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen --with-openssl=PATH Specify path for system-supplied openssl
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen (rather than using bind-9 internal openssl)"
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen --with-randomdev=PATH Specify path for random device"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --enable-threads enable multithreading"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --with-ptl2 on NetBSD, use the ptl2 thread library (experimental)"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --with-purify[=PATH] use Rational purify"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --with-libtool use GNU libtool (following indented options supported)"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --enable-shared[=PKGS] build shared libraries [default=yes]"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --enable-static[=PKGS] build static libraries [default=yes]"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --enable-fast-install[=PKGS] optimize for fast installation [default=yes]"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --with-gnu-ld assume the C compiler uses GNU ld [default=no]"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --disable-libtool-lock avoid locking (might break parallel builds)"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --enable-ipv6 use IPv6 [default=autodetect]"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch --with-kame[=PATH] use Kame IPv6 [default path /usr/local/v6]"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# Initialize some variables set by options.
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# The variables have the same names as the options, with
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# dashes changed to underlines.
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# Initialize some other variables.
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch# Maximum number of lines to put in a shell here document.
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch # If the previous option needs an argument, assign it.
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch if test -n "$ac_prev"; then
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch eval "$ac_prev=\$ac_option"
e7bc4ce82122c30696e60789432ffeb2e26b265bTimo Sirainen -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch # Accept the important Cygnus configure options, so we can diagnose typos.
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch -bindir | --bindir | --bindi | --bind | --bin | --bi)
f9d2a1f21ad65262bc630f0834d7eead06a1bac3Timo Sirainen -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
6ab81c81be13f33486746deeffe02a1ef2bcc821Stephan Bosch -build=* | --build=* | --buil=* | --bui=* | --bu=*)
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -cache-file | --cache-file | --cache-fil | --cache-fi \
6ab81c81be13f33486746deeffe02a1ef2bcc821Stephan Bosch | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
9dc01e0d10a61cab14867b26bf0d2d1dcf8ad978Timo Sirainen | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
6ab81c81be13f33486746deeffe02a1ef2bcc821Stephan Bosch # Reject names that are not valid shell variable names.
0d1b8b6bec79746c5d89d57dd8c1688946bd9237Josef 'Jeff' Sipek if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
6ab81c81be13f33486746deeffe02a1ef2bcc821Stephan Bosch { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch eval "enable_${ac_feature}=no" ;;
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch # Reject names that are not valid shell variable names.
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
27a2e59eaa648fef2acb2c4b852567d22e016a2dStephan Bosch eval "enable_${ac_feature}='$ac_optarg'" ;;
fc94140acba51adafedafbc8491a3223a51db7a8Stephan Bosch -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
e48102389fb49deadfc685600dc2e56177fd0d7cStephan Bosch | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
636d0f43138468f8efe685a681326b123f660e49Timo Sirainen -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch # Obsolete; use --with-gas.
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch # Omit some internal or obsolete options to make the list less imposing.
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch # This message is too long to be a string in the A/UX 3.1 sh.
7384b4e78eaab44693c985192276e31322155e32Stephan BoschUsage: configure [options] [host]
7384b4e78eaab44693c985192276e31322155e32Stephan BoschOptions: [defaults in brackets after descriptions]
7384b4e78eaab44693c985192276e31322155e32Stephan BoschConfiguration:
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --cache-file=FILE cache test results in FILE
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch --help print this message
a991cfe2157e58ee43bc580f517ce9ef0dfb7acfStephan Bosch --no-create do not create output files
fb1be3de0159d6a10e916ad992e2bc53be64c6d5Timo Sirainen --quiet, --silent do not print \`checking...' messages
fb1be3de0159d6a10e916ad992e2bc53be64c6d5Timo Sirainen --version print the version of autoconf that created configure
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan BoschDirectory and file names:
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --prefix=PREFIX install architecture-independent files in PREFIX
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch [$ac_default_prefix]
856ae2ad98cee79b2719911a3cc131d7f4ec8a90Timo Sirainen --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
856ae2ad98cee79b2719911a3cc131d7f4ec8a90Timo Sirainen [same as prefix]
1a9a35a6b307f8d5b25345af55e40a99162b4072Timo Sirainen --bindir=DIR user executables in DIR [EPREFIX/bin]
1a9a35a6b307f8d5b25345af55e40a99162b4072Timo Sirainen --sbindir=DIR system admin executables in DIR [EPREFIX/sbin]
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --libexecdir=DIR program executables in DIR [EPREFIX/libexec]
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --datadir=DIR read-only architecture-independent data in DIR
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch [PREFIX/share]
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc]
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch --sharedstatedir=DIR modifiable architecture-independent data in DIR
a991cfe2157e58ee43bc580f517ce9ef0dfb7acfStephan Bosch --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var]
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --libdir=DIR object code libraries in DIR [EPREFIX/lib]
a991cfe2157e58ee43bc580f517ce9ef0dfb7acfStephan Bosch --includedir=DIR C header files in DIR [PREFIX/include]
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include]
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch --infodir=DIR info documentation in DIR [PREFIX/info]
36409af77b42dc1c18c0691970b2eb07785fbba4Timo Sirainen --mandir=DIR man documentation in DIR [PREFIX/man]
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch --srcdir=DIR find the sources in DIR [configure dir or ..]
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --program-prefix=PREFIX prepend PREFIX to installed program names
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --program-suffix=SUFFIX append SUFFIX to installed program names
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --program-transform-name=PROGRAM
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch run sed PROGRAM on installed program names
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --build=BUILD configure for building on BUILD [BUILD=HOST]
e8a1b62fe4a81b211dcccd1a58b44f254074eab6Stephan Bosch --host=HOST configure for HOST [guessed]
7384b4e78eaab44693c985192276e31322155e32Stephan Bosch --target=TARGET configure for TARGET [TARGET=HOST]
7384b4e78eaab44693c985192276e31322155e32Stephan BoschFeatures and packages:
17cd0e0963f2fb0e66d49703e8cd0bda1b842468Timo Sirainen --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
17cd0e0963f2fb0e66d49703e8cd0bda1b842468Timo Sirainen --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
a991cfe2157e58ee43bc580f517ce9ef0dfb7acfStephan Bosch --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
17cd0e0963f2fb0e66d49703e8cd0bda1b842468Timo Sirainen --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
17cd0e0963f2fb0e66d49703e8cd0bda1b842468Timo Sirainen --x-includes=DIR X include files are in DIR
415e16c3dc185578695b7d88e561a52de6c8b1b1Timo Sirainen --x-libraries=DIR X library files are in DIR
ba1c847d0af4afe4787ed470d0c818e948e184e2Timo Sirainen if test -n "$ac_help"; then
415e16c3dc185578695b7d88e561a52de6c8b1b1Timo Sirainen echo "--enable and --with options recognized:$ac_help"
ba1c847d0af4afe4787ed470d0c818e948e184e2Timo Sirainen -includedir | --includedir | --includedi | --included | --include \
415e16c3dc185578695b7d88e561a52de6c8b1b1Timo Sirainen -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
415e16c3dc185578695b7d88e561a52de6c8b1b1Timo Sirainen | --includ=* | --inclu=* | --incl=* | --inc=*)
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -infodir | --infodir | --infodi | --infod | --info | --inf)
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
8d845733408c0cb06a8884d12101beb0d40e6869Stephan Bosch -libdir=* | --libdir=* | --libdi=* | --libd=*)
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -localstatedir | --localstatedir | --localstatedi | --localstated \
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch | --localstate | --localstat | --localsta | --localst \
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch | --localstate=* | --localstat=* | --localsta=* | --localst=* \
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch # Obsolete; use --without-fp.
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -no-create | --no-create | --no-creat | --no-crea | --no-cre \
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -no-recursion | --no-recursion | --no-recursio | --no-recursi \
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
fca68889b287d8eed4babe72a231bd6079da012dStephan Bosch -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -program-prefix | --program-prefix | --program-prefi | --program-pref \
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen -program-prefix=* | --program-prefix=* | --program-prefi=* \
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen -program-suffix | --program-suffix | --program-suffi | --program-suff \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -program-suffix=* | --program-suffix=* | --program-suffi=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -program-transform-name | --program-transform-name \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --program-transform-nam | --program-transform-na \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --program-transform-n | --program-transform- \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -program-transform-name=* | --program-transform-name=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --program-transform-nam=* | --program-transform-na=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --program-transform-n=* | --program-transform-=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --program-transform=* | --program-transfor=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --progr-tra=* | --program-tr=* | --program-t=*)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -q | -quiet | --quiet | --quie | --qui | --qu | --q \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | -silent | --silent | --silen | --sile | --sil)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -sharedstatedir | --sharedstatedir | --sharedstatedi \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --sharedst | --shareds | --shared | --share | --shar \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
e48102389fb49deadfc685600dc2e56177fd0d7cStephan Bosch -target | --target | --targe | --targ | --tar | --ta | --t)
27a2e59eaa648fef2acb2c4b852567d22e016a2dStephan Bosch -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -v | -verbose | --verbose | --verbos | --verbo | --verb)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch -version | --version | --versio | --versi | --vers)
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch echo "configure generated by autoconf version 2.13"
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch # Reject names that are not valid shell variable names.
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
27a2e59eaa648fef2acb2c4b852567d22e016a2dStephan Bosch { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
fab1a1c57f467c19c728d2391ff5e5025bb832f7Stephan Bosch eval "with_${ac_package}='$ac_optarg'" ;;
e48102389fb49deadfc685600dc2e56177fd0d7cStephan Bosch ac_package=`echo $ac_option|sed -e 's/-*without-//'`
e48102389fb49deadfc685600dc2e56177fd0d7cStephan Bosch # Reject names that are not valid shell variable names.
e48102389fb49deadfc685600dc2e56177fd0d7cStephan Bosch if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
e48102389fb49deadfc685600dc2e56177fd0d7cStephan Bosch { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
27a2e59eaa648fef2acb2c4b852567d22e016a2dStephan Bosch eval "with_${ac_package}=no" ;;
27a2e59eaa648fef2acb2c4b852567d22e016a2dStephan Bosch # Obsolete; use --with-x.
27a2e59eaa648fef2acb2c4b852567d22e016a2dStephan Bosch -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
9fe6a55877bee691b32c12c7be56242054841670Stephan Bosch -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
2d1ad5742dd723b39c51bcf64c62a600237de8aeTimo Sirainen | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
9fe6a55877bee691b32c12c7be56242054841670Stephan Bosch -x-libraries | --x-libraries | --x-librarie | --x-librari \
9fe6a55877bee691b32c12c7be56242054841670Stephan Bosch | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
9fe6a55877bee691b32c12c7be56242054841670Stephan Bosch -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
e48102389fb49deadfc685600dc2e56177fd0d7cStephan Bosch | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
9fe6a55877bee691b32c12c7be56242054841670Stephan Bosch -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
9fe6a55877bee691b32c12c7be56242054841670Stephan Bosch if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
9fe6a55877bee691b32c12c7be56242054841670Stephan Bosch echo "configure: warning: $ac_option: invalid host type" 1>&2
e48102389fb49deadfc685600dc2e56177fd0d7cStephan Bosch { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainenif test -n "$ac_prev"; then
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainen { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainentrap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainen# File descriptor usage:
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainen# 0 standard input
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainen# 1 file creation
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainen# 2 errors and warnings
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainen# 3 some systems may open it to /dev/tty
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainen# 4 used on the Kubota Titan
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainen# 6 checking for... messages and results
788e61d347adbdb7c9a4d767e381f4bd8a3526b2Timo Sirainen# 5 compiler messages saved in config.log
for ac_arg
# because not all systems understand e.g. LANG=C (notably SCO).
# confdefs.h avoids OS command line length limits that DEFS can exceed.
echo > confdefs.h
if 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
# Some systems, e.g. RH7, have the Exuberant Ctags etags instead of
if test -n "$PERL"; then
test -n "$PERL" && 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
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:1245: \"$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:1271: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1285: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
GCC=
if test "$ac_test_CFLAGS" = set; then
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:1497: \"$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___%'`
yes)
yes)
no)
no)
yes)
no)
if { (eval echo configure:1923: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
no)
yes)
# DST_GSSAPI_INC="-I$use_gssapi/include"
# DNS_GSSAPI_LIBS="-L$use_gssapi/lib -lgssapi_krb5"
# AC_MSG_RESULT(using gssapi from $use_gssapi/lib and $use_gssapi/include)
*-openbsd*)
if test -r $devrandom; then
eval "ac_cv_file_$ac_safe=yes"
eval "ac_cv_file_$ac_safe=no"
yes)
use_threads=true ;;
use_threads=false ;;
use_threads=true ;;
use_threads=true ;;
*-UnixWare*)
use_threads=false ;;
*-netbsd*)
use_threads=false ;;
*-openbsd*)
use_threads=false ;;
*-freebsd*)
use_threads=false ;;
*-bsdi*)
use_threads=false ;;
*-linux*)
use_threads=false ;;
use_threads=false ;;
yes)
use_threads=true
no)
use_threads=false
if $use_threads
if $use_threads
*-netbsd*)
if $use_threads
if { (eval echo configure:2258: \"$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:2303: \"$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:2348: \"$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:2393: \"$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:2438: \"$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 $use_threads
if { (eval echo configure:2503: \"$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:2544: \"$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:2585: \"$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:2643: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
*-freebsd*)
if { (eval echo configure:2694: \"$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*)
if { (eval echo configure:2777: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
*-UnixWare*)
if { (eval echo configure:2843: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
*-freebsd*)
*-openbsd*)
*-solaris*)
*-solaris*)
*-UnixWare*)
if { (eval echo configure:2951: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if $use_threads; then
*-solaris*)
*-UnixWare*)
if { (eval echo configure:3081: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3138: \"$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:3185: \"$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"
no)
yes)
if test -n "$purify_path"; then
no)
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:3608: \"$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:3933: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
no)
if { (eval echo configure:4059: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:4093: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
if { (eval echo configure:4123: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:4480: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:4529: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:4578: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:4631: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:4721: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:4770: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:4816: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
if { (eval echo configure:4864: \"$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___%'`
if { (eval echo configure:5011: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
if { (eval echo configure:5032: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
if { (eval echo configure:5053: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
yes)
yes)
yes)
# Shut up a -Wmissing-prototypes warning from <stdio.h>.
yes)
if test -n "$JADE"; then
test -n "$JADE" && break
if test -n "$TEX"; then
test -n "$TEX" && break
if test -n "$PDFTEX"; then
test -n "$PDFTEX" && break
SGMLDIR=$d
SGMLSTYLEDIR=$d/$s
XMLDIR=$d
# 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
chmod a+x isc-config.sh