configure revision 660f6ef5471b7348436a9de18acde5d48b18e0dc
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# From configure.in Revision: 1.94
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*-
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## Copyright (C) 1996-1999 Free Software Foundation, Inc.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## This program is free software; you can redistribute it and/or modify
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## it under the terms of the GNU General Public License as published by
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## the Free Software Foundation; either version 2 of the License, or
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## (at your option) any later version.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## This program is distributed in the hope that it will be useful, but
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington## WITHOUT ANY WARRANTY; without even the implied warranty of
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## General Public License for more details.
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington## You should have received a copy of the GNU General Public License
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## along with this program; if not, write to the Free Software
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## As a special exception to the GNU General Public License, if you
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## distribute this file as part of a program that contains a
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## configuration script generated by Autoconf, you may include it under
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington## the same distribution terms that you use for the rest of that program.
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington# serial 40 AC_PROG_LIBTOOL
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_LIBTOOL_DLOPEN - enable checks for dlopen support
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_ENABLE_SHARED - implement the --enable-shared flag
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Usage: AC_ENABLE_SHARED[(DEFAULT)]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
90c099e88e9f16bfee9edee3ac1a51fc98843772Brian Wellington# AC_DISABLE_SHARED - set the default shared flag to --disable-shared
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_ENABLE_STATIC - implement the --enable-static flag
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Usage: AC_ENABLE_STATIC[(DEFAULT)]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_DISABLE_STATIC - set the default static flag to --disable-static
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Where DEFAULT is either `yes' or `no'. If omitted, it defaults to
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_PROG_LD - find the path to the GNU or non-GNU linker
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_PROG_NM - find the path to a BSD-compatible name lister
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_CHECK_LIBM - check for math library
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington# AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# the libltdl convenience library, adds --enable-ltdl-convenience to
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington# to be `${top_builddir}/libltdl'. Make sure you start DIR with
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# '${top_builddir}/' (note the single quotes!) if your package is not
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# flat, and, if you're not using automake, define top_builddir as
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# appropriate in the Makefiles.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# the libltdl installable library, and adds --enable-ltdl-install to
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# to be `${top_builddir}/libltdl'. Make sure you start DIR with
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# '${top_builddir}/' (note the single quotes!) if your package is not
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# flat, and, if you're not using automake, define top_builddir as
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# appropriate in the Makefiles.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# In the future, this macro may have to be called after AC_PROG_LIBTOOL.
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington# Guess values for system-dependent variables and create Makefiles.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Generated automatically using autoconf version 2.13
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington# This configure script is free software; the Free Software Foundation
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# gives unlimited permission to copy, distribute and modify it.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Any additions from configure.in:
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --with-mit-pthreads use the mit-pthreads thread library"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --with-ptl2 use the ptl2 thread library"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --with-libtool use GNU libtool"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --enable-shared[=PKGS] build shared libraries [default=yes]"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --enable-static[=PKGS] build static libraries [default=yes]"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --enable-fast-install[=PKGS] optimize for fast installation [default=yes]"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --with-gnu-ld assume the C compiler uses GNU ld [default=no]"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --disable-libtool-lock avoid locking (might break parallel builds)"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --enable-ipv6 use IPv6 [default=autodetect]"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --with-kame[=PATH] use Kame IPv6 [default path /usr/local/v6]"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Initialize some variables set by options.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# The variables have the same names as the options, with
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# dashes changed to underlines.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Initialize some other variables.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Maximum number of lines to put in a shell here document.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # If the previous option needs an argument, assign it.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "$ac_prev"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington eval "$ac_prev=\$ac_option"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Accept the important Cygnus configure options, so we can diagnose typos.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -bindir | --bindir | --bindi | --bind | --bin | --bi)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -build=* | --build=* | --buil=* | --bui=* | --bu=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -cache-file | --cache-file | --cache-fil | --cache-fi \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Reject names that are not valid shell variable names.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_feature=`echo $ac_feature| sed 's/-/_/g'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington eval "enable_${ac_feature}=no" ;;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Reject names that are not valid shell variable names.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_feature=`echo $ac_feature| sed 's/-/_/g'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington eval "enable_${ac_feature}='$ac_optarg'" ;;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Obsolete; use --with-gas.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Omit some internal or obsolete options to make the list less imposing.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # This message is too long to be a string in the A/UX 3.1 sh.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian WellingtonUsage: configure [options] [host]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian WellingtonOptions: [defaults in brackets after descriptions]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian WellingtonConfiguration:
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --cache-file=FILE cache test results in FILE
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --help print this message
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --no-create do not create output files
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --quiet, --silent do not print \`checking...' messages
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --version print the version of autoconf that created configure
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian WellingtonDirectory and file names:
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --prefix=PREFIX install architecture-independent files in PREFIX
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington [$ac_default_prefix]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington [same as prefix]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --bindir=DIR user executables in DIR [EPREFIX/bin]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --sbindir=DIR system admin executables in DIR [EPREFIX/sbin]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --libexecdir=DIR program executables in DIR [EPREFIX/libexec]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --datadir=DIR read-only architecture-independent data in DIR
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington [PREFIX/share]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --sharedstatedir=DIR modifiable architecture-independent data in DIR
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --libdir=DIR object code libraries in DIR [EPREFIX/lib]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --includedir=DIR C header files in DIR [PREFIX/include]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --infodir=DIR info documentation in DIR [PREFIX/info]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --mandir=DIR man documentation in DIR [PREFIX/man]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --srcdir=DIR find the sources in DIR [configure dir or ..]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --program-prefix=PREFIX prepend PREFIX to installed program names
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --program-suffix=SUFFIX append SUFFIX to installed program names
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --program-transform-name=PROGRAM
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington run sed PROGRAM on installed program names
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --build=BUILD configure for building on BUILD [BUILD=HOST]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --host=HOST configure for HOST [guessed]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --target=TARGET configure for TARGET [TARGET=HOST]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian WellingtonFeatures and packages:
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --x-includes=DIR X include files are in DIR
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington --x-libraries=DIR X library files are in DIR
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "$ac_help"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington echo "--enable and --with options recognized:$ac_help"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -includedir | --includedir | --includedi | --included | --include \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --includ=* | --inclu=* | --incl=* | --inc=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -infodir | --infodir | --infodi | --infod | --info | --inf)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -libdir=* | --libdir=* | --libdi=* | --libd=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -localstatedir | --localstatedir | --localstatedi | --localstated \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --localstate | --localstat | --localsta | --localst \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --locals | --local | --loca | --loc | --lo)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --localstate=* | --localstat=* | --localsta=* | --localst=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Obsolete; use --without-fp.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -no-create | --no-create | --no-creat | --no-crea | --no-cre \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -no-recursion | --no-recursion | --no-recursio | --no-recursi \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -program-prefix | --program-prefix | --program-prefi | --program-pref \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-pre | --program-pr | --program-p)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -program-prefix=* | --program-prefix=* | --program-prefi=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -program-suffix | --program-suffix | --program-suffi | --program-suff \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-suf | --program-su | --program-s)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -program-suffix=* | --program-suffix=* | --program-suffi=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -program-transform-name | --program-transform-name \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-transform-nam | --program-transform-na \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-transform-n | --program-transform- \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-transform | --program-transfor \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --progr-tra | --program-tr | --program-t)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -program-transform-name=* | --program-transform-name=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-transform-nam=* | --program-transform-na=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-transform-n=* | --program-transform-=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-transform=* | --program-transfor=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --program-transfo=* | --program-transf=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --progr-tra=* | --program-tr=* | --program-t=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -q | -quiet | --quiet | --quie | --qui | --qu | --q \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | -silent | --silent | --silen | --sile | --sil)
754768580f991d35f5346a9fdb14e45d46648692Brian Wellington -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -sharedstatedir | --sharedstatedir | --sharedstatedi \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --sharedst | --shareds | --shared | --share | --shar \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --syscon | --sysco | --sysc | --sys | --sy)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -target | --target | --targe | --targ | --tar | --ta | --t)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -v | -verbose | --verbose | --verbos | --verbo | --verb)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -version | --version | --versio | --versi | --vers)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington echo "configure generated by autoconf version 2.13"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Reject names that are not valid shell variable names.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_package=`echo $ac_package| sed 's/-/_/g'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington eval "with_${ac_package}='$ac_optarg'" ;;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_package=`echo $ac_option|sed -e 's/-*without-//'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Reject names that are not valid shell variable names.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_package=`echo $ac_package| sed 's/-/_/g'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington eval "with_${ac_package}=no" ;;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Obsolete; use --with-x.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -x-libraries | --x-libraries | --x-librarie | --x-librari \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
fa342c624a5e7df0d10ef34586f8cfffbcd92c69Brian Wellington if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
fa342c624a5e7df0d10ef34586f8cfffbcd92c69Brian Wellington echo "configure: warning: $ac_option: invalid host type" 1>&2
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -n "$ac_prev"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtontrap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# File descriptor usage:
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# 0 standard input
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# 1 file creation
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# 2 errors and warnings
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# 3 some systems may open it to /dev/tty
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# 4 used on the Kubota Titan
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# 6 checking for... messages and results
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# 5 compiler messages saved in config.log
73eb75dc212911e4da58a3ce0a4672d3910193ebBrian WellingtonThis file contains any messages produced by compilers while
73eb75dc212911e4da58a3ce0a4672d3910193ebBrian Wellingtonrunning configure, to aid debugging if configure makes a mistake.
73eb75dc212911e4da58a3ce0a4672d3910193ebBrian Wellington# Strip out --no-create and --no-recursion so they do not pile up.
73eb75dc212911e4da58a3ce0a4672d3910193ebBrian Wellington# Also quote any args containing shell metacharacters.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -no-create | --no-create | --no-creat | --no-crea | --no-cre \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington -no-recursion | --no-recursion | --no-recursio | --no-recursi \
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_configure_args="$ac_configure_args '$ac_arg'" ;;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington *) ac_configure_args="$ac_configure_args $ac_arg" ;;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# NLS nuisances.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Only set these to C if already set. These must not be set unconditionally
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# because not all systems understand e.g. LANG=C (notably SCO).
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Non-C LC_CTYPE values break the ctype check.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test "${LANG+set}" = set; then LANG=C; export LANG; fi
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# confdefs.h avoids OS command line length limits that DEFS can exceed.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AIX cpp loses on an empty file, so make sure it contains at least a newline.
8227257b1c0224a7991e04bb79dc5059d5062dfbAndreas Gustafsson# A filename unique to this package, relative to the directory that
8227257b1c0224a7991e04bb79dc5059d5062dfbAndreas Gustafsson# configure is in, which we can look for to find out if srcdir is correct.
8227257b1c0224a7991e04bb79dc5059d5062dfbAndreas Gustafsson# Find the source files, if location was not specified.
8227257b1c0224a7991e04bb79dc5059d5062dfbAndreas Gustafssonif test -z "$srcdir"; then
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington # Try the directory containing this script, then its parent.
8227257b1c0224a7991e04bb79dc5059d5062dfbAndreas Gustafsson ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
8227257b1c0224a7991e04bb79dc5059d5062dfbAndreas Gustafsson test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonsrcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Prefer explicitly selected file to automatically selected ones.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -z "$CONFIG_SITE"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -r "$ac_site_file"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington echo "loading site script $ac_site_file"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -r "$cache_file"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington echo "loading cache $cache_file"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington echo "creating cache $cache_file"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonfor ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -z "$ac_aux_dir"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Make sure we can run config.sub.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then :
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonelse { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking host system type""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:672: checking host system type" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if host_alias=`${CONFIG_SHELL-/bin/sh} $ac_config_guess`; then :
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonhost=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $host_alias`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonhost_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonhost_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonhost_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:694: checking whether ${MAKE-make} sets \${MAKE}" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonset dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington @echo 'ac_maketemp="${MAKE}"'
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtoneval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -n "$ac_maketemp"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Extract the first word of "ranlib", so it can be a program name with args.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking for $ac_word""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:723: checking for $ac_word" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "$RANLIB"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -n "$RANLIB"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Find a good install program. We prefer a C program (faster),
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# so one script is as good as another. But avoid the broken or
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# incompatible versions:
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# AFS /usr/afsws/bin/install, which mishandles nonexistent args
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# ./install, which can be erroneously created by make from ./install.sh.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:762: checking for a BSD compatible install" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -z "$INSTALL"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Account for people who put trailing slashes in PATH elements.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # OSF1 and SCO ODT 3.0 have their own names for install.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Don't use installbsd from OSF since it installs stuff as root
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # by default.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington for ac_prog in ginstall scoinst install; do
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # AIX install. It has an incompatible calling convention.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test "${ac_cv_path_install+set}" = set; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # As a last resort, use the slow shell script. We don't cache a
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # path for INSTALL within a source directory, because that will
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # break other packages using the cache if that directory is
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # removed, or if the path is relative.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# It thinks the first close brace ends the variable substitution.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtontest -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtontest -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtontest -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Extract the first word of "ar", so it can be a program name with args.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking for $ac_word""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:825: checking for $ac_word" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_path_AR'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_cv_path_AR="$AR" # Let the user override the test with a path.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_cv_path_AR="$AR" # Let the user override the test with a dos path.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -n "$AR"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -f "$ac_dir/cc"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington echo $ac_n "checking which thread library to use""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:898: checking which thread library to use" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Check whether --with-mit-pthreads or --without-mit-pthreads was given.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test "${with_mit_pthreads+set}" = set; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Check whether --with-ptl2 or --without-ptl2 was given.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test "${with_ptl2+set}" = set; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: no thread library.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian WellingtonPlease choose a thread library using one of
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington configure --with-mit-pthreads
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington configure --with-ptl2
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Extract the first word of "gcc", so it can be a program name with args.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking for $ac_word""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:962: checking for $ac_word" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "$CC"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_cv_prog_CC="$CC" # Let the user override the test.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -n "$CC"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -z "$CC"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Extract the first word of "cc", so it can be a program name with args.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking for $ac_word""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:992: checking for $ac_word" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "$CC"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_cv_prog_CC="$CC" # Let the user override the test.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # We found a bogon in the path, so make sure we never use it.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # We chose a different compiler from the bogus one.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # However, it has the same basename, so the bogon will be chosen
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # first if we set CC to just the basename; use the full file name.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -n "$CC"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -z "$CC"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # Extract the first word of "cl", so it can be a program name with args.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking for $ac_word""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:1043: checking for $ac_word" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "$CC"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_cv_prog_CC="$CC" # Let the user override the test.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -n "$CC"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:1075: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#line 1086 "configure"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include "confdefs.h"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonmain(){return(0);}
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif { (eval echo configure:1091: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # If we can't run a trivial program, we are probably using a cross compiler.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:1117: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:1122: checking whether we are using GNU C" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington#ifdef __GNUC__
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1131: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:1150: checking whether ${CC-cc} accepts -g" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test "$ac_test_CFLAGS" = set; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# Extract the first word of "$ac_prog", so it can be a program name with args.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking for $ac_word""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:1186: checking for $ac_word" >&5
b2942b18a1ca3fc9d667b6aded87af31e93120fcAndreas Gustafssonif eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington if test -n "$YACC"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington ac_cv_prog_YACC="$YACC" # Let the user override the test.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -n "$YACC"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtontest -n "$YACC" && break
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:1218: checking how to run the C preprocessor" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington# On Suns, sometimes $CPP names a directory.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -z "$CPP"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # This must be in double quotes, not single quotes, because CPP may get
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # substituted into the Makefile and "${CC-cc}" will confuse make.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # On the NeXT, cc -E runs the code through the compiler's parser,
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # not just through cpp.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#line 1233 "configure"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include "confdefs.h"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include <assert.h>
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington{ (eval echo configure:1239: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -z "$ac_err"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#line 1250 "configure"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include "confdefs.h"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include <assert.h>
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington{ (eval echo configure:1256: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -z "$ac_err"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#line 1267 "configure"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include "confdefs.h"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include <assert.h>
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington{ (eval echo configure:1273: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -z "$ac_err"; then
303243b9d403fb2105dba02c8c9e236bf4cf0fc9Brian Wellingtonecho $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:1298: checking for ANSI C header files" >&5
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#line 1303 "configure"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include "confdefs.h"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include <stdlib.h>
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include <stdarg.h>
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include <string.h>
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include <float.h>
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington{ (eval echo configure:1311: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif test -z "$ac_err"; then
be7f27304337afbf078e8bd8db0f951a33abe33bAndreas Gustafsson # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
e24349aa2743d7bc0bc6efc34ee2b61de0f09e1eAndreas Gustafsson#line 1328 "configure"
be7f27304337afbf078e8bd8db0f951a33abe33bAndreas Gustafsson#include "confdefs.h"
be7f27304337afbf078e8bd8db0f951a33abe33bAndreas Gustafsson#include <string.h>
be7f27304337afbf078e8bd8db0f951a33abe33bAndreas Gustafssonif (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#line 1346 "configure"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include "confdefs.h"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include <stdlib.h>
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#line 1367 "configure"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include "confdefs.h"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#include <ctype.h>
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonint main () { int i; for (i = 0; i < 256; i++)
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonif { (eval echo configure:1378: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington#define STDC_HEADERS 1
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonfor ac_hdr in fcntl.h sys/time.h unistd.h sys/sockio.h netinet6/in6.h
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonecho $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonecho "configure:1405: checking for $ac_hdr" >&5
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington#line 1410 "configure"
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington#include "confdefs.h"
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington#include <$ac_hdr>
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington{ (eval echo configure:1415: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonif test -z "$ac_err"; then
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington eval "ac_cv_header_$ac_safe=yes"
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington eval "ac_cv_header_$ac_safe=no"
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonif eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington#define $ac_tr_hdr 1
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington ISC_PLATFORM_HAVENETINET6IN6H="#define ISC_PLATFORM_HAVENETINET6IN6H 1"
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington LWRES_PLATFORM_HAVENETINET6IN6H="#define LWRES_PLATFORM_HAVENETINET6IN6H 1"
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington ISC_PLATFORM_HAVENETINET6IN6H="#undef ISC_PLATFORM_HAVENETINET6IN6H"
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington LWRES_PLATFORM_HAVENETINET6IN6H="#undef LWRES_PLATFORM_HAVENETINET6IN6H"
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonecho $ac_n "checking for working const""... $ac_c" 1>&6
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonecho "configure:1456: checking for working const" >&5
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellingtonif eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington#line 1461 "configure"
6ec499054450c5e0fd69d78961deef46985ba363Brian Wellington#include "confdefs.h"
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington/* Ultrix mips cc rejects this. */
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtontypedef int charset[2]; const charset x;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington/* SunOS 4.1.1 cc rejects this. */
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonchar const *const *ccp;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington/* NEC SVR4.0.2 mips cc rejects this. */
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonstruct point {int x, y;};
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonstatic struct point const zero = {0,0};
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington/* AIX XL C 1.02.0.0 rejects this.
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington It does not let you subtract one const X* pointer from another in an arm
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington of an if-expression whose if-part is not a constant expression */
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonconst char *g = "string";
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonccp = &g + (g ? g-g : 0);
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington/* HPUX 7.0 cc rejects these. */
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonp = (char**) ccp;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonccp = (char const *const *) p;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington{ /* SCO 3.2v4 cc rejects this. */
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington char const *s = 0 ? (char *) 0 : (char const *) 0;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington{ /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington int x[] = {25, 17};
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington const int *foo = &x[0];
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington{ /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington typedef const int *iptr;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington{ /* AIX XL C 1.02.0.0 rejects this saying
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington struct s { int j; const int *ap[3]; };
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington struct s *b; b->j = 5;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington{ /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellington const int foo = 10;
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonif { (eval echo configure:1510: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho $ac_n "checking for inline""... $ac_c" 1>&6
9e3a7b0faf417a10f5f689edf288807b2d5eedc5Brian Wellingtonecho "configure:1531: checking for inline" >&5
if { (eval echo configure:1659: \"$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:1704: \"$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:1751: \"$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:1805: \"$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:1857: \"$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:1898: \"$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:1939: \"$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:2006: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
*-linux*)
if { (eval echo configure:2069: \"$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:2116: \"$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*)
if { (eval echo configure:2506: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:2555: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:2604: \"$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:2962: \"$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
no)
yes)
no)
no)
yes)
no)
if { (eval echo configure:3209: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3261: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3313: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3365: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3416: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
if { (eval echo configure:3456: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
if { (eval echo configure:3502: \"$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___%'`
# 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