25150 lines
637 KiB
Bash
Executable File
25150 lines
637 KiB
Bash
Executable File
#! /bin/sh
|
|
# From configure.in Revision: 1.304 .
|
|
# Guess values for system-dependent variables and create Makefiles.
|
|
# Generated by Autoconf 2.52 for heimdal 0.4e.
|
|
#
|
|
# Report bugs to <heimdal-bugs@pdc.kth.se>.
|
|
#
|
|
# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
|
# Free Software Foundation, Inc.
|
|
# This configure script is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy, distribute and modify it.
|
|
|
|
# Avoid depending upon Character Ranges.
|
|
as_cr_letters='abcdefghijklmnopqrstuvwxyz'
|
|
as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
|
as_cr_Letters=$as_cr_letters$as_cr_LETTERS
|
|
as_cr_digits='0123456789'
|
|
as_cr_alnum=$as_cr_Letters$as_cr_digits
|
|
|
|
# Sed expression to map a string onto a valid variable name.
|
|
as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
|
|
|
|
# Sed expression to map a string onto a valid CPP name.
|
|
as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
|
|
|
|
# Be Bourne compatible
|
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
|
emulate sh
|
|
NULLCMD=:
|
|
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
|
set -o posix
|
|
fi
|
|
|
|
# Name of the executable.
|
|
as_me=`echo "$0" |sed 's,.*[\\/],,'`
|
|
|
|
if expr a : '\(a\)' >/dev/null 2>&1; then
|
|
as_expr=expr
|
|
else
|
|
as_expr=false
|
|
fi
|
|
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
|
echo >conf$$.file
|
|
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
|
# We could just check for DJGPP; but this test a) works b) is more generic
|
|
# and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
|
|
if test -f conf$$.exe; then
|
|
# Don't use ln at all; we don't have any links
|
|
as_ln_s='cp -p'
|
|
else
|
|
as_ln_s='ln -s'
|
|
fi
|
|
elif ln conf$$.file conf$$ 2>/dev/null; then
|
|
as_ln_s=ln
|
|
else
|
|
as_ln_s='cp -p'
|
|
fi
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
|
|
|
as_executable_p="test -f"
|
|
|
|
# Support unset when possible.
|
|
if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
|
|
as_unset=unset
|
|
else
|
|
as_unset=false
|
|
fi
|
|
|
|
# NLS nuisances.
|
|
$as_unset LANG || test "${LANG+set}" != set || { LANG=C; export LANG; }
|
|
$as_unset LC_ALL || test "${LC_ALL+set}" != set || { LC_ALL=C; export LC_ALL; }
|
|
$as_unset LC_TIME || test "${LC_TIME+set}" != set || { LC_TIME=C; export LC_TIME; }
|
|
$as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set || { LC_CTYPE=C; export LC_CTYPE; }
|
|
$as_unset LANGUAGE || test "${LANGUAGE+set}" != set || { LANGUAGE=C; export LANGUAGE; }
|
|
$as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set || { LC_COLLATE=C; export LC_COLLATE; }
|
|
$as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set || { LC_NUMERIC=C; export LC_NUMERIC; }
|
|
$as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set || { LC_MESSAGES=C; export LC_MESSAGES; }
|
|
|
|
# IFS
|
|
# We need space, tab and new line, in precisely that order.
|
|
as_nl='
|
|
'
|
|
IFS=" $as_nl"
|
|
|
|
# CDPATH.
|
|
$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }
|
|
|
|
# Name of the host.
|
|
# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
|
|
# so uname gets run too.
|
|
ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
|
|
|
|
exec 6>&1
|
|
|
|
#
|
|
# Initializations.
|
|
#
|
|
ac_default_prefix=/usr/local
|
|
cross_compiling=no
|
|
subdirs=
|
|
MFLAGS= MAKEFLAGS=
|
|
SHELL=${CONFIG_SHELL-/bin/sh}
|
|
|
|
# Maximum number of lines to put in a shell here document.
|
|
# This variable seems obsolete. It should probably be removed, and
|
|
# only ac_max_sed_lines should be used.
|
|
: ${ac_max_here_lines=38}
|
|
|
|
ac_default_prefix=/usr/heimdal
|
|
# Factoring default headers for most tests.
|
|
ac_includes_default="\
|
|
#include <stdio.h>
|
|
#if HAVE_SYS_TYPES_H
|
|
# include <sys/types.h>
|
|
#endif
|
|
#if HAVE_SYS_STAT_H
|
|
# include <sys/stat.h>
|
|
#endif
|
|
#if STDC_HEADERS
|
|
# include <stdlib.h>
|
|
# include <stddef.h>
|
|
#else
|
|
# if HAVE_STDLIB_H
|
|
# include <stdlib.h>
|
|
# endif
|
|
#endif
|
|
#if HAVE_STRING_H
|
|
# if !STDC_HEADERS && HAVE_MEMORY_H
|
|
# include <memory.h>
|
|
# endif
|
|
# include <string.h>
|
|
#endif
|
|
#if HAVE_STRINGS_H
|
|
# include <strings.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
# include <inttypes.h>
|
|
#else
|
|
# if HAVE_STDINT_H
|
|
# include <stdint.h>
|
|
# endif
|
|
#endif
|
|
#if HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif"
|
|
|
|
# Initialize some variables set by options.
|
|
ac_init_help=
|
|
ac_init_version=false
|
|
# The variables have the same names as the options, with
|
|
# dashes changed to underlines.
|
|
cache_file=/dev/null
|
|
exec_prefix=NONE
|
|
no_create=
|
|
no_recursion=
|
|
prefix=NONE
|
|
program_prefix=NONE
|
|
program_suffix=NONE
|
|
program_transform_name=s,x,x,
|
|
silent=
|
|
site=
|
|
srcdir=
|
|
verbose=
|
|
x_includes=NONE
|
|
x_libraries=NONE
|
|
|
|
# Installation directory options.
|
|
# These are left unexpanded so users can "make install exec_prefix=/foo"
|
|
# and all the variables that are supposed to be based on exec_prefix
|
|
# by default will actually change.
|
|
# Use braces instead of parens because sh, perl, etc. also accept them.
|
|
bindir='${exec_prefix}/bin'
|
|
sbindir='${exec_prefix}/sbin'
|
|
libexecdir='${exec_prefix}/libexec'
|
|
datadir='${prefix}/share'
|
|
sysconfdir='${prefix}/etc'
|
|
sharedstatedir='${prefix}/com'
|
|
localstatedir='${prefix}/var'
|
|
libdir='${exec_prefix}/lib'
|
|
includedir='${prefix}/include'
|
|
oldincludedir='/usr/include'
|
|
infodir='${prefix}/info'
|
|
mandir='${prefix}/man'
|
|
|
|
# Identity of this package.
|
|
PACKAGE_NAME='heimdal'
|
|
PACKAGE_TARNAME='heimdal'
|
|
PACKAGE_VERSION='0.4e'
|
|
PACKAGE_STRING='heimdal 0.4e'
|
|
PACKAGE_BUGREPORT='heimdal-bugs@pdc.kth.se'
|
|
|
|
ac_prev=
|
|
for ac_option
|
|
do
|
|
# If the previous option needs an argument, assign it.
|
|
if test -n "$ac_prev"; then
|
|
eval "$ac_prev=\$ac_option"
|
|
ac_prev=
|
|
continue
|
|
fi
|
|
|
|
ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
|
|
|
|
# Accept the important Cygnus configure options, so we can diagnose typos.
|
|
|
|
case $ac_option in
|
|
|
|
-bindir | --bindir | --bindi | --bind | --bin | --bi)
|
|
ac_prev=bindir ;;
|
|
-bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
|
|
bindir=$ac_optarg ;;
|
|
|
|
-build | --build | --buil | --bui | --bu)
|
|
ac_prev=build_alias ;;
|
|
-build=* | --build=* | --buil=* | --bui=* | --bu=*)
|
|
build_alias=$ac_optarg ;;
|
|
|
|
-cache-file | --cache-file | --cache-fil | --cache-fi \
|
|
| --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
|
ac_prev=cache_file ;;
|
|
-cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
|
|
| --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
|
|
cache_file=$ac_optarg ;;
|
|
|
|
--config-cache | -C)
|
|
cache_file=config.cache ;;
|
|
|
|
-datadir | --datadir | --datadi | --datad | --data | --dat | --da)
|
|
ac_prev=datadir ;;
|
|
-datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
|
|
| --da=*)
|
|
datadir=$ac_optarg ;;
|
|
|
|
-disable-* | --disable-*)
|
|
ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
|
|
# Reject names that are not valid shell variable names.
|
|
expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|
{ echo "$as_me: error: invalid feature name: $ac_feature" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
ac_feature=`echo $ac_feature | sed 's/-/_/g'`
|
|
eval "enable_$ac_feature=no" ;;
|
|
|
|
-enable-* | --enable-*)
|
|
ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
|
|
# Reject names that are not valid shell variable names.
|
|
expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|
{ echo "$as_me: error: invalid feature name: $ac_feature" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
ac_feature=`echo $ac_feature | sed 's/-/_/g'`
|
|
case $ac_option in
|
|
*=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
|
|
*) ac_optarg=yes ;;
|
|
esac
|
|
eval "enable_$ac_feature='$ac_optarg'" ;;
|
|
|
|
-exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
|
|
| --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
|
|
| --exec | --exe | --ex)
|
|
ac_prev=exec_prefix ;;
|
|
-exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
|
|
| --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
|
|
| --exec=* | --exe=* | --ex=*)
|
|
exec_prefix=$ac_optarg ;;
|
|
|
|
-gas | --gas | --ga | --g)
|
|
# Obsolete; use --with-gas.
|
|
with_gas=yes ;;
|
|
|
|
-help | --help | --hel | --he | -h)
|
|
ac_init_help=long ;;
|
|
-help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
|
|
ac_init_help=recursive ;;
|
|
-help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
|
|
ac_init_help=short ;;
|
|
|
|
-host | --host | --hos | --ho)
|
|
ac_prev=host_alias ;;
|
|
-host=* | --host=* | --hos=* | --ho=*)
|
|
host_alias=$ac_optarg ;;
|
|
|
|
-includedir | --includedir | --includedi | --included | --include \
|
|
| --includ | --inclu | --incl | --inc)
|
|
ac_prev=includedir ;;
|
|
-includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
|
|
| --includ=* | --inclu=* | --incl=* | --inc=*)
|
|
includedir=$ac_optarg ;;
|
|
|
|
-infodir | --infodir | --infodi | --infod | --info | --inf)
|
|
ac_prev=infodir ;;
|
|
-infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
|
|
infodir=$ac_optarg ;;
|
|
|
|
-libdir | --libdir | --libdi | --libd)
|
|
ac_prev=libdir ;;
|
|
-libdir=* | --libdir=* | --libdi=* | --libd=*)
|
|
libdir=$ac_optarg ;;
|
|
|
|
-libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
|
|
| --libexe | --libex | --libe)
|
|
ac_prev=libexecdir ;;
|
|
-libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
|
|
| --libexe=* | --libex=* | --libe=*)
|
|
libexecdir=$ac_optarg ;;
|
|
|
|
-localstatedir | --localstatedir | --localstatedi | --localstated \
|
|
| --localstate | --localstat | --localsta | --localst \
|
|
| --locals | --local | --loca | --loc | --lo)
|
|
ac_prev=localstatedir ;;
|
|
-localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
|
|
| --localstate=* | --localstat=* | --localsta=* | --localst=* \
|
|
| --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
|
|
localstatedir=$ac_optarg ;;
|
|
|
|
-mandir | --mandir | --mandi | --mand | --man | --ma | --m)
|
|
ac_prev=mandir ;;
|
|
-mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
|
|
mandir=$ac_optarg ;;
|
|
|
|
-nfp | --nfp | --nf)
|
|
# Obsolete; use --without-fp.
|
|
with_fp=no ;;
|
|
|
|
-no-create | --no-create | --no-creat | --no-crea | --no-cre \
|
|
| --no-cr | --no-c)
|
|
no_create=yes ;;
|
|
|
|
-no-recursion | --no-recursion | --no-recursio | --no-recursi \
|
|
| --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
|
|
no_recursion=yes ;;
|
|
|
|
-oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
|
|
| --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
|
|
| --oldin | --oldi | --old | --ol | --o)
|
|
ac_prev=oldincludedir ;;
|
|
-oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
|
|
| --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
|
|
| --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
|
oldincludedir=$ac_optarg ;;
|
|
|
|
-prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
|
|
ac_prev=prefix ;;
|
|
-prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
|
|
prefix=$ac_optarg ;;
|
|
|
|
-program-prefix | --program-prefix | --program-prefi | --program-pref \
|
|
| --program-pre | --program-pr | --program-p)
|
|
ac_prev=program_prefix ;;
|
|
-program-prefix=* | --program-prefix=* | --program-prefi=* \
|
|
| --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
|
|
program_prefix=$ac_optarg ;;
|
|
|
|
-program-suffix | --program-suffix | --program-suffi | --program-suff \
|
|
| --program-suf | --program-su | --program-s)
|
|
ac_prev=program_suffix ;;
|
|
-program-suffix=* | --program-suffix=* | --program-suffi=* \
|
|
| --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
|
|
program_suffix=$ac_optarg ;;
|
|
|
|
-program-transform-name | --program-transform-name \
|
|
| --program-transform-nam | --program-transform-na \
|
|
| --program-transform-n | --program-transform- \
|
|
| --program-transform | --program-transfor \
|
|
| --program-transfo | --program-transf \
|
|
| --program-trans | --program-tran \
|
|
| --progr-tra | --program-tr | --program-t)
|
|
ac_prev=program_transform_name ;;
|
|
-program-transform-name=* | --program-transform-name=* \
|
|
| --program-transform-nam=* | --program-transform-na=* \
|
|
| --program-transform-n=* | --program-transform-=* \
|
|
| --program-transform=* | --program-transfor=* \
|
|
| --program-transfo=* | --program-transf=* \
|
|
| --program-trans=* | --program-tran=* \
|
|
| --progr-tra=* | --program-tr=* | --program-t=*)
|
|
program_transform_name=$ac_optarg ;;
|
|
|
|
-q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
|
| -silent | --silent | --silen | --sile | --sil)
|
|
silent=yes ;;
|
|
|
|
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
|
|
ac_prev=sbindir ;;
|
|
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
|
|
| --sbi=* | --sb=*)
|
|
sbindir=$ac_optarg ;;
|
|
|
|
-sharedstatedir | --sharedstatedir | --sharedstatedi \
|
|
| --sharedstated | --sharedstate | --sharedstat | --sharedsta \
|
|
| --sharedst | --shareds | --shared | --share | --shar \
|
|
| --sha | --sh)
|
|
ac_prev=sharedstatedir ;;
|
|
-sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
|
|
| --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
|
|
| --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
|
|
| --sha=* | --sh=*)
|
|
sharedstatedir=$ac_optarg ;;
|
|
|
|
-site | --site | --sit)
|
|
ac_prev=site ;;
|
|
-site=* | --site=* | --sit=*)
|
|
site=$ac_optarg ;;
|
|
|
|
-srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
|
|
ac_prev=srcdir ;;
|
|
-srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
|
|
srcdir=$ac_optarg ;;
|
|
|
|
-sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
|
|
| --syscon | --sysco | --sysc | --sys | --sy)
|
|
ac_prev=sysconfdir ;;
|
|
-sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
|
|
| --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
|
|
sysconfdir=$ac_optarg ;;
|
|
|
|
-target | --target | --targe | --targ | --tar | --ta | --t)
|
|
ac_prev=target_alias ;;
|
|
-target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
|
|
target_alias=$ac_optarg ;;
|
|
|
|
-v | -verbose | --verbose | --verbos | --verbo | --verb)
|
|
verbose=yes ;;
|
|
|
|
-version | --version | --versio | --versi | --vers | -V)
|
|
ac_init_version=: ;;
|
|
|
|
-with-* | --with-*)
|
|
ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
|
|
# Reject names that are not valid shell variable names.
|
|
expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|
{ echo "$as_me: error: invalid package name: $ac_package" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
ac_package=`echo $ac_package| sed 's/-/_/g'`
|
|
case $ac_option in
|
|
*=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
|
|
*) ac_optarg=yes ;;
|
|
esac
|
|
eval "with_$ac_package='$ac_optarg'" ;;
|
|
|
|
-without-* | --without-*)
|
|
ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
|
|
# Reject names that are not valid shell variable names.
|
|
expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|
{ echo "$as_me: error: invalid package name: $ac_package" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
ac_package=`echo $ac_package | sed 's/-/_/g'`
|
|
eval "with_$ac_package=no" ;;
|
|
|
|
--x)
|
|
# Obsolete; use --with-x.
|
|
with_x=yes ;;
|
|
|
|
-x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
|
|
| --x-incl | --x-inc | --x-in | --x-i)
|
|
ac_prev=x_includes ;;
|
|
-x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
|
|
| --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
|
|
x_includes=$ac_optarg ;;
|
|
|
|
-x-libraries | --x-libraries | --x-librarie | --x-librari \
|
|
| --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
|
|
ac_prev=x_libraries ;;
|
|
-x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
|
|
| --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
|
|
x_libraries=$ac_optarg ;;
|
|
|
|
-*) { echo "$as_me: error: unrecognized option: $ac_option
|
|
Try \`$0 --help' for more information." >&2
|
|
{ (exit 1); exit 1; }; }
|
|
;;
|
|
|
|
*=*)
|
|
ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
|
|
# Reject names that are not valid shell variable names.
|
|
expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
|
|
{ echo "$as_me: error: invalid variable name: $ac_envvar" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
|
|
eval "$ac_envvar='$ac_optarg'"
|
|
export $ac_envvar ;;
|
|
|
|
*)
|
|
# FIXME: should be removed in autoconf 3.0.
|
|
echo "$as_me: WARNING: you should use --build, --host, --target" >&2
|
|
expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
|
|
echo "$as_me: WARNING: invalid host type: $ac_option" >&2
|
|
: ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
|
|
;;
|
|
|
|
esac
|
|
done
|
|
|
|
if test -n "$ac_prev"; then
|
|
ac_option=--`echo $ac_prev | sed 's/_/-/g'`
|
|
{ echo "$as_me: error: missing argument to $ac_option" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
# Be sure to have absolute paths.
|
|
for ac_var in exec_prefix prefix
|
|
do
|
|
eval ac_val=$`echo $ac_var`
|
|
case $ac_val in
|
|
[\\/$]* | ?:[\\/]* | NONE | '' ) ;;
|
|
*) { echo "$as_me: error: expected an absolute path for --$ac_var: $ac_val" >&2
|
|
{ (exit 1); exit 1; }; };;
|
|
esac
|
|
done
|
|
|
|
# Be sure to have absolute paths.
|
|
for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
|
|
localstatedir libdir includedir oldincludedir infodir mandir
|
|
do
|
|
eval ac_val=$`echo $ac_var`
|
|
case $ac_val in
|
|
[\\/$]* | ?:[\\/]* ) ;;
|
|
*) { echo "$as_me: error: expected an absolute path for --$ac_var: $ac_val" >&2
|
|
{ (exit 1); exit 1; }; };;
|
|
esac
|
|
done
|
|
|
|
# There might be people who depend on the old broken behavior: `$host'
|
|
# used to hold the argument of --host etc.
|
|
build=$build_alias
|
|
host=$host_alias
|
|
target=$target_alias
|
|
|
|
# FIXME: should be removed in autoconf 3.0.
|
|
if test "x$host_alias" != x; then
|
|
if test "x$build_alias" = x; then
|
|
cross_compiling=maybe
|
|
echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
|
|
If a cross compiler is detected then cross compile mode will be used." >&2
|
|
elif test "x$build_alias" != "x$host_alias"; then
|
|
cross_compiling=yes
|
|
fi
|
|
fi
|
|
|
|
ac_tool_prefix=
|
|
test -n "$host_alias" && ac_tool_prefix=$host_alias-
|
|
|
|
test "$silent" = yes && exec 6>/dev/null
|
|
|
|
# Find the source files, if location was not specified.
|
|
if test -z "$srcdir"; then
|
|
ac_srcdir_defaulted=yes
|
|
# Try the directory containing this script, then its parent.
|
|
ac_prog=$0
|
|
ac_confdir=`echo "$ac_prog" | sed 's%[\\/][^\\/][^\\/]*$%%'`
|
|
test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
|
|
srcdir=$ac_confdir
|
|
if test ! -r $srcdir/$ac_unique_file; then
|
|
srcdir=..
|
|
fi
|
|
else
|
|
ac_srcdir_defaulted=no
|
|
fi
|
|
if test ! -r $srcdir/$ac_unique_file; then
|
|
if test "$ac_srcdir_defaulted" = yes; then
|
|
{ echo "$as_me: error: cannot find sources in $ac_confdir or .." >&2
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
{ echo "$as_me: error: cannot find sources in $srcdir" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
fi
|
|
srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
|
|
ac_env_build_alias_set=${build_alias+set}
|
|
ac_env_build_alias_value=$build_alias
|
|
ac_cv_env_build_alias_set=${build_alias+set}
|
|
ac_cv_env_build_alias_value=$build_alias
|
|
ac_env_host_alias_set=${host_alias+set}
|
|
ac_env_host_alias_value=$host_alias
|
|
ac_cv_env_host_alias_set=${host_alias+set}
|
|
ac_cv_env_host_alias_value=$host_alias
|
|
ac_env_target_alias_set=${target_alias+set}
|
|
ac_env_target_alias_value=$target_alias
|
|
ac_cv_env_target_alias_set=${target_alias+set}
|
|
ac_cv_env_target_alias_value=$target_alias
|
|
ac_env_CC_set=${CC+set}
|
|
ac_env_CC_value=$CC
|
|
ac_cv_env_CC_set=${CC+set}
|
|
ac_cv_env_CC_value=$CC
|
|
ac_env_CFLAGS_set=${CFLAGS+set}
|
|
ac_env_CFLAGS_value=$CFLAGS
|
|
ac_cv_env_CFLAGS_set=${CFLAGS+set}
|
|
ac_cv_env_CFLAGS_value=$CFLAGS
|
|
ac_env_LDFLAGS_set=${LDFLAGS+set}
|
|
ac_env_LDFLAGS_value=$LDFLAGS
|
|
ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
|
|
ac_cv_env_LDFLAGS_value=$LDFLAGS
|
|
ac_env_CPPFLAGS_set=${CPPFLAGS+set}
|
|
ac_env_CPPFLAGS_value=$CPPFLAGS
|
|
ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
|
|
ac_cv_env_CPPFLAGS_value=$CPPFLAGS
|
|
ac_env_CPP_set=${CPP+set}
|
|
ac_env_CPP_value=$CPP
|
|
ac_cv_env_CPP_set=${CPP+set}
|
|
ac_cv_env_CPP_value=$CPP
|
|
|
|
#
|
|
# Report the --help message.
|
|
#
|
|
if test "$ac_init_help" = "long"; then
|
|
# Omit some internal or obsolete options to make the list less imposing.
|
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
|
cat <<EOF
|
|
\`configure' configures heimdal 0.4e to adapt to many kinds of systems.
|
|
|
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
|
|
|
To assign environment variables (e.g., CC, CFLAGS...), specify them as
|
|
VAR=VALUE. See below for descriptions of some of the useful variables.
|
|
|
|
Defaults for the options are specified in brackets.
|
|
|
|
Configuration:
|
|
-h, --help display this help and exit
|
|
--help=short display options specific to this package
|
|
--help=recursive display the short help of all the included packages
|
|
-V, --version display version information and exit
|
|
-q, --quiet, --silent do not print \`checking...' messages
|
|
--cache-file=FILE cache test results in FILE [disabled]
|
|
-C, --config-cache alias for \`--cache-file=config.cache'
|
|
-n, --no-create do not create output files
|
|
--srcdir=DIR find the sources in DIR [configure dir or \`..']
|
|
|
|
EOF
|
|
|
|
cat <<EOF
|
|
Installation directories:
|
|
--prefix=PREFIX install architecture-independent files in PREFIX
|
|
[$ac_default_prefix]
|
|
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
|
|
[PREFIX]
|
|
|
|
By default, \`make install' will install all the files in
|
|
\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
|
|
an installation prefix other than \`$ac_default_prefix' using \`--prefix',
|
|
for instance \`--prefix=\$HOME'.
|
|
|
|
For better control, use the options below.
|
|
|
|
Fine tuning of the installation directories:
|
|
--bindir=DIR user executables [EPREFIX/bin]
|
|
--sbindir=DIR system admin executables [EPREFIX/sbin]
|
|
--libexecdir=DIR program executables [EPREFIX/libexec]
|
|
--datadir=DIR read-only architecture-independent data [PREFIX/share]
|
|
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
|
|
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
|
|
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
|
|
--libdir=DIR object code libraries [EPREFIX/lib]
|
|
--includedir=DIR C header files [PREFIX/include]
|
|
--oldincludedir=DIR C header files for non-gcc [/usr/include]
|
|
--infodir=DIR info documentation [PREFIX/info]
|
|
--mandir=DIR man documentation [PREFIX/man]
|
|
EOF
|
|
|
|
cat <<\EOF
|
|
|
|
Program names:
|
|
--program-prefix=PREFIX prepend PREFIX to installed program names
|
|
--program-suffix=SUFFIX append SUFFIX to installed program names
|
|
--program-transform-name=PROGRAM run sed PROGRAM on installed program names
|
|
|
|
X features:
|
|
--x-includes=DIR X include files are in DIR
|
|
--x-libraries=DIR X library files are in DIR
|
|
|
|
System types:
|
|
--build=BUILD configure for building on BUILD [guessed]
|
|
--host=HOST build programs to run on HOST [BUILD]
|
|
EOF
|
|
fi
|
|
|
|
if test -n "$ac_init_help"; then
|
|
case $ac_init_help in
|
|
short | recursive ) echo "Configuration of heimdal 0.4e:";;
|
|
esac
|
|
cat <<\EOF
|
|
|
|
Optional Features:
|
|
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
|
|
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
|
--disable-dependency-tracking Speeds up one-time builds
|
|
--enable-dependency-tracking Do not reject slow dependency extractors
|
|
--enable-shared=PKGS build shared libraries default=no
|
|
--enable-static=PKGS build static libraries default=yes
|
|
--enable-fast-install=PKGS optimize for fast installation default=yes
|
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
|
--enable-dce if you want support for DCE/DFS PAG's.
|
|
--disable-otp if you don't want OTP support
|
|
--enable-osfc2 enable some OSF C2 support
|
|
--enable-bigendian the target is big endian
|
|
--enable-littleendian the target is little endian
|
|
--enable-netinfo enable netinfo for configuration lookup
|
|
|
|
Optional Packages:
|
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
|
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
|
|
--with-mips-abi=abi ABI to use for IRIX (32, n32, or 64)
|
|
--with-gnu-ld assume the C compiler uses GNU ld default=no
|
|
--without-berkeley-db if you don't want berkeley db
|
|
--without-ipv6 do not enable IPv6 support
|
|
--with-openldap=dir use openldap in dir
|
|
--with-openldap-lib=dir use openldap libraries in dir
|
|
--with-openldap-include=dir use openldap headers in dir
|
|
--with-krb4=dir use krb4 in dir
|
|
--with-krb4-lib=dir use krb4 libraries in dir
|
|
--with-krb4-include=dir use krb4 headers in dir
|
|
--with-readline=dir use readline in dir
|
|
--with-readline-lib=dir use readline libraries in dir
|
|
--with-readline-include=dir use readline headers in dir
|
|
--with-hesiod=dir use hesiod in dir
|
|
--with-hesiod-lib=dir use hesiod libraries in dir
|
|
--with-hesiod-include=dir use hesiod headers in dir
|
|
--with-x use the X Window System
|
|
--with-openssl=dir use openssl in dir
|
|
--with-openssl-lib=dir use openssl libraries in dir
|
|
--with-openssl-include=dir
|
|
use openssl headers in dir
|
|
|
|
Some influential environment variables:
|
|
CC C compiler command
|
|
CFLAGS C compiler flags
|
|
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
|
|
nonstandard directory <lib dir>
|
|
CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
|
|
headers in a nonstandard directory <include dir>
|
|
CPP C preprocessor
|
|
|
|
Use these variables to override the choices made by `configure' or to help
|
|
it to find libraries and programs with nonstandard names/locations.
|
|
|
|
Report bugs to <heimdal-bugs@pdc.kth.se>.
|
|
EOF
|
|
fi
|
|
|
|
if test "$ac_init_help" = "recursive"; then
|
|
# If there are subdirs, report their specific --help.
|
|
ac_popdir=`pwd`
|
|
for ac_subdir in : $ac_subdirs_all; do test "x$ac_subdir" = x: && continue
|
|
cd $ac_subdir
|
|
# A "../" for each directory in /$ac_subdir.
|
|
ac_dots=`echo $ac_subdir |
|
|
sed 's,^\./,,;s,[^/]$,&/,;s,[^/]*/,../,g'`
|
|
|
|
case $srcdir in
|
|
.) # No --srcdir option. We are building in place.
|
|
ac_sub_srcdir=$srcdir ;;
|
|
[\\/]* | ?:[\\/]* ) # Absolute path.
|
|
ac_sub_srcdir=$srcdir/$ac_subdir ;;
|
|
*) # Relative path.
|
|
ac_sub_srcdir=$ac_dots$srcdir/$ac_subdir ;;
|
|
esac
|
|
|
|
# Check for guested configure; otherwise get Cygnus style configure.
|
|
if test -f $ac_sub_srcdir/configure.gnu; then
|
|
echo
|
|
$SHELL $ac_sub_srcdir/configure.gnu --help=recursive
|
|
elif test -f $ac_sub_srcdir/configure; then
|
|
echo
|
|
$SHELL $ac_sub_srcdir/configure --help=recursive
|
|
elif test -f $ac_sub_srcdir/configure.ac ||
|
|
test -f $ac_sub_srcdir/configure.in; then
|
|
echo
|
|
$ac_configure --help
|
|
else
|
|
echo "$as_me: WARNING: no configuration information is in $ac_subdir" >&2
|
|
fi
|
|
cd $ac_popdir
|
|
done
|
|
fi
|
|
|
|
test -n "$ac_init_help" && exit 0
|
|
if $ac_init_version; then
|
|
cat <<\EOF
|
|
heimdal configure 0.4e
|
|
generated by GNU Autoconf 2.52
|
|
|
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
|
Free Software Foundation, Inc.
|
|
This configure script is free software; the Free Software Foundation
|
|
gives unlimited permission to copy, distribute and modify it.
|
|
EOF
|
|
exit 0
|
|
fi
|
|
exec 5>config.log
|
|
cat >&5 <<EOF
|
|
This file contains any messages produced by compilers while
|
|
running configure, to aid debugging if configure makes a mistake.
|
|
|
|
It was created by heimdal $as_me 0.4e, which was
|
|
generated by GNU Autoconf 2.52. Invocation command line was
|
|
|
|
$ $0 $@
|
|
|
|
EOF
|
|
{
|
|
cat <<_ASUNAME
|
|
## ---------- ##
|
|
## Platform. ##
|
|
## ---------- ##
|
|
|
|
hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
|
|
uname -m = `(uname -m) 2>/dev/null || echo unknown`
|
|
uname -r = `(uname -r) 2>/dev/null || echo unknown`
|
|
uname -s = `(uname -s) 2>/dev/null || echo unknown`
|
|
uname -v = `(uname -v) 2>/dev/null || echo unknown`
|
|
|
|
/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
|
|
/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
|
|
|
|
/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
|
|
/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
|
|
/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
|
|
hostinfo = `(hostinfo) 2>/dev/null || echo unknown`
|
|
/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
|
|
/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
|
|
/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
|
|
|
|
PATH = $PATH
|
|
|
|
_ASUNAME
|
|
} >&5
|
|
|
|
cat >&5 <<EOF
|
|
## ------------ ##
|
|
## Core tests. ##
|
|
## ------------ ##
|
|
|
|
EOF
|
|
|
|
# Keep a trace of the command line.
|
|
# Strip out --no-create and --no-recursion so they do not pile up.
|
|
# Also quote any args containing shell meta-characters.
|
|
ac_configure_args=
|
|
ac_sep=
|
|
for ac_arg
|
|
do
|
|
case $ac_arg in
|
|
-no-create | --no-create | --no-creat | --no-crea | --no-cre \
|
|
| --no-cr | --no-c) ;;
|
|
-no-recursion | --no-recursion | --no-recursio | --no-recursi \
|
|
| --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
|
|
*" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
|
|
ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"`
|
|
ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
|
|
ac_sep=" " ;;
|
|
*) ac_configure_args="$ac_configure_args$ac_sep$ac_arg"
|
|
ac_sep=" " ;;
|
|
esac
|
|
# Get rid of the leading space.
|
|
done
|
|
|
|
# When interrupted or exit'd, cleanup temporary files, and complete
|
|
# config.log. We remove comments because anyway the quotes in there
|
|
# would cause problems or look ugly.
|
|
trap 'exit_status=$?
|
|
# Save into config.log some information that might help in debugging.
|
|
echo >&5
|
|
echo "## ----------------- ##" >&5
|
|
echo "## Cache variables. ##" >&5
|
|
echo "## ----------------- ##" >&5
|
|
echo >&5
|
|
# The following way of writing the cache mishandles newlines in values,
|
|
{
|
|
(set) 2>&1 |
|
|
case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
|
|
*ac_space=\ *)
|
|
sed -n \
|
|
"s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
|
|
s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
|
|
;;
|
|
*)
|
|
sed -n \
|
|
"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
|
|
;;
|
|
esac;
|
|
} >&5
|
|
sed "/^$/d" confdefs.h >conftest.log
|
|
if test -s conftest.log; then
|
|
echo >&5
|
|
echo "## ------------ ##" >&5
|
|
echo "## confdefs.h. ##" >&5
|
|
echo "## ------------ ##" >&5
|
|
echo >&5
|
|
cat conftest.log >&5
|
|
fi
|
|
(echo; echo) >&5
|
|
test "$ac_signal" != 0 &&
|
|
echo "$as_me: caught signal $ac_signal" >&5
|
|
echo "$as_me: exit $exit_status" >&5
|
|
rm -rf conftest* confdefs* core core.* *.core conf$$* $ac_clean_files &&
|
|
exit $exit_status
|
|
' 0
|
|
for ac_signal in 1 2 13 15; do
|
|
trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
|
|
done
|
|
ac_signal=0
|
|
|
|
# confdefs.h avoids OS command line length limits that DEFS can exceed.
|
|
rm -rf conftest* confdefs.h
|
|
# AIX cpp loses on an empty file, so make sure it contains at least a newline.
|
|
echo >confdefs.h
|
|
|
|
# Let the site file select an alternate cache file if it wants to.
|
|
# Prefer explicitly selected file to automatically selected ones.
|
|
if test -z "$CONFIG_SITE"; then
|
|
if test "x$prefix" != xNONE; then
|
|
CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
|
|
else
|
|
CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
|
|
fi
|
|
fi
|
|
for ac_site_file in $CONFIG_SITE; do
|
|
if test -r "$ac_site_file"; then
|
|
{ echo "$as_me:917: loading site script $ac_site_file" >&5
|
|
echo "$as_me: loading site script $ac_site_file" >&6;}
|
|
cat "$ac_site_file" >&5
|
|
. "$ac_site_file"
|
|
fi
|
|
done
|
|
|
|
if test -r "$cache_file"; then
|
|
# Some versions of bash will fail to source /dev/null (special
|
|
# files actually), so we avoid doing that.
|
|
if test -f "$cache_file"; then
|
|
{ echo "$as_me:928: loading cache $cache_file" >&5
|
|
echo "$as_me: loading cache $cache_file" >&6;}
|
|
case $cache_file in
|
|
[\\/]* | ?:[\\/]* ) . $cache_file;;
|
|
*) . ./$cache_file;;
|
|
esac
|
|
fi
|
|
else
|
|
{ echo "$as_me:936: creating cache $cache_file" >&5
|
|
echo "$as_me: creating cache $cache_file" >&6;}
|
|
>$cache_file
|
|
fi
|
|
|
|
# Check that the precious variables saved in the cache have kept the same
|
|
# value.
|
|
ac_cache_corrupted=false
|
|
for ac_var in `(set) 2>&1 |
|
|
sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
|
|
eval ac_old_set=\$ac_cv_env_${ac_var}_set
|
|
eval ac_new_set=\$ac_env_${ac_var}_set
|
|
eval ac_old_val="\$ac_cv_env_${ac_var}_value"
|
|
eval ac_new_val="\$ac_env_${ac_var}_value"
|
|
case $ac_old_set,$ac_new_set in
|
|
set,)
|
|
{ echo "$as_me:952: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
|
|
echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
|
|
ac_cache_corrupted=: ;;
|
|
,set)
|
|
{ echo "$as_me:956: error: \`$ac_var' was not set in the previous run" >&5
|
|
echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
|
|
ac_cache_corrupted=: ;;
|
|
,);;
|
|
*)
|
|
if test "x$ac_old_val" != "x$ac_new_val"; then
|
|
{ echo "$as_me:962: error: \`$ac_var' has changed since the previous run:" >&5
|
|
echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
|
|
{ echo "$as_me:964: former value: $ac_old_val" >&5
|
|
echo "$as_me: former value: $ac_old_val" >&2;}
|
|
{ echo "$as_me:966: current value: $ac_new_val" >&5
|
|
echo "$as_me: current value: $ac_new_val" >&2;}
|
|
ac_cache_corrupted=:
|
|
fi;;
|
|
esac
|
|
# Pass precious variables to config.status. It doesn't matter if
|
|
# we pass some twice (in addition to the command line arguments).
|
|
if test "$ac_new_set" = set; then
|
|
case $ac_new_val in
|
|
*" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
|
|
ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"`
|
|
ac_configure_args="$ac_configure_args '$ac_arg'"
|
|
;;
|
|
*) ac_configure_args="$ac_configure_args $ac_var=$ac_new_val"
|
|
;;
|
|
esac
|
|
fi
|
|
done
|
|
if $ac_cache_corrupted; then
|
|
{ echo "$as_me:985: error: changes in the environment can compromise the build" >&5
|
|
echo "$as_me: error: changes in the environment can compromise the build" >&2;}
|
|
{ { echo "$as_me:987: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
|
|
echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
ac_ext=c
|
|
ac_cpp='$CPP $CPPFLAGS'
|
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
|
|
case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
|
|
*c*,-n*) ECHO_N= ECHO_C='
|
|
' ECHO_T=' ' ;;
|
|
*c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
|
|
*) ECHO_N= ECHO_C='\c' ECHO_T= ;;
|
|
esac
|
|
echo "#! $SHELL" >conftest.sh
|
|
echo "exit 0" >>conftest.sh
|
|
chmod +x conftest.sh
|
|
if { (echo "$as_me:1007: PATH=\".;.\"; conftest.sh") >&5
|
|
(PATH=".;."; conftest.sh) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1010: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; then
|
|
ac_path_separator=';'
|
|
else
|
|
ac_path_separator=:
|
|
fi
|
|
PATH_SEPARATOR="$ac_path_separator"
|
|
rm -f conftest.sh
|
|
|
|
ac_config_headers="$ac_config_headers include/config.h"
|
|
|
|
ac_ext=c
|
|
ac_cpp='$CPP $CPPFLAGS'
|
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
if test -n "$ac_tool_prefix"; then
|
|
# Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
|
|
set dummy ${ac_tool_prefix}gcc; ac_word=$2
|
|
echo "$as_me:1029: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$CC"; then
|
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_CC="${ac_tool_prefix}gcc"
|
|
echo "$as_me:1044: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
CC=$ac_cv_prog_CC
|
|
if test -n "$CC"; then
|
|
echo "$as_me:1052: result: $CC" >&5
|
|
echo "${ECHO_T}$CC" >&6
|
|
else
|
|
echo "$as_me:1055: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
fi
|
|
if test -z "$ac_cv_prog_CC"; then
|
|
ac_ct_CC=$CC
|
|
# Extract the first word of "gcc", so it can be a program name with args.
|
|
set dummy gcc; ac_word=$2
|
|
echo "$as_me:1064: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$ac_ct_CC"; then
|
|
ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_ac_ct_CC="gcc"
|
|
echo "$as_me:1079: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
ac_ct_CC=$ac_cv_prog_ac_ct_CC
|
|
if test -n "$ac_ct_CC"; then
|
|
echo "$as_me:1087: result: $ac_ct_CC" >&5
|
|
echo "${ECHO_T}$ac_ct_CC" >&6
|
|
else
|
|
echo "$as_me:1090: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
CC=$ac_ct_CC
|
|
else
|
|
CC="$ac_cv_prog_CC"
|
|
fi
|
|
|
|
if test -z "$CC"; then
|
|
if test -n "$ac_tool_prefix"; then
|
|
# Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
|
|
set dummy ${ac_tool_prefix}cc; ac_word=$2
|
|
echo "$as_me:1103: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$CC"; then
|
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_CC="${ac_tool_prefix}cc"
|
|
echo "$as_me:1118: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
CC=$ac_cv_prog_CC
|
|
if test -n "$CC"; then
|
|
echo "$as_me:1126: result: $CC" >&5
|
|
echo "${ECHO_T}$CC" >&6
|
|
else
|
|
echo "$as_me:1129: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
fi
|
|
if test -z "$ac_cv_prog_CC"; then
|
|
ac_ct_CC=$CC
|
|
# Extract the first word of "cc", so it can be a program name with args.
|
|
set dummy cc; ac_word=$2
|
|
echo "$as_me:1138: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$ac_ct_CC"; then
|
|
ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_ac_ct_CC="cc"
|
|
echo "$as_me:1153: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
ac_ct_CC=$ac_cv_prog_ac_ct_CC
|
|
if test -n "$ac_ct_CC"; then
|
|
echo "$as_me:1161: result: $ac_ct_CC" >&5
|
|
echo "${ECHO_T}$ac_ct_CC" >&6
|
|
else
|
|
echo "$as_me:1164: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
CC=$ac_ct_CC
|
|
else
|
|
CC="$ac_cv_prog_CC"
|
|
fi
|
|
|
|
fi
|
|
if test -z "$CC"; then
|
|
# Extract the first word of "cc", so it can be a program name with args.
|
|
set dummy cc; ac_word=$2
|
|
echo "$as_me:1177: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$CC"; then
|
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
|
else
|
|
ac_prog_rejected=no
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
|
|
ac_prog_rejected=yes
|
|
continue
|
|
fi
|
|
ac_cv_prog_CC="cc"
|
|
echo "$as_me:1197: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
if test $ac_prog_rejected = yes; then
|
|
# We found a bogon in the path, so make sure we never use it.
|
|
set dummy $ac_cv_prog_CC
|
|
shift
|
|
if test $# != 0; then
|
|
# We chose a different compiler from the bogus one.
|
|
# However, it has the same basename, so the bogon will be chosen
|
|
# first if we set CC to just the basename; use the full file name.
|
|
shift
|
|
set dummy "$ac_dir/$ac_word" ${1+"$@"}
|
|
shift
|
|
ac_cv_prog_CC="$@"
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
CC=$ac_cv_prog_CC
|
|
if test -n "$CC"; then
|
|
echo "$as_me:1219: result: $CC" >&5
|
|
echo "${ECHO_T}$CC" >&6
|
|
else
|
|
echo "$as_me:1222: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
fi
|
|
if test -z "$CC"; then
|
|
if test -n "$ac_tool_prefix"; then
|
|
for ac_prog in cl
|
|
do
|
|
# Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
|
|
echo "$as_me:1233: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$CC"; then
|
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
|
|
echo "$as_me:1248: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
CC=$ac_cv_prog_CC
|
|
if test -n "$CC"; then
|
|
echo "$as_me:1256: result: $CC" >&5
|
|
echo "${ECHO_T}$CC" >&6
|
|
else
|
|
echo "$as_me:1259: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$CC" && break
|
|
done
|
|
fi
|
|
if test -z "$CC"; then
|
|
ac_ct_CC=$CC
|
|
for ac_prog in cl
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo "$as_me:1272: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$ac_ct_CC"; then
|
|
ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_ac_ct_CC="$ac_prog"
|
|
echo "$as_me:1287: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
ac_ct_CC=$ac_cv_prog_ac_ct_CC
|
|
if test -n "$ac_ct_CC"; then
|
|
echo "$as_me:1295: result: $ac_ct_CC" >&5
|
|
echo "${ECHO_T}$ac_ct_CC" >&6
|
|
else
|
|
echo "$as_me:1298: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$ac_ct_CC" && break
|
|
done
|
|
|
|
CC=$ac_ct_CC
|
|
fi
|
|
|
|
fi
|
|
|
|
test -z "$CC" && { { echo "$as_me:1310: error: no acceptable cc found in \$PATH" >&5
|
|
echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
# Provide some information about the compiler.
|
|
echo "$as_me:1315:" \
|
|
"checking for C compiler version" >&5
|
|
ac_compiler=`set X $ac_compile; echo $2`
|
|
{ (eval echo "$as_me:1318: \"$ac_compiler --version </dev/null >&5\"") >&5
|
|
(eval $ac_compiler --version </dev/null >&5) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1321: \$? = $ac_status" >&5
|
|
(exit $ac_status); }
|
|
{ (eval echo "$as_me:1323: \"$ac_compiler -v </dev/null >&5\"") >&5
|
|
(eval $ac_compiler -v </dev/null >&5) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1326: \$? = $ac_status" >&5
|
|
(exit $ac_status); }
|
|
{ (eval echo "$as_me:1328: \"$ac_compiler -V </dev/null >&5\"") >&5
|
|
(eval $ac_compiler -V </dev/null >&5) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1331: \$? = $ac_status" >&5
|
|
(exit $ac_status); }
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1335 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
ac_clean_files_save=$ac_clean_files
|
|
ac_clean_files="$ac_clean_files a.out a.exe"
|
|
# Try to create an executable without -o first, disregard a.out.
|
|
# It will help us diagnose broken compilers, and finding out an intuition
|
|
# of exeext.
|
|
echo "$as_me:1351: checking for C compiler default output" >&5
|
|
echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
|
|
ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
|
|
if { (eval echo "$as_me:1354: \"$ac_link_default\"") >&5
|
|
(eval $ac_link_default) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1357: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; then
|
|
# Find the output, starting from the most likely. This scheme is
|
|
# not robust to junk in `.', hence go to wildcards (a.*) only as a last
|
|
# resort.
|
|
for ac_file in `ls a.exe conftest.exe 2>/dev/null;
|
|
ls a.out conftest 2>/dev/null;
|
|
ls a.* conftest.* 2>/dev/null`; do
|
|
case $ac_file in
|
|
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
|
|
a.out ) # We found the default executable, but exeext='' is most
|
|
# certainly right.
|
|
break;;
|
|
*.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
|
|
# FIXME: I believe we export ac_cv_exeext for Libtool --akim.
|
|
export ac_cv_exeext
|
|
break;;
|
|
* ) break;;
|
|
esac
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
{ { echo "$as_me:1380: error: C compiler cannot create executables" >&5
|
|
echo "$as_me: error: C compiler cannot create executables" >&2;}
|
|
{ (exit 77); exit 77; }; }
|
|
fi
|
|
|
|
ac_exeext=$ac_cv_exeext
|
|
echo "$as_me:1386: result: $ac_file" >&5
|
|
echo "${ECHO_T}$ac_file" >&6
|
|
|
|
# Check the compiler produces executables we can run. If not, either
|
|
# the compiler is broken, or we cross compile.
|
|
echo "$as_me:1391: checking whether the C compiler works" >&5
|
|
echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
|
|
# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
|
|
# If not cross compiling, check that we can run a simple program.
|
|
if test "$cross_compiling" != yes; then
|
|
if { ac_try='./$ac_file'
|
|
{ (eval echo "$as_me:1397: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1400: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
cross_compiling=no
|
|
else
|
|
if test "$cross_compiling" = maybe; then
|
|
cross_compiling=yes
|
|
else
|
|
{ { echo "$as_me:1407: error: cannot run C compiled programs.
|
|
If you meant to cross compile, use \`--host'." >&5
|
|
echo "$as_me: error: cannot run C compiled programs.
|
|
If you meant to cross compile, use \`--host'." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
fi
|
|
fi
|
|
echo "$as_me:1415: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
|
|
rm -f a.out a.exe conftest$ac_cv_exeext
|
|
ac_clean_files=$ac_clean_files_save
|
|
# Check the compiler produces executables we can run. If not, either
|
|
# the compiler is broken, or we cross compile.
|
|
echo "$as_me:1422: checking whether we are cross compiling" >&5
|
|
echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
|
|
echo "$as_me:1424: result: $cross_compiling" >&5
|
|
echo "${ECHO_T}$cross_compiling" >&6
|
|
|
|
echo "$as_me:1427: checking for executable suffix" >&5
|
|
echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
|
|
if { (eval echo "$as_me:1429: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1432: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; then
|
|
# If both `conftest.exe' and `conftest' are `present' (well, observable)
|
|
# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
|
|
# work properly (i.e., refer to `conftest.exe'), while it won't with
|
|
# `rm'.
|
|
for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
|
|
case $ac_file in
|
|
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
|
|
*.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
|
|
export ac_cv_exeext
|
|
break;;
|
|
* ) break;;
|
|
esac
|
|
done
|
|
else
|
|
{ { echo "$as_me:1448: error: cannot compute EXEEXT: cannot compile and link" >&5
|
|
echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
rm -f conftest$ac_cv_exeext
|
|
echo "$as_me:1454: result: $ac_cv_exeext" >&5
|
|
echo "${ECHO_T}$ac_cv_exeext" >&6
|
|
|
|
rm -f conftest.$ac_ext
|
|
EXEEXT=$ac_cv_exeext
|
|
ac_exeext=$EXEEXT
|
|
echo "$as_me:1460: checking for object suffix" >&5
|
|
echo $ECHO_N "checking for object suffix... $ECHO_C" >&6
|
|
if test "${ac_cv_objext+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1466 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.o conftest.obj
|
|
if { (eval echo "$as_me:1478: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1481: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; then
|
|
for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
|
|
case $ac_file in
|
|
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;;
|
|
*) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
|
|
break;;
|
|
esac
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
{ { echo "$as_me:1493: error: cannot compute OBJEXT: cannot compile" >&5
|
|
echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
rm -f conftest.$ac_cv_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:1500: result: $ac_cv_objext" >&5
|
|
echo "${ECHO_T}$ac_cv_objext" >&6
|
|
OBJEXT=$ac_cv_objext
|
|
ac_objext=$OBJEXT
|
|
echo "$as_me:1504: checking whether we are using the GNU C compiler" >&5
|
|
echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
|
|
if test "${ac_cv_c_compiler_gnu+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1510 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
#ifndef __GNUC__
|
|
choke me
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:1525: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1528: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:1531: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1534: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_compiler_gnu=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_compiler_gnu=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
ac_cv_c_compiler_gnu=$ac_compiler_gnu
|
|
|
|
fi
|
|
echo "$as_me:1546: result: $ac_cv_c_compiler_gnu" >&5
|
|
echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
|
|
GCC=`test $ac_compiler_gnu = yes && echo yes`
|
|
ac_test_CFLAGS=${CFLAGS+set}
|
|
ac_save_CFLAGS=$CFLAGS
|
|
CFLAGS="-g"
|
|
echo "$as_me:1552: checking whether $CC accepts -g" >&5
|
|
echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_cc_g+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1558 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:1570: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1573: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:1576: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1579: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_prog_cc_g=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_prog_cc_g=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:1589: result: $ac_cv_prog_cc_g" >&5
|
|
echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
|
|
if test "$ac_test_CFLAGS" = set; then
|
|
CFLAGS=$ac_save_CFLAGS
|
|
elif test $ac_cv_prog_cc_g = yes; then
|
|
if test "$GCC" = yes; then
|
|
CFLAGS="-g -O2"
|
|
else
|
|
CFLAGS="-g"
|
|
fi
|
|
else
|
|
if test "$GCC" = yes; then
|
|
CFLAGS="-O2"
|
|
else
|
|
CFLAGS=
|
|
fi
|
|
fi
|
|
# Some people use a C++ compiler to compile C. Since we use `exit',
|
|
# in C++ we need to declare it. In case someone uses the same compiler
|
|
# for both compiling C and C++ we need to have the C++ compiler decide
|
|
# the declaration of exit, since it's the most demanding environment.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#ifndef __cplusplus
|
|
choke me
|
|
#endif
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:1616: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1619: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:1622: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1625: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
for ac_declaration in \
|
|
''\
|
|
'#include <stdlib.h>' \
|
|
'extern "C" void std::exit (int) throw (); using std::exit;' \
|
|
'extern "C" void std::exit (int); using std::exit;' \
|
|
'extern "C" void exit (int) throw ();' \
|
|
'extern "C" void exit (int);' \
|
|
'void exit (int);'
|
|
do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1637 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
$ac_declaration
|
|
int
|
|
main ()
|
|
{
|
|
exit (42);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:1650: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1653: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:1656: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1659: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
continue
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1669 "configure"
|
|
#include "confdefs.h"
|
|
$ac_declaration
|
|
int
|
|
main ()
|
|
{
|
|
exit (42);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:1681: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1684: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:1687: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1690: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
rm -f conftest*
|
|
if test -n "$ac_declaration"; then
|
|
echo '#ifdef __cplusplus' >>confdefs.h
|
|
echo $ac_declaration >>confdefs.h
|
|
echo '#endif' >>confdefs.h
|
|
fi
|
|
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
ac_ext=c
|
|
ac_cpp='$CPP $CPPFLAGS'
|
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
|
|
ac_ext=c
|
|
ac_cpp='$CPP $CPPFLAGS'
|
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
echo "$as_me:1722: checking how to run the C preprocessor" >&5
|
|
echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
|
|
# On Suns, sometimes $CPP names a directory.
|
|
if test -n "$CPP" && test -d "$CPP"; then
|
|
CPP=
|
|
fi
|
|
if test -z "$CPP"; then
|
|
if test "${ac_cv_prog_CPP+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
# Double quotes because CPP needs to be expanded
|
|
for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
|
|
do
|
|
ac_preproc_ok=false
|
|
for ac_c_preproc_warn_flag in '' yes
|
|
do
|
|
# Use a header file that comes with gcc, so configuring glibc
|
|
# with a fresh cross-compiler works.
|
|
# On the NeXT, cc -E runs the code through the compiler's parser,
|
|
# not just through cpp. "Syntax error" is here to catch this case.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1743 "configure"
|
|
#include "confdefs.h"
|
|
#include <assert.h>
|
|
Syntax error
|
|
_ACEOF
|
|
if { (eval echo "$as_me:1748: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:1754: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
# Broken: fails on valid input.
|
|
continue
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
# OK, works on sane cases. Now check whether non-existent headers
|
|
# can be detected and how.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1777 "configure"
|
|
#include "confdefs.h"
|
|
#include <ac_nonexistent.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:1781: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:1787: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
# Broken: success on invalid input.
|
|
continue
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
# Passes both tests.
|
|
ac_preproc_ok=:
|
|
break
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
done
|
|
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
|
|
rm -f conftest.err conftest.$ac_ext
|
|
if $ac_preproc_ok; then
|
|
break
|
|
fi
|
|
|
|
done
|
|
ac_cv_prog_CPP=$CPP
|
|
|
|
fi
|
|
CPP=$ac_cv_prog_CPP
|
|
else
|
|
ac_cv_prog_CPP=$CPP
|
|
fi
|
|
echo "$as_me:1824: result: $CPP" >&5
|
|
echo "${ECHO_T}$CPP" >&6
|
|
ac_preproc_ok=false
|
|
for ac_c_preproc_warn_flag in '' yes
|
|
do
|
|
# Use a header file that comes with gcc, so configuring glibc
|
|
# with a fresh cross-compiler works.
|
|
# On the NeXT, cc -E runs the code through the compiler's parser,
|
|
# not just through cpp. "Syntax error" is here to catch this case.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1834 "configure"
|
|
#include "confdefs.h"
|
|
#include <assert.h>
|
|
Syntax error
|
|
_ACEOF
|
|
if { (eval echo "$as_me:1839: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:1845: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
# Broken: fails on valid input.
|
|
continue
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
# OK, works on sane cases. Now check whether non-existent headers
|
|
# can be detected and how.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1868 "configure"
|
|
#include "confdefs.h"
|
|
#include <ac_nonexistent.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:1872: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:1878: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
# Broken: success on invalid input.
|
|
continue
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
# Passes both tests.
|
|
ac_preproc_ok=:
|
|
break
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
done
|
|
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
|
|
rm -f conftest.err conftest.$ac_ext
|
|
if $ac_preproc_ok; then
|
|
:
|
|
else
|
|
{ { echo "$as_me:1906: error: C preprocessor \"$CPP\" fails sanity check" >&5
|
|
echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
ac_ext=c
|
|
ac_cpp='$CPP $CPPFLAGS'
|
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
|
|
echo "$as_me:1917: checking for $CC option to accept ANSI C" >&5
|
|
echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_cc_stdc+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_prog_cc_stdc=no
|
|
ac_save_CC=$CC
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 1925 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
|
|
struct buf { int x; };
|
|
FILE * (*rcsopen) (struct buf *, struct stat *, int);
|
|
static char *e (p, i)
|
|
char **p;
|
|
int i;
|
|
{
|
|
return p[i];
|
|
}
|
|
static char *f (char * (*g) (char **, int), char **p, ...)
|
|
{
|
|
char *s;
|
|
va_list v;
|
|
va_start (v,p);
|
|
s = g (p, va_arg (v,int));
|
|
va_end (v);
|
|
return s;
|
|
}
|
|
int test (int i, double x);
|
|
struct s1 {int (*f) (int a);};
|
|
struct s2 {int (*f) (double a);};
|
|
int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
|
|
int argc;
|
|
char **argv;
|
|
int
|
|
main ()
|
|
{
|
|
return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
# Don't try gcc -ansi; that turns off useful extensions and
|
|
# breaks some systems' header files.
|
|
# AIX -qlanglvl=ansi
|
|
# Ultrix and OSF/1 -std1
|
|
# HP-UX 10.20 and later -Ae
|
|
# HP-UX older versions -Aa -D_HPUX_SOURCE
|
|
# SVR4 -Xc -D__EXTENSIONS__
|
|
for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
|
|
do
|
|
CC="$ac_save_CC $ac_arg"
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:1974: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1977: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:1980: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1983: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_prog_cc_stdc=$ac_arg
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext
|
|
done
|
|
rm -f conftest.$ac_ext conftest.$ac_objext
|
|
CC=$ac_save_CC
|
|
|
|
fi
|
|
|
|
case "x$ac_cv_prog_cc_stdc" in
|
|
x|xno)
|
|
echo "$as_me:2000: result: none needed" >&5
|
|
echo "${ECHO_T}none needed" >&6 ;;
|
|
*)
|
|
echo "$as_me:2003: result: $ac_cv_prog_cc_stdc" >&5
|
|
echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
|
|
CC="$CC $ac_cv_prog_cc_stdc" ;;
|
|
esac
|
|
|
|
ac_aux_dir=
|
|
for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
|
|
if test -f $ac_dir/install-sh; then
|
|
ac_aux_dir=$ac_dir
|
|
ac_install_sh="$ac_aux_dir/install-sh -c"
|
|
break
|
|
elif test -f $ac_dir/install.sh; then
|
|
ac_aux_dir=$ac_dir
|
|
ac_install_sh="$ac_aux_dir/install.sh -c"
|
|
break
|
|
elif test -f $ac_dir/shtool; then
|
|
ac_aux_dir=$ac_dir
|
|
ac_install_sh="$ac_aux_dir/shtool install -c"
|
|
break
|
|
fi
|
|
done
|
|
if test -z "$ac_aux_dir"; then
|
|
{ { echo "$as_me:2025: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
|
|
echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
ac_config_guess="$SHELL $ac_aux_dir/config.guess"
|
|
ac_config_sub="$SHELL $ac_aux_dir/config.sub"
|
|
ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
|
|
|
|
# Find a good install program. We prefer a C program (faster),
|
|
# so one script is as good as another. But avoid the broken or
|
|
# incompatible versions:
|
|
# SysV /etc/install, /usr/sbin/install
|
|
# SunOS /usr/etc/install
|
|
# IRIX /sbin/install
|
|
# AIX /bin/install
|
|
# AmigaOS /C/install, which installs bootblocks on floppy discs
|
|
# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
|
|
# AFS /usr/afsws/bin/install, which mishandles nonexistent args
|
|
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
|
# ./install, which can be erroneously created by make from ./install.sh.
|
|
echo "$as_me:2045: checking for a BSD compatible install" >&5
|
|
echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
|
|
if test -z "$INSTALL"; then
|
|
if test "${ac_cv_path_install+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
for ac_dir in $PATH; do
|
|
IFS=$ac_save_IFS
|
|
# Account for people who put trailing slashes in PATH elements.
|
|
case $ac_dir/ in
|
|
/ | ./ | .// | /cC/* \
|
|
| /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* \
|
|
| /usr/ucb/* ) ;;
|
|
*)
|
|
# OSF1 and SCO ODT 3.0 have their own names for install.
|
|
# Don't use installbsd from OSF since it installs stuff as root
|
|
# by default.
|
|
for ac_prog in ginstall scoinst install; do
|
|
if $as_executable_p "$ac_dir/$ac_prog"; then
|
|
if test $ac_prog = install &&
|
|
grep dspmsg "$ac_dir/$ac_prog" >/dev/null 2>&1; then
|
|
# AIX install. It has an incompatible calling convention.
|
|
:
|
|
elif test $ac_prog = install &&
|
|
grep pwplus "$ac_dir/$ac_prog" >/dev/null 2>&1; then
|
|
# program-specific install script used by HP pwplus--don't use.
|
|
:
|
|
else
|
|
ac_cv_path_install="$ac_dir/$ac_prog -c"
|
|
break 2
|
|
fi
|
|
fi
|
|
done
|
|
;;
|
|
esac
|
|
done
|
|
|
|
fi
|
|
if test "${ac_cv_path_install+set}" = set; then
|
|
INSTALL=$ac_cv_path_install
|
|
else
|
|
# As a last resort, use the slow shell script. We don't cache a
|
|
# path for INSTALL within a source directory, because that will
|
|
# break other packages using the cache if that directory is
|
|
# removed, or if the path is relative.
|
|
INSTALL=$ac_install_sh
|
|
fi
|
|
fi
|
|
echo "$as_me:2094: result: $INSTALL" >&5
|
|
echo "${ECHO_T}$INSTALL" >&6
|
|
|
|
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
|
|
# It thinks the first close brace ends the variable substitution.
|
|
test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
|
|
|
|
test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
|
|
|
|
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
|
|
|
echo "$as_me:2105: checking whether build environment is sane" >&5
|
|
echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
|
|
# Just in case
|
|
sleep 1
|
|
echo timestamp > conftest.file
|
|
# Do `set' in a subshell so we don't clobber the current shell's
|
|
# arguments. Must try -L first in case configure is actually a
|
|
# symlink; some systems play weird games with the mod time of symlinks
|
|
# (eg FreeBSD returns the mod time of the symlink's containing
|
|
# directory).
|
|
if (
|
|
set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
|
|
if test "$*" = "X"; then
|
|
# -L didn't work.
|
|
set X `ls -t $srcdir/configure conftest.file`
|
|
fi
|
|
rm -f conftest.file
|
|
if test "$*" != "X $srcdir/configure conftest.file" \
|
|
&& test "$*" != "X conftest.file $srcdir/configure"; then
|
|
|
|
# If neither matched, then we have a broken ls. This can happen
|
|
# if, for instance, CONFIG_SHELL is bash and it inherits a
|
|
# broken ls alias from the environment. This has actually
|
|
# happened. Such a system could not be considered "sane".
|
|
{ { echo "$as_me:2129: error: ls -t appears to fail. Make sure there is not a broken
|
|
alias in your environment" >&5
|
|
echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken
|
|
alias in your environment" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
test "$2" = conftest.file
|
|
)
|
|
then
|
|
# Ok.
|
|
:
|
|
else
|
|
{ { echo "$as_me:2142: error: newly created file is older than distributed files!
|
|
Check your system clock" >&5
|
|
echo "$as_me: error: newly created file is older than distributed files!
|
|
Check your system clock" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
echo "$as_me:2148: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
test "$program_prefix" != NONE &&
|
|
program_transform_name="s,^,$program_prefix,;$program_transform_name"
|
|
# Use a double $ so make ignores it.
|
|
test "$program_suffix" != NONE &&
|
|
program_transform_name="s,\$,$program_suffix,;$program_transform_name"
|
|
# Double any \ or $. echo might interpret backslashes.
|
|
# By default was `s,x,x', remove it if useless.
|
|
cat <<\_ACEOF >conftest.sed
|
|
s/[\\$]/&&/g;s/;s,x,x,$//
|
|
_ACEOF
|
|
program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
|
|
rm conftest.sed
|
|
|
|
# expand $ac_aux_dir to an absolute path
|
|
am_aux_dir=`CDPATH=:; cd $ac_aux_dir && pwd`
|
|
|
|
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
|
|
# Use eval to expand $SHELL
|
|
if eval "$MISSING --run true"; then
|
|
am_missing_run="$MISSING --run "
|
|
else
|
|
am_missing_run=
|
|
am_backtick='`'
|
|
{ echo "$as_me:2173: WARNING: ${am_backtick}missing' script is too old or missing" >&5
|
|
echo "$as_me: WARNING: ${am_backtick}missing' script is too old or missing" >&2;}
|
|
fi
|
|
|
|
for ac_prog in mawk gawk nawk awk
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo "$as_me:2181: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_AWK+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$AWK"; then
|
|
ac_cv_prog_AWK="$AWK" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_AWK="$ac_prog"
|
|
echo "$as_me:2196: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
AWK=$ac_cv_prog_AWK
|
|
if test -n "$AWK"; then
|
|
echo "$as_me:2204: result: $AWK" >&5
|
|
echo "${ECHO_T}$AWK" >&6
|
|
else
|
|
echo "$as_me:2207: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$AWK" && break
|
|
done
|
|
|
|
echo "$as_me:2214: checking whether ${MAKE-make} sets \${MAKE}" >&5
|
|
echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
|
|
set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
|
|
if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.make <<\EOF
|
|
all:
|
|
@echo 'ac_maketemp="${MAKE}"'
|
|
EOF
|
|
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
|
|
eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
|
|
if test -n "$ac_maketemp"; then
|
|
eval ac_cv_prog_make_${ac_make}_set=yes
|
|
else
|
|
eval ac_cv_prog_make_${ac_make}_set=no
|
|
fi
|
|
rm -f conftest.make
|
|
fi
|
|
if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
|
|
echo "$as_me:2234: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
SET_MAKE=
|
|
else
|
|
echo "$as_me:2238: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
SET_MAKE="MAKE=${MAKE-make}"
|
|
fi
|
|
|
|
# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
|
|
if test "${enable_dependency_tracking+set}" = set; then
|
|
enableval="$enable_dependency_tracking"
|
|
|
|
fi;
|
|
if test "x$enable_dependency_tracking" != xno; then
|
|
am_depcomp="$ac_aux_dir/depcomp"
|
|
AMDEPBACKSLASH='\'
|
|
fi
|
|
|
|
if test "x$enable_dependency_tracking" != xno; then
|
|
AMDEP_TRUE=
|
|
AMDEP_FALSE='#'
|
|
else
|
|
AMDEP_TRUE='#'
|
|
AMDEP_FALSE=
|
|
fi
|
|
|
|
rm -f .deps 2>/dev/null
|
|
mkdir .deps 2>/dev/null
|
|
if test -d .deps; then
|
|
DEPDIR=.deps
|
|
else
|
|
# MS-DOS does not allow filenames that begin with a dot.
|
|
DEPDIR=_deps
|
|
fi
|
|
rmdir .deps 2>/dev/null
|
|
|
|
ac_config_commands="$ac_config_commands default-1"
|
|
|
|
am_make=${MAKE-make}
|
|
cat > confinc << 'END'
|
|
doit:
|
|
@echo done
|
|
END
|
|
# If we don't find an include directive, just comment out the code.
|
|
echo "$as_me:2279: checking for style of include used by $am_make" >&5
|
|
echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
|
|
am__include='#'
|
|
am__quote=
|
|
_am_result=none
|
|
# First try GNU make style include.
|
|
echo "include confinc" > confmf
|
|
# We grep out `Entering directory' and `Leaving directory'
|
|
# messages which can occur if `w' ends up in MAKEFLAGS.
|
|
# In particular we don't look at `^make:' because GNU make might
|
|
# be invoked under some other name (usually "gmake"), in which
|
|
# case it prints its new name instead of `make'.
|
|
if test "`$am_make -s -f confmf 2> /dev/null | fgrep -v 'ing directory'`" = "done"; then
|
|
am__include=include
|
|
am__quote=
|
|
_am_result=GNU
|
|
fi
|
|
# Now try BSD make style include.
|
|
if test "$am__include" = "#"; then
|
|
echo '.include "confinc"' > confmf
|
|
if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
|
|
am__include=.include
|
|
am__quote='"'
|
|
_am_result=BSD
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:2306: result: $_am_result" >&5
|
|
echo "${ECHO_T}$_am_result" >&6
|
|
rm -f confinc confmf
|
|
|
|
# test to see if srcdir already configured
|
|
if test "`CDPATH=:; cd $srcdir && pwd`" != "`pwd`" &&
|
|
test -f $srcdir/config.status; then
|
|
{ { echo "$as_me:2313: error: source directory already configured; run \"make distclean\" there first" >&5
|
|
echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
# Define the identity of the package.
|
|
PACKAGE=heimdal
|
|
VERSION=0.4e
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define PACKAGE "$PACKAGE"
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define VERSION "$VERSION"
|
|
EOF
|
|
|
|
# Autoconf 2.50 wants to disallow AM_ names. We explicitly allow
|
|
# the ones we care about.
|
|
|
|
# Autoconf 2.50 always computes EXEEXT. However we need to be
|
|
# compatible with 2.13, for now. So we always define EXEEXT, but we
|
|
# don't compute it.
|
|
|
|
# Similar for OBJEXT -- only we only use OBJEXT if the user actually
|
|
# requests that it be used. This is a bit dumb.
|
|
: ${OBJEXT=o}
|
|
|
|
# Some tools Automake needs.
|
|
|
|
ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal"}
|
|
|
|
AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
|
|
|
|
AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake"}
|
|
|
|
AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
|
|
|
|
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
|
|
|
|
AMTAR=${AMTAR-"${am_missing_run}tar"}
|
|
|
|
install_sh=${install_sh-"$am_aux_dir/install-sh"}
|
|
|
|
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
|
|
|
|
# We need awk for the "check" target. The system "awk" is bad on
|
|
# some platforms.
|
|
|
|
depcc="$CC" am_compiler_list=
|
|
|
|
echo "$as_me:2364: checking dependency style of $depcc" >&5
|
|
echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
|
|
if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
|
|
# We make a subdir and do the tests there. Otherwise we can end up
|
|
# making bogus files that we don't know about and never remove. For
|
|
# instance it was reported that on HP-UX the gcc test will end up
|
|
# making a dummy file named `D' -- because `-MD' means `put the output
|
|
# in D'.
|
|
mkdir conftest.dir
|
|
# Copy depcomp to subdir because otherwise we won't find it if we're
|
|
# using a relative directory.
|
|
cp "$am_depcomp" conftest.dir
|
|
cd conftest.dir
|
|
|
|
am_cv_CC_dependencies_compiler_type=none
|
|
if test "$am_compiler_list" = ""; then
|
|
am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
|
|
fi
|
|
for depmode in $am_compiler_list; do
|
|
# We need to recreate these files for each test, as the compiler may
|
|
# overwrite some of them when testing with obscure command lines.
|
|
# This happens at least with the AIX C compiler.
|
|
echo '#include "conftest.h"' > conftest.c
|
|
echo 'int i;' > conftest.h
|
|
echo "${am__include} ${am__quote}conftest.Po${am__quote}" > confmf
|
|
|
|
case $depmode in
|
|
nosideeffect)
|
|
# after this tag, mechanisms are not by side-effect, so they'll
|
|
# only be used when explicitly requested
|
|
if test "x$enable_dependency_tracking" = xyes; then
|
|
continue
|
|
else
|
|
break
|
|
fi
|
|
;;
|
|
none) break ;;
|
|
esac
|
|
# We check with `-c' and `-o' for the sake of the "dashmstdout"
|
|
# mode. It turns out that the SunPro C++ compiler does not properly
|
|
# handle `-M -o', and we need to detect this.
|
|
if depmode=$depmode \
|
|
source=conftest.c object=conftest.o \
|
|
depfile=conftest.Po tmpdepfile=conftest.TPo \
|
|
$SHELL ./depcomp $depcc -c conftest.c -o conftest.o >/dev/null 2>&1 &&
|
|
grep conftest.h conftest.Po > /dev/null 2>&1 &&
|
|
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
|
|
am_cv_CC_dependencies_compiler_type=$depmode
|
|
break
|
|
fi
|
|
done
|
|
|
|
cd ..
|
|
rm -rf conftest.dir
|
|
else
|
|
am_cv_CC_dependencies_compiler_type=none
|
|
fi
|
|
|
|
fi
|
|
echo "$as_me:2426: result: $am_cv_CC_dependencies_compiler_type" >&5
|
|
echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
|
|
CCDEPMODE="depmode=$am_cv_CC_dependencies_compiler_type"
|
|
|
|
# Make sure we can run config.sub.
|
|
$ac_config_sub sun4 >/dev/null 2>&1 ||
|
|
{ { echo "$as_me:2432: error: cannot run $ac_config_sub" >&5
|
|
echo "$as_me: error: cannot run $ac_config_sub" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
echo "$as_me:2436: checking build system type" >&5
|
|
echo $ECHO_N "checking build system type... $ECHO_C" >&6
|
|
if test "${ac_cv_build+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_build_alias=$build_alias
|
|
test -z "$ac_cv_build_alias" &&
|
|
ac_cv_build_alias=`$ac_config_guess`
|
|
test -z "$ac_cv_build_alias" &&
|
|
{ { echo "$as_me:2445: error: cannot guess build type; you must specify one" >&5
|
|
echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
|
|
{ { echo "$as_me:2449: error: $ac_config_sub $ac_cv_build_alias failed." >&5
|
|
echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
fi
|
|
echo "$as_me:2454: result: $ac_cv_build" >&5
|
|
echo "${ECHO_T}$ac_cv_build" >&6
|
|
build=$ac_cv_build
|
|
build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
|
build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
|
build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
|
|
|
echo "$as_me:2461: checking host system type" >&5
|
|
echo $ECHO_N "checking host system type... $ECHO_C" >&6
|
|
if test "${ac_cv_host+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_host_alias=$host_alias
|
|
test -z "$ac_cv_host_alias" &&
|
|
ac_cv_host_alias=$ac_cv_build_alias
|
|
ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
|
|
{ { echo "$as_me:2470: error: $ac_config_sub $ac_cv_host_alias failed" >&5
|
|
echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
fi
|
|
echo "$as_me:2475: result: $ac_cv_host" >&5
|
|
echo "${ECHO_T}$ac_cv_host" >&6
|
|
host=$ac_cv_host
|
|
host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
|
host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
|
host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
|
|
|
CANONICAL_HOST=$host
|
|
|
|
sunos=no
|
|
case "$host" in
|
|
*-*-sunos4*)
|
|
sunos=40
|
|
;;
|
|
*-*-solaris2.7)
|
|
sunos=57
|
|
;;
|
|
*-*-solaris2.8)
|
|
sunos=58
|
|
;;
|
|
*-*-solaris2*)
|
|
sunos=50
|
|
;;
|
|
esac
|
|
if test "$sunos" != no; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define SunOS $sunos
|
|
EOF
|
|
|
|
fi
|
|
|
|
aix=no
|
|
case "$host" in
|
|
*-*-aix3*)
|
|
aix=3
|
|
;;
|
|
*-*-aix4*)
|
|
aix=4
|
|
;;
|
|
esac
|
|
|
|
#test -z "$CFLAGS" && CFLAGS="-g"
|
|
|
|
for ac_prog in 'bison -y' byacc
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo "$as_me:2523: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_YACC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$YACC"; then
|
|
ac_cv_prog_YACC="$YACC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_YACC="$ac_prog"
|
|
echo "$as_me:2538: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
YACC=$ac_cv_prog_YACC
|
|
if test -n "$YACC"; then
|
|
echo "$as_me:2546: result: $YACC" >&5
|
|
echo "${ECHO_T}$YACC" >&6
|
|
else
|
|
echo "$as_me:2549: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$YACC" && break
|
|
done
|
|
test -n "$YACC" || YACC="yacc"
|
|
|
|
for ac_prog in flex lex
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo "$as_me:2561: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_LEX+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$LEX"; then
|
|
ac_cv_prog_LEX="$LEX" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_LEX="$ac_prog"
|
|
echo "$as_me:2576: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
LEX=$ac_cv_prog_LEX
|
|
if test -n "$LEX"; then
|
|
echo "$as_me:2584: result: $LEX" >&5
|
|
echo "${ECHO_T}$LEX" >&6
|
|
else
|
|
echo "$as_me:2587: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$LEX" && break
|
|
done
|
|
test -n "$LEX" || LEX="${am_missing_run}flex"
|
|
|
|
for ac_prog in flex lex
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo "$as_me:2599: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_LEX+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$LEX"; then
|
|
ac_cv_prog_LEX="$LEX" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_LEX="$ac_prog"
|
|
echo "$as_me:2614: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
LEX=$ac_cv_prog_LEX
|
|
if test -n "$LEX"; then
|
|
echo "$as_me:2622: result: $LEX" >&5
|
|
echo "${ECHO_T}$LEX" >&6
|
|
else
|
|
echo "$as_me:2625: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$LEX" && break
|
|
done
|
|
test -n "$LEX" || LEX=":"
|
|
|
|
if test -z "$LEXLIB"
|
|
then
|
|
echo "$as_me:2635: checking for yywrap in -lfl" >&5
|
|
echo $ECHO_N "checking for yywrap in -lfl... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_fl_yywrap+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lfl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2643 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char yywrap ();
|
|
int
|
|
main ()
|
|
{
|
|
yywrap ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:2662: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2665: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:2668: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2671: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_fl_yywrap=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_fl_yywrap=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:2682: result: $ac_cv_lib_fl_yywrap" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_fl_yywrap" >&6
|
|
if test $ac_cv_lib_fl_yywrap = yes; then
|
|
LEXLIB="-lfl"
|
|
else
|
|
echo "$as_me:2687: checking for yywrap in -ll" >&5
|
|
echo $ECHO_N "checking for yywrap in -ll... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_l_yywrap+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-ll $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2695 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char yywrap ();
|
|
int
|
|
main ()
|
|
{
|
|
yywrap ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:2714: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2717: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:2720: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2723: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_l_yywrap=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_l_yywrap=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:2734: result: $ac_cv_lib_l_yywrap" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_l_yywrap" >&6
|
|
if test $ac_cv_lib_l_yywrap = yes; then
|
|
LEXLIB="-ll"
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "x$LEX" != "x:"; then
|
|
echo "$as_me:2745: checking lex output file root" >&5
|
|
echo $ECHO_N "checking lex output file root... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_lex_root+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
# The minimal lex program is just a single line: %%. But some broken lexes
|
|
# (Solaris, I think it was) want two %% lines, so accommodate them.
|
|
echo '%%
|
|
%%' | $LEX
|
|
if test -f lex.yy.c; then
|
|
ac_cv_prog_lex_root=lex.yy
|
|
elif test -f lexyy.c; then
|
|
ac_cv_prog_lex_root=lexyy
|
|
else
|
|
{ { echo "$as_me:2759: error: cannot find output from $LEX; giving up" >&5
|
|
echo "$as_me: error: cannot find output from $LEX; giving up" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
fi
|
|
echo "$as_me:2764: result: $ac_cv_prog_lex_root" >&5
|
|
echo "${ECHO_T}$ac_cv_prog_lex_root" >&6
|
|
LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
|
|
|
|
echo "$as_me:2768: checking whether yytext is a pointer" >&5
|
|
echo $ECHO_N "checking whether yytext is a pointer... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_lex_yytext_pointer+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
# POSIX says lex can declare yytext either as a pointer or an array; the
|
|
# default is implementation-dependent. Figure out which it is, since
|
|
# not all implementations provide the %pointer and %array declarations.
|
|
ac_cv_prog_lex_yytext_pointer=no
|
|
echo 'extern char *yytext;' >>$LEX_OUTPUT_ROOT.c
|
|
ac_save_LIBS=$LIBS
|
|
LIBS="$LIBS $LEXLIB"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
`cat $LEX_OUTPUT_ROOT.c`
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:2784: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2787: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:2790: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2793: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_prog_lex_yytext_pointer=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_save_LIBS
|
|
rm -f "${LEX_OUTPUT_ROOT}.c"
|
|
|
|
fi
|
|
echo "$as_me:2805: result: $ac_cv_prog_lex_yytext_pointer" >&5
|
|
echo "${ECHO_T}$ac_cv_prog_lex_yytext_pointer" >&6
|
|
if test $ac_cv_prog_lex_yytext_pointer = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define YYTEXT_POINTER 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test -n "$ac_tool_prefix"; then
|
|
# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
|
|
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
|
|
echo "$as_me:2820: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_RANLIB+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$RANLIB"; then
|
|
ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
|
|
echo "$as_me:2835: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
RANLIB=$ac_cv_prog_RANLIB
|
|
if test -n "$RANLIB"; then
|
|
echo "$as_me:2843: result: $RANLIB" >&5
|
|
echo "${ECHO_T}$RANLIB" >&6
|
|
else
|
|
echo "$as_me:2846: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
fi
|
|
if test -z "$ac_cv_prog_RANLIB"; then
|
|
ac_ct_RANLIB=$RANLIB
|
|
# Extract the first word of "ranlib", so it can be a program name with args.
|
|
set dummy ranlib; ac_word=$2
|
|
echo "$as_me:2855: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$ac_ct_RANLIB"; then
|
|
ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_ac_ct_RANLIB="ranlib"
|
|
echo "$as_me:2870: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
|
|
fi
|
|
fi
|
|
ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
|
|
if test -n "$ac_ct_RANLIB"; then
|
|
echo "$as_me:2879: result: $ac_ct_RANLIB" >&5
|
|
echo "${ECHO_T}$ac_ct_RANLIB" >&6
|
|
else
|
|
echo "$as_me:2882: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
RANLIB=$ac_ct_RANLIB
|
|
else
|
|
RANLIB="$ac_cv_prog_RANLIB"
|
|
fi
|
|
|
|
for ac_prog in mawk gawk nawk awk
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo "$as_me:2895: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_AWK+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$AWK"; then
|
|
ac_cv_prog_AWK="$AWK" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_AWK="$ac_prog"
|
|
echo "$as_me:2910: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
AWK=$ac_cv_prog_AWK
|
|
if test -n "$AWK"; then
|
|
echo "$as_me:2918: result: $AWK" >&5
|
|
echo "${ECHO_T}$AWK" >&6
|
|
else
|
|
echo "$as_me:2921: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$AWK" && break
|
|
done
|
|
|
|
echo "$as_me:2928: checking for ln -s or something else" >&5
|
|
echo $ECHO_N "checking for ln -s or something else... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_LN_S+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
rm -f conftestdata
|
|
if ln -s X conftestdata 2>/dev/null
|
|
then
|
|
rm -f conftestdata
|
|
ac_cv_prog_LN_S="ln -s"
|
|
else
|
|
touch conftestdata1
|
|
if ln conftestdata1 conftestdata2; then
|
|
rm -f conftestdata*
|
|
ac_cv_prog_LN_S=ln
|
|
else
|
|
ac_cv_prog_LN_S=cp
|
|
fi
|
|
fi
|
|
fi
|
|
LN_S="$ac_cv_prog_LN_S"
|
|
echo "$as_me:2949: result: $ac_cv_prog_LN_S" >&5
|
|
echo "${ECHO_T}$ac_cv_prog_LN_S" >&6
|
|
|
|
# Check whether --with-mips_abi or --without-mips_abi was given.
|
|
if test "${with_mips_abi+set}" = set; then
|
|
withval="$with_mips_abi"
|
|
|
|
fi;
|
|
|
|
case "$host_os" in
|
|
irix*)
|
|
with_mips_abi="${with_mips_abi:-yes}"
|
|
if test -n "$GCC"; then
|
|
|
|
# GCC < 2.8 only supports the O32 ABI. GCC >= 2.8 has a flag to select
|
|
# which ABI to use, but only supports (as of 2.8.1) the N32 and 64 ABIs.
|
|
#
|
|
# Default to N32, but if GCC doesn't grok -mabi=n32, we assume an old
|
|
# GCC and revert back to O32. The same goes if O32 is asked for - old
|
|
# GCCs doesn't like the -mabi option, and new GCCs can't output O32.
|
|
#
|
|
# Don't you just love *all* the different SGI ABIs?
|
|
|
|
case "${with_mips_abi}" in
|
|
32|o32) abi='-mabi=32'; abilibdirext='' ;;
|
|
n32|yes) abi='-mabi=n32'; abilibdirext='32' ;;
|
|
64) abi='-mabi=64'; abilibdirext='64' ;;
|
|
no) abi=''; abilibdirext='';;
|
|
*) { { echo "$as_me:2977: error: \"Invalid ABI specified\"" >&5
|
|
echo "$as_me: error: \"Invalid ABI specified\"" >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
esac
|
|
if test -n "$abi" ; then
|
|
ac_foo=krb_cv_gcc_`echo $abi | tr =- __`
|
|
echo "$as_me:2983: checking if $CC supports the $abi option" >&5
|
|
echo $ECHO_N "checking if $CC supports the $abi option... $ECHO_C" >&6
|
|
if eval "test \"\${$ac_foo+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
save_CFLAGS="$CFLAGS"
|
|
CFLAGS="$CFLAGS $abi"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2992 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int x;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:3004: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3007: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:3010: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3013: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval $ac_foo=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval $ac_foo=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
CFLAGS="$save_CFLAGS"
|
|
|
|
fi
|
|
|
|
ac_res=`eval echo \\\$$ac_foo`
|
|
echo "$as_me:3027: result: $ac_res" >&5
|
|
echo "${ECHO_T}$ac_res" >&6
|
|
if test $ac_res = no; then
|
|
# Try to figure out why that failed...
|
|
case $abi in
|
|
-mabi=32)
|
|
save_CFLAGS="$CFLAGS"
|
|
CFLAGS="$CFLAGS -mabi=n32"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3036 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int x;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:3048: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3051: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:3054: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3057: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_res=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_res=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
CLAGS="$save_CFLAGS"
|
|
if test $ac_res = yes; then
|
|
# New GCC
|
|
{ { echo "$as_me:3069: error: $CC does not support the $with_mips_abi ABI" >&5
|
|
echo "$as_me: error: $CC does not support the $with_mips_abi ABI" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
# Old GCC
|
|
abi=''
|
|
abilibdirext=''
|
|
;;
|
|
-mabi=n32|-mabi=64)
|
|
if test $with_mips_abi = yes; then
|
|
# Old GCC, default to O32
|
|
abi=''
|
|
abilibdirext=''
|
|
else
|
|
# Some broken GCC
|
|
{ { echo "$as_me:3084: error: $CC does not support the $with_mips_abi ABI" >&5
|
|
echo "$as_me: error: $CC does not support the $with_mips_abi ABI" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
;;
|
|
esac
|
|
fi #if test $ac_res = no; then
|
|
fi #if test -n "$abi" ; then
|
|
else
|
|
case "${with_mips_abi}" in
|
|
32|o32) abi='-32'; abilibdirext='' ;;
|
|
n32|yes) abi='-n32'; abilibdirext='32' ;;
|
|
64) abi='-64'; abilibdirext='64' ;;
|
|
no) abi=''; abilibdirext='';;
|
|
*) { { echo "$as_me:3098: error: \"Invalid ABI specified\"" >&5
|
|
echo "$as_me: error: \"Invalid ABI specified\"" >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
esac
|
|
fi #if test -n "$GCC"; then
|
|
;;
|
|
esac
|
|
|
|
CC="$CC $abi"
|
|
libdir="$libdir$abilibdirext"
|
|
|
|
echo "$as_me:3109: checking for __attribute__" >&5
|
|
echo $ECHO_N "checking for __attribute__... $ECHO_C" >&6
|
|
if test "${ac_cv___attribute__+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3116 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
static void foo(void) __attribute__ ((noreturn));
|
|
|
|
static void
|
|
foo(void)
|
|
{
|
|
exit(1);
|
|
}
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:3138: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3141: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:3144: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3147: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv___attribute__=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv___attribute__=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
if test "$ac_cv___attribute__" = "yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE___ATTRIBUTE__ 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:3165: result: $ac_cv___attribute__" >&5
|
|
echo "${ECHO_T}$ac_cv___attribute__" >&6
|
|
|
|
# Check whether --enable-shared or --disable-shared was given.
|
|
if test "${enable_shared+set}" = set; then
|
|
enableval="$enable_shared"
|
|
p=${PACKAGE-default}
|
|
case "$enableval" in
|
|
yes) enable_shared=yes ;;
|
|
no) enable_shared=no ;;
|
|
*)
|
|
enable_shared=no
|
|
# Look at the argument we got. We use all the common list separators.
|
|
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
|
|
for pkg in $enableval; do
|
|
if test "X$pkg" = "X$p"; then
|
|
enable_shared=yes
|
|
fi
|
|
done
|
|
IFS="$ac_save_ifs"
|
|
;;
|
|
esac
|
|
else
|
|
enable_shared=no
|
|
fi;
|
|
# Check whether --enable-static or --disable-static was given.
|
|
if test "${enable_static+set}" = set; then
|
|
enableval="$enable_static"
|
|
p=${PACKAGE-default}
|
|
case "$enableval" in
|
|
yes) enable_static=yes ;;
|
|
no) enable_static=no ;;
|
|
*)
|
|
enable_static=no
|
|
# Look at the argument we got. We use all the common list separators.
|
|
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
|
|
for pkg in $enableval; do
|
|
if test "X$pkg" = "X$p"; then
|
|
enable_static=yes
|
|
fi
|
|
done
|
|
IFS="$ac_save_ifs"
|
|
;;
|
|
esac
|
|
else
|
|
enable_static=yes
|
|
fi;
|
|
# Check whether --enable-fast-install or --disable-fast-install was given.
|
|
if test "${enable_fast_install+set}" = set; then
|
|
enableval="$enable_fast_install"
|
|
p=${PACKAGE-default}
|
|
case "$enableval" in
|
|
yes) enable_fast_install=yes ;;
|
|
no) enable_fast_install=no ;;
|
|
*)
|
|
enable_fast_install=no
|
|
# Look at the argument we got. We use all the common list separators.
|
|
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
|
|
for pkg in $enableval; do
|
|
if test "X$pkg" = "X$p"; then
|
|
enable_fast_install=yes
|
|
fi
|
|
done
|
|
IFS="$ac_save_ifs"
|
|
;;
|
|
esac
|
|
else
|
|
enable_fast_install=yes
|
|
fi;
|
|
|
|
# Check whether --with-gnu-ld or --without-gnu-ld was given.
|
|
if test "${with_gnu_ld+set}" = set; then
|
|
withval="$with_gnu_ld"
|
|
test "$withval" = no || with_gnu_ld=yes
|
|
else
|
|
with_gnu_ld=no
|
|
fi;
|
|
ac_prog=ld
|
|
if test "$ac_cv_c_compiler_gnu" = yes; then
|
|
# Check if gcc -print-prog-name=ld gives a path.
|
|
echo "$as_me:3245: checking for ld used by GCC" >&5
|
|
echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6
|
|
ac_prog=`($CC -print-prog-name=ld) 2>&5`
|
|
case "$ac_prog" in
|
|
# Accept absolute paths.
|
|
[\\/]* | [A-Za-z]:[\\/]*)
|
|
re_direlt='/[^/][^/]*/\.\./'
|
|
# Canonicalize the path of ld
|
|
ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
|
|
while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
|
|
ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
|
|
done
|
|
test -z "$LD" && LD="$ac_prog"
|
|
;;
|
|
"")
|
|
# If it fails, then pretend we aren't using GCC.
|
|
ac_prog=ld
|
|
;;
|
|
*)
|
|
# If it is relative, then search for the first ld in PATH.
|
|
with_gnu_ld=unknown
|
|
;;
|
|
esac
|
|
elif test "$with_gnu_ld" = yes; then
|
|
echo "$as_me:3269: checking for GNU ld" >&5
|
|
echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6
|
|
else
|
|
echo "$as_me:3272: checking for non-GNU ld" >&5
|
|
echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6
|
|
fi
|
|
if test "${ac_cv_path_LD+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -z "$LD"; then
|
|
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
|
|
for ac_dir in $PATH; do
|
|
test -z "$ac_dir" && ac_dir=.
|
|
if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
|
|
ac_cv_path_LD="$ac_dir/$ac_prog"
|
|
# Check to see if the program is GNU ld. I'd rather use --version,
|
|
# but apparently some GNU ld's only accept -v.
|
|
# Break only if it was the GNU/non-GNU ld that we prefer.
|
|
if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
|
|
test "$with_gnu_ld" != no && break
|
|
else
|
|
test "$with_gnu_ld" != yes && break
|
|
fi
|
|
fi
|
|
done
|
|
IFS="$ac_save_ifs"
|
|
else
|
|
ac_cv_path_LD="$LD" # Let the user override the test with a path.
|
|
fi
|
|
fi
|
|
|
|
LD="$ac_cv_path_LD"
|
|
if test -n "$LD"; then
|
|
echo "$as_me:3302: result: $LD" >&5
|
|
echo "${ECHO_T}$LD" >&6
|
|
else
|
|
echo "$as_me:3305: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
test -z "$LD" && { { echo "$as_me:3308: error: no acceptable ld found in \$PATH" >&5
|
|
echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
echo "$as_me:3311: checking if the linker ($LD) is GNU ld" >&5
|
|
echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_gnu_ld+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
# I'd rather use --version here, but apparently some GNU ld's only accept -v.
|
|
if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
|
|
ac_cv_prog_gnu_ld=yes
|
|
else
|
|
ac_cv_prog_gnu_ld=no
|
|
fi
|
|
fi
|
|
echo "$as_me:3323: result: $ac_cv_prog_gnu_ld" >&5
|
|
echo "${ECHO_T}$ac_cv_prog_gnu_ld" >&6
|
|
|
|
echo "$as_me:3326: checking for BSD-compatible nm" >&5
|
|
echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6
|
|
if test "${ac_cv_path_NM+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$NM"; then
|
|
# Let the user override the test.
|
|
ac_cv_path_NM="$NM"
|
|
else
|
|
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
|
|
for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
|
|
test -z "$ac_dir" && ac_dir=.
|
|
if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext ; then
|
|
# Check to see if the nm accepts a BSD-compat flag.
|
|
# Adding the `sed 1q' prevents false positives on HP-UX, which says:
|
|
# nm: unknown option "B" ignored
|
|
if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
|
|
ac_cv_path_NM="$ac_dir/nm -B"
|
|
break
|
|
elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
|
|
ac_cv_path_NM="$ac_dir/nm -p"
|
|
break
|
|
else
|
|
ac_cv_path_NM=${ac_cv_path_NM="$ac_dir/nm"} # keep the first match, but
|
|
continue # so that we can try to find one that supports BSD flags
|
|
fi
|
|
fi
|
|
done
|
|
IFS="$ac_save_ifs"
|
|
test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm
|
|
fi
|
|
fi
|
|
|
|
NM="$ac_cv_path_NM"
|
|
echo "$as_me:3360: result: $NM" >&5
|
|
echo "${ECHO_T}$NM" >&6
|
|
|
|
echo "$as_me:3363: checking whether ln -s works" >&5
|
|
echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
|
|
LN_S=$as_ln_s
|
|
if test "$LN_S" = "ln -s"; then
|
|
echo "$as_me:3367: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
else
|
|
echo "$as_me:3370: result: no, using $LN_S" >&5
|
|
echo "${ECHO_T}no, using $LN_S" >&6
|
|
fi
|
|
|
|
case "$target" in
|
|
NONE) lt_target="$host" ;;
|
|
*) lt_target="$target" ;;
|
|
esac
|
|
|
|
# Check for any special flags to pass to ltconfig.
|
|
libtool_flags="--cache-file=$cache_file"
|
|
test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
|
|
test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
|
|
test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
|
|
test "$ac_cv_c_compiler_gnu" = yes && libtool_flags="$libtool_flags --with-gcc"
|
|
test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
|
|
|
|
# Check whether --enable-libtool-lock or --disable-libtool-lock was given.
|
|
if test "${enable_libtool_lock+set}" = set; then
|
|
enableval="$enable_libtool_lock"
|
|
|
|
fi;
|
|
test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
|
|
test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
|
|
|
|
# Some flags need to be propagated to the compiler or linker for good
|
|
# libtool support.
|
|
case "$lt_target" in
|
|
*-*-irix6*)
|
|
# Find out which ABI we are using.
|
|
echo '#line 3400 "configure"' > conftest.$ac_ext
|
|
if { (eval echo "$as_me:3401: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3404: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; then
|
|
case "`/usr/bin/file conftest.o`" in
|
|
*32-bit*)
|
|
LD="${LD-ld} -32"
|
|
;;
|
|
*N32*)
|
|
LD="${LD-ld} -n32"
|
|
;;
|
|
*64-bit*)
|
|
LD="${LD-ld} -64"
|
|
;;
|
|
esac
|
|
fi
|
|
rm -rf conftest*
|
|
;;
|
|
|
|
*-*-sco3.2v5*)
|
|
# On SCO OpenServer 5, we need -belf to get full-featured binaries.
|
|
SAVE_CFLAGS="$CFLAGS"
|
|
CFLAGS="$CFLAGS -belf"
|
|
echo "$as_me:3425: checking whether the C compiler needs -belf" >&5
|
|
echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6
|
|
if test "${lt_cv_cc_needs_belf+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3431 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:3443: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3446: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3449: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3452: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
lt_cv_cc_needs_belf=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
lt_cv_cc_needs_belf=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:3462: result: $lt_cv_cc_needs_belf" >&5
|
|
echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6
|
|
if test x"$lt_cv_cc_needs_belf" != x"yes"; then
|
|
# this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
|
|
CFLAGS="$SAVE_CFLAGS"
|
|
fi
|
|
;;
|
|
|
|
esac
|
|
|
|
# Save cache, so that ltconfig can load it
|
|
cat >confcache <<\_ACEOF
|
|
# This file is a shell script that caches the results of configure
|
|
# tests run on this system so they can be shared between configure
|
|
# scripts and configure runs, see configure's option --config-cache.
|
|
# It is not useful on other systems. If it contains results you don't
|
|
# want to keep, you may remove or edit it.
|
|
#
|
|
# config.status only pays attention to the cache file if you give it
|
|
# the --recheck option to rerun configure.
|
|
#
|
|
# `ac_cv_env_foo' variables (set or unset) will be overriden when
|
|
# loading this file, other *unset* `ac_cv_foo' will be assigned the
|
|
# following values.
|
|
|
|
_ACEOF
|
|
|
|
# The following way of writing the cache mishandles newlines in values,
|
|
# but we know of no workaround that is simple, portable, and efficient.
|
|
# So, don't put newlines in cache variables' values.
|
|
# Ultrix sh set writes to stderr and can't be redirected directly,
|
|
# and sets the high bit in the cache file unless we assign to the vars.
|
|
{
|
|
(set) 2>&1 |
|
|
case `(ac_space=' '; set | grep ac_space) 2>&1` in
|
|
*ac_space=\ *)
|
|
# `set' does not quote correctly, so add quotes (double-quote
|
|
# substitution turns \\\\ into \\, and sed turns \\ into \).
|
|
sed -n \
|
|
"s/'/'\\\\''/g;
|
|
s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
|
|
;;
|
|
*)
|
|
# `set' quotes correctly as required by POSIX, so do not add quotes.
|
|
sed -n \
|
|
"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
|
|
;;
|
|
esac;
|
|
} |
|
|
sed '
|
|
t clear
|
|
: clear
|
|
s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
|
|
t end
|
|
/^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
|
|
: end' >>confcache
|
|
if cmp -s $cache_file confcache; then :; else
|
|
if test -w $cache_file; then
|
|
test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
|
|
cat confcache >$cache_file
|
|
else
|
|
echo "not updating unwritable cache $cache_file"
|
|
fi
|
|
fi
|
|
rm -f confcache
|
|
|
|
# Actually configure libtool. ac_aux_dir is where install-sh is found.
|
|
CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
|
|
LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \
|
|
LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \
|
|
DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \
|
|
${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
|
|
$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $lt_target \
|
|
|| { { echo "$as_me:3535: error: libtool configure failed" >&5
|
|
echo "$as_me: error: libtool configure failed" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
# Reload cache, that may have been modified by ltconfig
|
|
if test -r "$cache_file"; then
|
|
# Some versions of bash will fail to source /dev/null (special
|
|
# files actually), so we avoid doing that.
|
|
if test -f "$cache_file"; then
|
|
{ echo "$as_me:3544: loading cache $cache_file" >&5
|
|
echo "$as_me: loading cache $cache_file" >&6;}
|
|
case $cache_file in
|
|
[\\/]* | ?:[\\/]* ) . $cache_file;;
|
|
*) . ./$cache_file;;
|
|
esac
|
|
fi
|
|
else
|
|
{ echo "$as_me:3552: creating cache $cache_file" >&5
|
|
echo "$as_me: creating cache $cache_file" >&6;}
|
|
>$cache_file
|
|
fi
|
|
|
|
# This can be used to rebuild libtool when needed
|
|
LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh"
|
|
|
|
# Always use our own libtool.
|
|
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
|
|
|
|
# Redirect the config.log output again, so that the ltconfig log is not
|
|
# clobbered by the next message.
|
|
exec 5>>./config.log
|
|
|
|
WFLAGS_NOUNUSED=""
|
|
WFLAGS_NOIMPLICITINT=""
|
|
if test -z "$WFLAGS" -a "$GCC" = "yes"; then
|
|
# -Wno-implicit-int for broken X11 headers
|
|
# leave these out for now:
|
|
# -Wcast-align doesn't work well on alpha osf/1
|
|
# -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast
|
|
# -Wmissing-declarations -Wnested-externs
|
|
WFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast -Wmissing-declarations -Wnested-externs"
|
|
WFLAGS_NOUNUSED="-Wno-unused"
|
|
WFLAGS_NOIMPLICITINT="-Wno-implicit-int"
|
|
fi
|
|
|
|
berkeley_db=db
|
|
|
|
# Check whether --with-berkeley-db or --without-berkeley-db was given.
|
|
if test "${with_berkeley_db+set}" = set; then
|
|
withval="$with_berkeley_db"
|
|
|
|
if test "$withval" = no; then
|
|
berkeley_db=""
|
|
fi
|
|
|
|
fi;
|
|
|
|
have_ndbm=no
|
|
db_type=unknown
|
|
|
|
if test "$berkeley_db"; then
|
|
|
|
for ac_header in \
|
|
db.h \
|
|
db_185.h \
|
|
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:3603: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3609 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:3613: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:3619: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:3638: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:3648: checking for db_create" >&5
|
|
echo $ECHO_N "checking for db_create... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_db_create+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_db_create\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" $berkeley_db; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3666 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <db.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
db_create(NULL, NULL, 0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:3681: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3684: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3687: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3690: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_db_create=$ac_lib; else ac_cv_funclib_db_create=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_db_create=\${ac_cv_funclib_db_create-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_db_create"
|
|
|
|
if false; then
|
|
|
|
for ac_func in db_create
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:3712: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3718 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:3749: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3752: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3755: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3758: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:3768: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# db_create
|
|
eval "ac_tr_func=HAVE_`echo db_create | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_db_create=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_db_create=yes"
|
|
eval "LIB_db_create="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:3792: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_db_create=no"
|
|
eval "LIB_db_create="
|
|
echo "$as_me:3798: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_db_create=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:3812: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test "$ac_cv_func_db_create" = "yes"; then
|
|
db_type=db3
|
|
if test "$ac_cv_funclib_db_create" != "yes"; then
|
|
DBLIB="$ac_cv_funclib_db_create"
|
|
else
|
|
DBLIB=""
|
|
fi
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_DB3 1
|
|
EOF
|
|
|
|
else
|
|
|
|
echo "$as_me:3831: checking for dbopen" >&5
|
|
echo $ECHO_N "checking for dbopen... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_dbopen+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_dbopen\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" $berkeley_db; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3849 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#if defined(HAVE_DB_185_H)
|
|
#include <db_185.h>
|
|
#elif defined(HAVE_DB_H)
|
|
#include <db.h>
|
|
#else
|
|
#error no db.h
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
dbopen(NULL, 0, 0, 0, NULL)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:3870: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3873: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3876: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3879: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_dbopen=$ac_lib; else ac_cv_funclib_dbopen=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_dbopen=\${ac_cv_funclib_dbopen-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_dbopen"
|
|
|
|
if false; then
|
|
|
|
for ac_func in dbopen
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:3901: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3907 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:3938: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3941: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3944: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3947: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:3957: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# dbopen
|
|
eval "ac_tr_func=HAVE_`echo dbopen | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_dbopen=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_dbopen=yes"
|
|
eval "LIB_dbopen="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:3981: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_dbopen=no"
|
|
eval "LIB_dbopen="
|
|
echo "$as_me:3987: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_dbopen=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:4001: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test "$ac_cv_func_dbopen" = "yes"; then
|
|
db_type=db1
|
|
if test "$ac_cv_funclib_dbopen" != "yes"; then
|
|
DBLIB="$ac_cv_funclib_dbopen"
|
|
else
|
|
DBLIB=""
|
|
fi
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_DB1 1
|
|
EOF
|
|
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:4021: checking for dbm_firstkey" >&5
|
|
echo $ECHO_N "checking for dbm_firstkey... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_dbm_firstkey+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_dbm_firstkey\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in $ac_cv_funclib_dbopen $ac_cv_funclib_db_create; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4039 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#define DB_DBM_HSEARCH 1
|
|
#include <db.h>
|
|
DBM *dbm;
|
|
|
|
int
|
|
main ()
|
|
{
|
|
dbm_firstkey(NULL)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:4056: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4059: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4062: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4065: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_dbm_firstkey=$ac_lib; else ac_cv_funclib_dbm_firstkey=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_dbm_firstkey=\${ac_cv_funclib_dbm_firstkey-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_dbm_firstkey"
|
|
|
|
if false; then
|
|
|
|
for ac_func in dbm_firstkey
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:4087: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4093 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:4124: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4127: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4130: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4133: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4143: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# dbm_firstkey
|
|
eval "ac_tr_func=HAVE_`echo dbm_firstkey | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_dbm_firstkey=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_dbm_firstkey=yes"
|
|
eval "LIB_dbm_firstkey="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:4167: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_dbm_firstkey=no"
|
|
eval "LIB_dbm_firstkey="
|
|
echo "$as_me:4173: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_dbm_firstkey=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:4187: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test "$ac_cv_func_dbm_firstkey" = "yes"; then
|
|
if test "$ac_cv_funclib_dbm_firstkey" != "yes"; then
|
|
LIB_NDBM="$ac_cv_funclib_dbm_firstkey"
|
|
else
|
|
LIB_NDBM=""
|
|
fi
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_DB_NDBM 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_NEW_DB 1
|
|
EOF
|
|
|
|
else
|
|
$as_unset ac_cv_func_dbm_firstkey
|
|
$as_unset ac_cv_funclib_dbm_firstkey
|
|
fi
|
|
|
|
fi # berkeley db
|
|
|
|
if test "$db_type" = "unknown" -o "$ac_cv_func_dbm_firstkey" = ""; then
|
|
|
|
for ac_header in \
|
|
dbm.h \
|
|
ndbm.h \
|
|
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:4222: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4228 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:4232: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:4238: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4257: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:4267: checking for dbm_firstkey" >&5
|
|
echo $ECHO_N "checking for dbm_firstkey... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_dbm_firstkey+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_dbm_firstkey\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ndbm; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4285 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#if defined(HAVE_NDBM_H)
|
|
#include <ndbm.h>
|
|
#elif defined(HAVE_DBM_H)
|
|
#include <dbm.h>
|
|
#else
|
|
#error no ndbm.h
|
|
#endif
|
|
DBM *dbm;
|
|
|
|
int
|
|
main ()
|
|
{
|
|
dbm_firstkey(NULL)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:4307: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4310: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4313: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4316: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_dbm_firstkey=$ac_lib; else ac_cv_funclib_dbm_firstkey=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_dbm_firstkey=\${ac_cv_funclib_dbm_firstkey-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_dbm_firstkey"
|
|
|
|
if false; then
|
|
|
|
for ac_func in dbm_firstkey
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:4338: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4344 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:4375: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4378: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4381: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4384: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4394: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# dbm_firstkey
|
|
eval "ac_tr_func=HAVE_`echo dbm_firstkey | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_dbm_firstkey=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_dbm_firstkey=yes"
|
|
eval "LIB_dbm_firstkey="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:4418: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_dbm_firstkey=no"
|
|
eval "LIB_dbm_firstkey="
|
|
echo "$as_me:4424: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_dbm_firstkey=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:4438: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test "$ac_cv_func_dbm_firstkey" = "yes"; then
|
|
if test "$ac_cv_funclib_dbm_firstkey" != "yes"; then
|
|
LIB_NDBM="$ac_cv_funclib_dbm_firstkey"
|
|
else
|
|
LIB_NDBM=""
|
|
fi
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_NDBM 1
|
|
EOF
|
|
have_ndbm=yes
|
|
if test "$db_type" = "unknown"; then
|
|
db_type=ndbm
|
|
DBLIB="$LIB_NDBM"
|
|
fi
|
|
else
|
|
|
|
$as_unset ac_cv_func_dbm_firstkey
|
|
$as_unset ac_cv_funclib_dbm_firstkey
|
|
|
|
for ac_header in \
|
|
gdbm/ndbm.h \
|
|
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:4468: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4474 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:4478: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:4484: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4503: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:4513: checking for dbm_firstkey" >&5
|
|
echo $ECHO_N "checking for dbm_firstkey... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_dbm_firstkey+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_dbm_firstkey\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" gdbm; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4531 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <gdbm/ndbm.h>
|
|
DBM *dbm;
|
|
|
|
int
|
|
main ()
|
|
{
|
|
dbm_firstkey(NULL)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:4547: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4550: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4553: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4556: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_dbm_firstkey=$ac_lib; else ac_cv_funclib_dbm_firstkey=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_dbm_firstkey=\${ac_cv_funclib_dbm_firstkey-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_dbm_firstkey"
|
|
|
|
if false; then
|
|
|
|
for ac_func in dbm_firstkey
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:4578: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4584 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:4615: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4618: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4621: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4624: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4634: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# dbm_firstkey
|
|
eval "ac_tr_func=HAVE_`echo dbm_firstkey | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_dbm_firstkey=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_dbm_firstkey=yes"
|
|
eval "LIB_dbm_firstkey="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:4658: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_dbm_firstkey=no"
|
|
eval "LIB_dbm_firstkey="
|
|
echo "$as_me:4664: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_dbm_firstkey=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:4678: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test "$ac_cv_func_dbm_firstkey" = "yes"; then
|
|
if test "$ac_cv_funclib_dbm_firstkey" != "yes"; then
|
|
LIB_NDBM="$ac_cv_funclib_dbm_firstkey"
|
|
else
|
|
LIB_NDBM=""
|
|
fi
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_NDBM 1
|
|
EOF
|
|
have_ndbm=yes
|
|
if test "$db_type" = "unknown"; then
|
|
db_type=ndbm
|
|
DBLIB="$LIB_NDBM"
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
fi # unknown
|
|
|
|
if test "$have_ndbm" = "yes"; then
|
|
echo "$as_me:4704: checking if ndbm is implemented with db" >&5
|
|
echo $ECHO_N "checking if ndbm is implemented with db... $ECHO_C" >&6
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:4707: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4712 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#if defined(HAVE_GDBM_NDBM_H)
|
|
#include <gdbm/ndbm.h>
|
|
#elif defined(HAVE_NDBM_H)
|
|
#include <ndbm.h>
|
|
#elif defined(HAVE_DBM_H)
|
|
#include <dbm.h>
|
|
#endif
|
|
int main()
|
|
{
|
|
DBM *d;
|
|
|
|
d = dbm_open("conftest", O_RDWR | O_CREAT, 0666);
|
|
if (d == NULL)
|
|
return 1;
|
|
dbm_close(d);
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:4736: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4739: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4741: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4744: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
|
|
if test -f conftest.db; then
|
|
echo "$as_me:4748: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_NEW_DB 1
|
|
EOF
|
|
|
|
else
|
|
echo "$as_me:4756: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
echo "$as_me:4763: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:4770: checking for inline" >&5
|
|
echo $ECHO_N "checking for inline... $ECHO_C" >&6
|
|
if test "${ac_cv_c_inline+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_c_inline=no
|
|
for ac_kw in inline __inline__ __inline; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4778 "configure"
|
|
#include "confdefs.h"
|
|
#ifndef __cplusplus
|
|
static $ac_kw int static_foo () {return 0; }
|
|
$ac_kw int foo () {return 0; }
|
|
#endif
|
|
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:4787: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4790: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:4793: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4796: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_inline=$ac_kw; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
|
|
fi
|
|
echo "$as_me:4807: result: $ac_cv_c_inline" >&5
|
|
echo "${ECHO_T}$ac_cv_c_inline" >&6
|
|
case $ac_cv_c_inline in
|
|
inline | yes) ;;
|
|
no)
|
|
cat >>confdefs.h <<\EOF
|
|
#define inline
|
|
EOF
|
|
;;
|
|
*) cat >>confdefs.h <<EOF
|
|
#define inline $ac_cv_c_inline
|
|
EOF
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:4822: checking for an ANSI C-conforming const" >&5
|
|
echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
|
|
if test "${ac_cv_c_const+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4828 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* FIXME: Include the comments suggested by Paul. */
|
|
#ifndef __cplusplus
|
|
/* Ultrix mips cc rejects this. */
|
|
typedef int charset[2];
|
|
const charset x;
|
|
/* SunOS 4.1.1 cc rejects this. */
|
|
char const *const *ccp;
|
|
char **p;
|
|
/* NEC SVR4.0.2 mips cc rejects this. */
|
|
struct point {int x, y;};
|
|
static struct point const zero = {0,0};
|
|
/* AIX XL C 1.02.0.0 rejects this.
|
|
It does not let you subtract one const X* pointer from another in
|
|
an arm of an if-expression whose if-part is not a constant
|
|
expression */
|
|
const char *g = "string";
|
|
ccp = &g + (g ? g-g : 0);
|
|
/* HPUX 7.0 cc rejects these. */
|
|
++ccp;
|
|
p = (char**) ccp;
|
|
ccp = (char const *const *) p;
|
|
{ /* SCO 3.2v4 cc rejects this. */
|
|
char *t;
|
|
char const *s = 0 ? (char *) 0 : (char const *) 0;
|
|
|
|
*t++ = 0;
|
|
}
|
|
{ /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */
|
|
int x[] = {25, 17};
|
|
const int *foo = &x[0];
|
|
++foo;
|
|
}
|
|
{ /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
|
|
typedef const int *iptr;
|
|
iptr p = 0;
|
|
++p;
|
|
}
|
|
{ /* AIX XL C 1.02.0.0 rejects this saying
|
|
"k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
|
|
struct s { int j; const int *ap[3]; };
|
|
struct s *b; b->j = 5;
|
|
}
|
|
{ /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
|
|
const int foo = 10;
|
|
}
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:4886: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4889: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:4892: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4895: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_const=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_c_const=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4905: result: $ac_cv_c_const" >&5
|
|
echo "${ECHO_T}$ac_cv_c_const" >&6
|
|
if test $ac_cv_c_const = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define const
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:4915: checking for ANSI C header files" >&5
|
|
echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
|
|
if test "${ac_cv_header_stdc+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4921 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <float.h>
|
|
|
|
_ACEOF
|
|
if { (eval echo "$as_me:4929: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:4935: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
ac_cv_header_stdc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4957 "configure"
|
|
#include "confdefs.h"
|
|
#include <string.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "memchr" >/dev/null 2>&1; then
|
|
:
|
|
else
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4975 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "free" >/dev/null 2>&1; then
|
|
:
|
|
else
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
|
|
if test "$cross_compiling" = yes; then
|
|
:
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4996 "configure"
|
|
#include "confdefs.h"
|
|
#include <ctype.h>
|
|
#if ((' ' & 0x0FF) == 0x020)
|
|
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
|
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
|
|
#else
|
|
# define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \
|
|
|| ('j' <= (c) && (c) <= 'r') \
|
|
|| ('s' <= (c) && (c) <= 'z'))
|
|
# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
|
|
#endif
|
|
|
|
#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
|
|
int
|
|
main ()
|
|
{
|
|
int i;
|
|
for (i = 0; i < 256; i++)
|
|
if (XOR (islower (i), ISLOWER (i))
|
|
|| toupper (i) != TOUPPER (i))
|
|
exit(2);
|
|
exit (0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:5022: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5025: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5027: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5030: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
fi
|
|
echo "$as_me:5043: result: $ac_cv_header_stdc" >&5
|
|
echo "${ECHO_T}$ac_cv_header_stdc" >&6
|
|
if test $ac_cv_header_stdc = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define STDC_HEADERS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
# On IRIX 5.3, sys/types and inttypes.h are conflicting.
|
|
|
|
for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
|
|
inttypes.h stdint.h unistd.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:5059: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5065 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:5071: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5074: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:5077: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5080: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5090: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:5100: checking for size_t" >&5
|
|
echo $ECHO_N "checking for size_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_size_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5106 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((size_t *) 0)
|
|
return 0;
|
|
if (sizeof (size_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:5121: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5124: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:5127: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5130: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_size_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_size_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5140: result: $ac_cv_type_size_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_size_t" >&6
|
|
if test $ac_cv_type_size_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define size_t unsigned
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:5152: checking for pid_t" >&5
|
|
echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_pid_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5158 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((pid_t *) 0)
|
|
return 0;
|
|
if (sizeof (pid_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:5173: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5176: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:5179: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5182: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_pid_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_pid_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5192: result: $ac_cv_type_pid_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_pid_t" >&6
|
|
if test $ac_cv_type_pid_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define pid_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:5204: checking for uid_t in sys/types.h" >&5
|
|
echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6
|
|
if test "${ac_cv_type_uid_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5210 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "uid_t" >/dev/null 2>&1; then
|
|
ac_cv_type_uid_t=yes
|
|
else
|
|
ac_cv_type_uid_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:5224: result: $ac_cv_type_uid_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_uid_t" >&6
|
|
if test $ac_cv_type_uid_t = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define uid_t int
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define gid_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:5238: checking return type of signal handlers" >&5
|
|
echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6
|
|
if test "${ac_cv_type_signal+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5244 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
#ifdef signal
|
|
# undef signal
|
|
#endif
|
|
#ifdef __cplusplus
|
|
extern "C" void (*signal (int, void (*)(int)))(int);
|
|
#else
|
|
void (*signal ()) ();
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int i;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:5266: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5269: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:5272: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5275: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_signal=void
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_signal=int
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5285: result: $ac_cv_type_signal" >&5
|
|
echo "${ECHO_T}$ac_cv_type_signal" >&6
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define RETSIGTYPE $ac_cv_type_signal
|
|
EOF
|
|
|
|
if test "$ac_cv_type_signal" = "void" ; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define VOID_RETSIGTYPE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:5300: checking whether time.h and sys/time.h may both be included" >&5
|
|
echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
|
|
if test "${ac_cv_header_time+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5306 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <time.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((struct tm *) 0)
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:5322: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5325: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:5328: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5331: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_header_time=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_header_time=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5341: result: $ac_cv_header_time" >&5
|
|
echo "${ECHO_T}$ac_cv_header_time" >&6
|
|
if test $ac_cv_header_time = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define TIME_WITH_SYS_TIME 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
for ac_header in standards.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:5354: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5360 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:5364: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:5370: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5389: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
for i in netinet/ip.h netinet/tcp.h; do
|
|
|
|
cv=`echo "$i" | sed 'y%./+-%__p_%'`
|
|
|
|
echo "$as_me:5403: checking for $i" >&5
|
|
echo $ECHO_N "checking for $i... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_header_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5409 "configure"
|
|
#include "confdefs.h"
|
|
\
|
|
#ifdef HAVE_STANDARDS_H
|
|
#include <standards.h>
|
|
#endif
|
|
#include <$i>
|
|
|
|
_ACEOF
|
|
if { (eval echo "$as_me:5418: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:5424: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "ac_cv_header_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_header_$cv=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5443: result: `eval echo '${'ac_cv_header_$cv'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'ac_cv_header_$cv'}'`" >&6
|
|
ac_res=`eval echo \\$ac_cv_header_$cv`
|
|
if test "$ac_res" = yes; then
|
|
ac_tr_hdr=HAVE_`echo $i | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
if false;then
|
|
|
|
for ac_header in netinet/ip.h netinet/tcp.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:5459: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5465 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:5469: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:5475: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5494: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
|
|
for ac_func in getlogin setlogin
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:5509: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5515 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:5546: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5549: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5552: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5555: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5565: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
if test "$ac_cv_func_getlogin" = yes; then
|
|
echo "$as_me:5576: checking if getlogin is posix" >&5
|
|
echo $ECHO_N "checking if getlogin is posix... $ECHO_C" >&6
|
|
if test "${ac_cv_func_getlogin_posix+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if test "$ac_cv_func_getlogin" = yes -a "$ac_cv_func_setlogin" = yes; then
|
|
ac_cv_func_getlogin_posix=no
|
|
else
|
|
ac_cv_func_getlogin_posix=yes
|
|
fi
|
|
|
|
fi
|
|
echo "$as_me:5589: result: $ac_cv_func_getlogin_posix" >&5
|
|
echo "${ECHO_T}$ac_cv_func_getlogin_posix" >&6
|
|
if test "$ac_cv_func_getlogin_posix" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define POSIX_GETLOGIN 1
|
|
EOF
|
|
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:5600: checking if realloc if broken" >&5
|
|
echo $ECHO_N "checking if realloc if broken... $ECHO_C" >&6
|
|
if test "${ac_cv_func_realloc_broken+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
ac_cv_func_realloc_broken=no
|
|
if test "$cross_compiling" = yes; then
|
|
:
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5611 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
return realloc(NULL, 17) == NULL;
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:5624: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5627: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5629: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5632: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_realloc_broken=yes
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
fi
|
|
echo "$as_me:5645: result: $ac_cv_func_realloc_broken" >&5
|
|
echo "${ECHO_T}$ac_cv_func_realloc_broken" >&6
|
|
if test "$ac_cv_func_realloc_broken" = yes ; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define BROKEN_REALLOC 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
DIR_roken=roken
|
|
LIB_roken='$(top_builddir)/lib/roken/libroken.la'
|
|
INCLUDES_roken='-I$(top_builddir)/lib/roken -I$(top_srcdir)/lib/roken'
|
|
|
|
WFLAGS_NOUNUSED=""
|
|
WFLAGS_NOIMPLICITINT=""
|
|
if test -z "$WFLAGS" -a "$GCC" = "yes"; then
|
|
# -Wno-implicit-int for broken X11 headers
|
|
# leave these out for now:
|
|
# -Wcast-align doesn't work well on alpha osf/1
|
|
# -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast
|
|
# -Wmissing-declarations -Wnested-externs
|
|
WFLAGS="-Wall -Wmissing-prototypes -Wpointer-arith -Wbad-function-cast -Wmissing-declarations -Wnested-externs"
|
|
WFLAGS_NOUNUSED="-Wno-unused"
|
|
WFLAGS_NOIMPLICITINT="-Wno-implicit-int"
|
|
fi
|
|
|
|
echo "$as_me:5672: checking for ssize_t" >&5
|
|
echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_ssize_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5678 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <unistd.h>
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "ssize_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then
|
|
ac_cv_type_ssize_t=yes
|
|
else
|
|
ac_cv_type_ssize_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:5696: result: $ac_cv_type_ssize_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_ssize_t" >&6
|
|
if test $ac_cv_type_ssize_t = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define ssize_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "long long" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:5707: checking for long long" >&5
|
|
echo $ECHO_N "checking for long long... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5713 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
long long foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:5730: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5733: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:5736: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5739: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:5750: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo long long | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:5755: checking for long long" >&5
|
|
echo $ECHO_N "checking for long long... $ECHO_C" >&6
|
|
if test "${ac_cv_type_long_long+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5761 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((long long *) 0)
|
|
return 0;
|
|
if (sizeof (long long))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:5776: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5779: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:5782: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5785: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_long_long=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_long_long=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5795: result: $ac_cv_type_long_long" >&5
|
|
echo "${ECHO_T}$ac_cv_type_long_long" >&6
|
|
if test $ac_cv_type_long_long = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_LONG_LONG 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
for ac_header in \
|
|
arpa/inet.h \
|
|
arpa/nameser.h \
|
|
config.h \
|
|
crypt.h \
|
|
dirent.h \
|
|
errno.h \
|
|
err.h \
|
|
fcntl.h \
|
|
grp.h \
|
|
ifaddrs.h \
|
|
net/if.h \
|
|
netdb.h \
|
|
netinet/in.h \
|
|
netinet/in6.h \
|
|
netinet/in_systm.h \
|
|
netinet6/in6.h \
|
|
netinet6/in6_var.h \
|
|
paths.h \
|
|
pwd.h \
|
|
resolv.h \
|
|
rpcsvc/ypclnt.h \
|
|
shadow.h \
|
|
sys/bswap.h \
|
|
sys/ioctl.h \
|
|
sys/param.h \
|
|
sys/proc.h \
|
|
sys/resource.h \
|
|
sys/socket.h \
|
|
sys/sockio.h \
|
|
sys/stat.h \
|
|
sys/sysctl.h \
|
|
sys/time.h \
|
|
sys/tty.h \
|
|
sys/types.h \
|
|
sys/uio.h \
|
|
sys/utsname.h \
|
|
sys/wait.h \
|
|
syslog.h \
|
|
termios.h \
|
|
unistd.h \
|
|
userconf.h \
|
|
usersec.h \
|
|
util.h \
|
|
vis.h \
|
|
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:5861: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5867 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:5871: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:5877: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5896: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
if test "$ac_cv_header_err_h" = yes; then
|
|
have_err_h_TRUE=
|
|
have_err_h_FALSE='#'
|
|
else
|
|
have_err_h_TRUE='#'
|
|
have_err_h_FALSE=
|
|
fi
|
|
|
|
if test "$ac_cv_header_fnmatch_h" = yes; then
|
|
have_fnmatch_h_TRUE=
|
|
have_fnmatch_h_FALSE='#'
|
|
else
|
|
have_fnmatch_h_TRUE='#'
|
|
have_fnmatch_h_FALSE=
|
|
fi
|
|
|
|
if test "$ac_cv_header_ifaddrs_h" = yes; then
|
|
have_ifaddrs_h_TRUE=
|
|
have_ifaddrs_h_FALSE='#'
|
|
else
|
|
have_ifaddrs_h_TRUE='#'
|
|
have_ifaddrs_h_FALSE=
|
|
fi
|
|
|
|
if test "$ac_cv_header_vis_h" = yes; then
|
|
have_vis_h_TRUE=
|
|
have_vis_h_FALSE='#'
|
|
else
|
|
have_vis_h_TRUE='#'
|
|
have_vis_h_FALSE=
|
|
fi
|
|
|
|
echo "$as_me:5938: checking for socket" >&5
|
|
echo $ECHO_N "checking for socket... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_socket+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_socket\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" socket; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5956 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
socket()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:5968: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5971: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5974: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5977: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_socket=$ac_lib; else ac_cv_funclib_socket=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_socket=\${ac_cv_funclib_socket-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_socket"
|
|
|
|
if false; then
|
|
|
|
for ac_func in socket
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:5999: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6005 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6036: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6039: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6042: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6045: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6055: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# socket
|
|
eval "ac_tr_func=HAVE_`echo socket | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_socket=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_socket=yes"
|
|
eval "LIB_socket="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:6079: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_socket=no"
|
|
eval "LIB_socket="
|
|
echo "$as_me:6085: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_socket=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:6099: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_socket"; then
|
|
LIBS="$LIB_socket $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:6108: checking for gethostbyname" >&5
|
|
echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_gethostbyname+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_gethostbyname\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" nsl; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6126 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
gethostbyname()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6138: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6141: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6144: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6147: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_gethostbyname=$ac_lib; else ac_cv_funclib_gethostbyname=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_gethostbyname=\${ac_cv_funclib_gethostbyname-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_gethostbyname"
|
|
|
|
if false; then
|
|
|
|
for ac_func in gethostbyname
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:6169: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6175 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6206: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6209: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6212: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6215: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6225: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# gethostbyname
|
|
eval "ac_tr_func=HAVE_`echo gethostbyname | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_gethostbyname=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_gethostbyname=yes"
|
|
eval "LIB_gethostbyname="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:6249: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_gethostbyname=no"
|
|
eval "LIB_gethostbyname="
|
|
echo "$as_me:6255: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_gethostbyname=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:6269: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_gethostbyname"; then
|
|
LIBS="$LIB_gethostbyname $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:6278: checking for syslog" >&5
|
|
echo $ECHO_N "checking for syslog... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_syslog+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_syslog\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" syslog; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6296 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
syslog()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6308: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6311: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6314: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6317: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_syslog=$ac_lib; else ac_cv_funclib_syslog=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_syslog=\${ac_cv_funclib_syslog-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_syslog"
|
|
|
|
if false; then
|
|
|
|
for ac_func in syslog
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:6339: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6345 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6376: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6379: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6382: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6385: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6395: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# syslog
|
|
eval "ac_tr_func=HAVE_`echo syslog | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_syslog=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_syslog=yes"
|
|
eval "LIB_syslog="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:6419: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_syslog=no"
|
|
eval "LIB_syslog="
|
|
echo "$as_me:6425: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_syslog=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:6439: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_syslog"; then
|
|
LIBS="$LIB_syslog $LIBS"
|
|
fi
|
|
|
|
# Check whether --with-ipv6 or --without-ipv6 was given.
|
|
if test "${with_ipv6+set}" = set; then
|
|
withval="$with_ipv6"
|
|
|
|
if test "$withval" = "no"; then
|
|
ac_cv_lib_ipv6=no
|
|
fi
|
|
fi;
|
|
save_CFLAGS="${CFLAGS}"
|
|
if test "${ac_cv_lib_ipv6+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
v6type=unknown
|
|
v6lib=none
|
|
|
|
echo "$as_me:6463: checking ipv6 stack type" >&5
|
|
echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6
|
|
for i in v6d toshiba kame inria zeta linux; do
|
|
case $i in
|
|
v6d)
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6469 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include </usr/local/v6/include/sys/types.h>
|
|
#ifdef __V6D__
|
|
yes
|
|
#endif
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
v6type=$i; v6lib=v6;
|
|
v6libdir=/usr/local/v6/lib;
|
|
CFLAGS="-I/usr/local/v6/include $CFLAGS"
|
|
fi
|
|
rm -f conftest*
|
|
|
|
;;
|
|
toshiba)
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6488 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/param.h>
|
|
#ifdef _TOSHIBA_INET6
|
|
yes
|
|
#endif
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
v6type=$i; v6lib=inet6;
|
|
v6libdir=/usr/local/v6/lib;
|
|
CFLAGS="-DINET6 $CFLAGS"
|
|
fi
|
|
rm -f conftest*
|
|
|
|
;;
|
|
kame)
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6507 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <netinet/in.h>
|
|
#ifdef __KAME__
|
|
yes
|
|
#endif
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
v6type=$i; v6lib=inet6;
|
|
v6libdir=/usr/local/v6/lib;
|
|
CFLAGS="-DINET6 $CFLAGS"
|
|
fi
|
|
rm -f conftest*
|
|
|
|
;;
|
|
inria)
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6526 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <netinet/in.h>
|
|
#ifdef IPV6_INRIA_VERSION
|
|
yes
|
|
#endif
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
v6type=$i; CFLAGS="-DINET6 $CFLAGS"
|
|
fi
|
|
rm -f conftest*
|
|
|
|
;;
|
|
zeta)
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6543 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/param.h>
|
|
#ifdef _ZETA_MINAMI_INET6
|
|
yes
|
|
#endif
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
v6type=$i; v6lib=inet6;
|
|
v6libdir=/usr/local/v6/lib;
|
|
CFLAGS="-DINET6 $CFLAGS"
|
|
fi
|
|
rm -f conftest*
|
|
|
|
;;
|
|
linux)
|
|
if test -d /usr/inet6; then
|
|
v6type=$i
|
|
v6lib=inet6
|
|
v6libdir=/usr/inet6
|
|
CFLAGS="-DINET6 $CFLAGS"
|
|
fi
|
|
;;
|
|
esac
|
|
if test "$v6type" != "unknown"; then
|
|
break
|
|
fi
|
|
done
|
|
echo "$as_me:6573: result: $v6type" >&5
|
|
echo "${ECHO_T}$v6type" >&6
|
|
|
|
if test "$v6lib" != "none"; then
|
|
for dir in $v6libdir /usr/local/v6/lib /usr/local/lib; do
|
|
if test -d $dir -a -f $dir/lib$v6lib.a; then
|
|
LIBS="-L$dir -l$v6lib $LIBS"
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6585 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_H
|
|
#include <netinet/in6.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
struct sockaddr_in6 sin6;
|
|
int s;
|
|
|
|
s = socket(AF_INET6, SOCK_DGRAM, 0);
|
|
|
|
sin6.sin6_family = AF_INET6;
|
|
sin6.sin6_port = htons(17);
|
|
sin6.sin6_addr = in6addr_any;
|
|
bind(s, (struct sockaddr *)&sin6, sizeof(sin6));
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6620: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6623: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6626: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6629: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_ipv6=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_ipv6=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
|
|
echo "$as_me:6640: checking for IPv6" >&5
|
|
echo $ECHO_N "checking for IPv6... $ECHO_C" >&6
|
|
echo "$as_me:6642: result: $ac_cv_lib_ipv6" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_ipv6" >&6
|
|
if test "$ac_cv_lib_ipv6" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_IPV6 1
|
|
EOF
|
|
|
|
else
|
|
CFLAGS="${save_CFLAGS}"
|
|
fi
|
|
|
|
if test "$ac_cv_lib_ipv6" = yes; then
|
|
echo "$as_me:6655: checking for in6addr_loopback" >&5
|
|
echo $ECHO_N "checking for in6addr_loopback... $ECHO_C" >&6
|
|
if test "${ac_cv_var_in6addr_loopback+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6662 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_H
|
|
#include <netinet/in6.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
|
|
struct sockaddr_in6 sin6;
|
|
sin6.sin6_addr = in6addr_loopback;
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6689: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6692: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6695: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6698: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_var_in6addr_loopback=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_var_in6addr_loopback=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6708: result: $ac_cv_var_in6addr_loopback" >&5
|
|
echo "${ECHO_T}$ac_cv_var_in6addr_loopback" >&6
|
|
if test "$ac_cv_var_in6addr_loopback" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_IN6ADDR_LOOPBACK 1
|
|
EOF
|
|
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:6719: checking for gethostbyname2" >&5
|
|
echo $ECHO_N "checking for gethostbyname2... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_gethostbyname2+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_gethostbyname2\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" inet6 ip6; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6737 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
gethostbyname2()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6749: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6752: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6755: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6758: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_gethostbyname2=$ac_lib; else ac_cv_funclib_gethostbyname2=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_gethostbyname2=\${ac_cv_funclib_gethostbyname2-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_gethostbyname2"
|
|
|
|
if false; then
|
|
|
|
for ac_func in gethostbyname2
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:6780: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6786 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6817: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6820: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6823: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6826: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6836: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# gethostbyname2
|
|
eval "ac_tr_func=HAVE_`echo gethostbyname2 | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_gethostbyname2=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_gethostbyname2=yes"
|
|
eval "LIB_gethostbyname2="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:6860: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_gethostbyname2=no"
|
|
eval "LIB_gethostbyname2="
|
|
echo "$as_me:6866: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_gethostbyname2=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:6880: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_gethostbyname2"; then
|
|
LIBS="$LIB_gethostbyname2 $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:6889: checking for res_search" >&5
|
|
echo $ECHO_N "checking for res_search... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_res_search+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_res_search\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" resolv; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6907 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_NAMESER_H
|
|
#include <arpa/nameser.h>
|
|
#endif
|
|
#ifdef HAVE_RESOLV_H
|
|
#include <resolv.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
res_search(0,0,0,0,0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6933: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6936: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6939: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6942: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_res_search=$ac_lib; else ac_cv_funclib_res_search=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_res_search=\${ac_cv_funclib_res_search-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_res_search"
|
|
|
|
if false; then
|
|
|
|
for ac_func in res_search
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:6964: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6970 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7001: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7004: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7007: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7010: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7020: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# res_search
|
|
eval "ac_tr_func=HAVE_`echo res_search | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_res_search=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_res_search=yes"
|
|
eval "LIB_res_search="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:7044: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_res_search=no"
|
|
eval "LIB_res_search="
|
|
echo "$as_me:7050: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_res_search=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:7064: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_res_search"; then
|
|
LIBS="$LIB_res_search $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:7073: checking for dn_expand" >&5
|
|
echo $ECHO_N "checking for dn_expand... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_dn_expand+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_dn_expand\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" resolv; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7091 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_NAMESER_H
|
|
#include <arpa/nameser.h>
|
|
#endif
|
|
#ifdef HAVE_RESOLV_H
|
|
#include <resolv.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
dn_expand(0,0,0,0,0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7117: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7120: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7123: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7126: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_dn_expand=$ac_lib; else ac_cv_funclib_dn_expand=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_dn_expand=\${ac_cv_funclib_dn_expand-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_dn_expand"
|
|
|
|
if false; then
|
|
|
|
for ac_func in dn_expand
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:7148: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7154 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7185: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7188: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7191: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7194: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7204: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# dn_expand
|
|
eval "ac_tr_func=HAVE_`echo dn_expand | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_dn_expand=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_dn_expand=yes"
|
|
eval "LIB_dn_expand="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:7228: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_dn_expand=no"
|
|
eval "LIB_dn_expand="
|
|
echo "$as_me:7234: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_dn_expand=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:7248: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_dn_expand"; then
|
|
LIBS="$LIB_dn_expand $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:7257: checking for working snprintf" >&5
|
|
echo $ECHO_N "checking for working snprintf... $ECHO_C" >&6
|
|
if test "${ac_cv_func_snprintf_working+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_func_snprintf_working=yes
|
|
if test "$cross_compiling" = yes; then
|
|
:
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7267 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
int main()
|
|
{
|
|
char foo[3];
|
|
snprintf(foo, 2, "12");
|
|
return strcmp(foo, "1");
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:7280: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7283: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7285: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7288: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_snprintf_working=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:7300: result: $ac_cv_func_snprintf_working" >&5
|
|
echo "${ECHO_T}$ac_cv_func_snprintf_working" >&6
|
|
|
|
if test "$ac_cv_func_snprintf_working" = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_SNPRINTF 1
|
|
EOF
|
|
|
|
fi
|
|
if test "$ac_cv_func_snprintf_working" = yes; then
|
|
|
|
if test "$ac_cv_func_snprintf+set" != set -o "$ac_cv_func_snprintf" = yes; then
|
|
echo "$as_me:7313: checking if snprintf needs a prototype" >&5
|
|
echo $ECHO_N "checking if snprintf needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_snprintf_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7319 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int snprintf (struct foo*);
|
|
snprintf(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:7334: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7337: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:7340: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7343: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_snprintf_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_snprintf_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7353: result: $ac_cv_func_snprintf_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_snprintf_noproto" >&6
|
|
|
|
if test "$ac_cv_func_snprintf_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_SNPRINTF_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:7368: checking for working vsnprintf" >&5
|
|
echo $ECHO_N "checking for working vsnprintf... $ECHO_C" >&6
|
|
if test "${ac_cv_func_vsnprintf_working+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_func_vsnprintf_working=yes
|
|
if test "$cross_compiling" = yes; then
|
|
:
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7378 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
|
|
int foo(int num, ...)
|
|
{
|
|
char bar[3];
|
|
va_list arg;
|
|
va_start(arg, num);
|
|
vsnprintf(bar, 2, "%s", arg);
|
|
va_end(arg);
|
|
return strcmp(bar, "1");
|
|
}
|
|
|
|
int main()
|
|
{
|
|
return foo(0, "12");
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:7401: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7404: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7406: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7409: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_vsnprintf_working=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:7421: result: $ac_cv_func_vsnprintf_working" >&5
|
|
echo "${ECHO_T}$ac_cv_func_vsnprintf_working" >&6
|
|
|
|
if test "$ac_cv_func_vsnprintf_working" = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_VSNPRINTF 1
|
|
EOF
|
|
|
|
fi
|
|
if test "$ac_cv_func_vsnprintf_working" = yes; then
|
|
|
|
if test "$ac_cv_func_vsnprintf+set" != set -o "$ac_cv_func_vsnprintf" = yes; then
|
|
echo "$as_me:7434: checking if vsnprintf needs a prototype" >&5
|
|
echo $ECHO_N "checking if vsnprintf needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_vsnprintf_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7440 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int vsnprintf (struct foo*);
|
|
vsnprintf(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:7455: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7458: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:7461: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7464: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_vsnprintf_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_vsnprintf_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7474: result: $ac_cv_func_vsnprintf_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_vsnprintf_noproto" >&6
|
|
|
|
if test "$ac_cv_func_vsnprintf_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_VSNPRINTF_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:7489: checking for working glob" >&5
|
|
echo $ECHO_N "checking for working glob... $ECHO_C" >&6
|
|
if test "${ac_cv_func_glob_working+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_func_glob_working=yes
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7496 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <glob.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
glob(NULL, GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE|
|
|
#ifdef GLOB_MAXPATH
|
|
GLOB_MAXPATH
|
|
#else
|
|
GLOB_LIMIT
|
|
#endif
|
|
,
|
|
NULL, NULL);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7519: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7522: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7525: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7528: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_glob_working=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7538: result: $ac_cv_func_glob_working" >&5
|
|
echo "${ECHO_T}$ac_cv_func_glob_working" >&6
|
|
|
|
if test "$ac_cv_func_glob_working" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_GLOB 1
|
|
EOF
|
|
|
|
fi
|
|
if test "$ac_cv_func_glob_working" = yes; then
|
|
|
|
if test "$ac_cv_func_glob+set" != set -o "$ac_cv_func_glob" = yes; then
|
|
echo "$as_me:7551: checking if glob needs a prototype" >&5
|
|
echo $ECHO_N "checking if glob needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_glob_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7557 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <glob.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int glob (struct foo*);
|
|
glob(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:7573: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7576: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:7579: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7582: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_glob_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_glob_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7592: result: $ac_cv_func_glob_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_glob_noproto" >&6
|
|
|
|
if test "$ac_cv_func_glob_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_GLOB_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_glob_working" != yes; then
|
|
LIBOBJS="$LIBOBJS glob.o"
|
|
fi
|
|
|
|
if test "$ac_cv_func_glob_working" = yes; then
|
|
have_glob_h_TRUE=
|
|
have_glob_h_FALSE='#'
|
|
else
|
|
have_glob_h_TRUE='#'
|
|
have_glob_h_FALSE=
|
|
fi
|
|
|
|
for ac_func in \
|
|
asnprintf \
|
|
asprintf \
|
|
atexit \
|
|
cgetent \
|
|
getconfattr \
|
|
getprogname \
|
|
getrlimit \
|
|
getspnam \
|
|
initstate \
|
|
issetugid \
|
|
on_exit \
|
|
random \
|
|
setprogname \
|
|
setstate \
|
|
strsvis \
|
|
strunvis \
|
|
strvis \
|
|
strvisx \
|
|
svis \
|
|
sysconf \
|
|
sysctl \
|
|
uname \
|
|
unvis \
|
|
vasnprintf \
|
|
vasprintf \
|
|
vis \
|
|
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:7649: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7655 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7686: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7689: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7692: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7695: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7705: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
if test "$ac_cv_func_cgetent" = no; then
|
|
LIBOBJS="$LIBOBJS getcap.o"
|
|
fi
|
|
|
|
echo "$as_me:7719: checking for getsockopt" >&5
|
|
echo $ECHO_N "checking for getsockopt... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_getsockopt+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_getsockopt\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7737 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
getsockopt(0,0,0,0,0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7754: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7757: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7760: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7763: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_getsockopt=$ac_lib; else ac_cv_funclib_getsockopt=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_getsockopt=\${ac_cv_funclib_getsockopt-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_getsockopt"
|
|
|
|
if false; then
|
|
|
|
for ac_func in getsockopt
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:7785: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7791 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7822: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7825: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7828: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7831: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7841: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# getsockopt
|
|
eval "ac_tr_func=HAVE_`echo getsockopt | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_getsockopt=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_getsockopt=yes"
|
|
eval "LIB_getsockopt="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:7865: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_getsockopt=no"
|
|
eval "LIB_getsockopt="
|
|
echo "$as_me:7871: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_getsockopt=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:7885: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:7890: checking for setsockopt" >&5
|
|
echo $ECHO_N "checking for setsockopt... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_setsockopt+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_setsockopt\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7908 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
setsockopt(0,0,0,0,0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7925: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7928: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7931: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7934: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_setsockopt=$ac_lib; else ac_cv_funclib_setsockopt=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_setsockopt=\${ac_cv_funclib_setsockopt-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_setsockopt"
|
|
|
|
if false; then
|
|
|
|
for ac_func in setsockopt
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:7956: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7962 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7993: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7996: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7999: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8002: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8012: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# setsockopt
|
|
eval "ac_tr_func=HAVE_`echo setsockopt | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_setsockopt=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_setsockopt=yes"
|
|
eval "LIB_setsockopt="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:8036: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_setsockopt=no"
|
|
eval "LIB_setsockopt="
|
|
echo "$as_me:8042: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_setsockopt=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:8056: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:8061: checking for hstrerror" >&5
|
|
echo $ECHO_N "checking for hstrerror... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_hstrerror+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_hstrerror\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" resolv; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8079 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
hstrerror(17)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8093: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8096: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8099: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8102: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_hstrerror=$ac_lib; else ac_cv_funclib_hstrerror=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_hstrerror=\${ac_cv_funclib_hstrerror-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_hstrerror"
|
|
|
|
if false; then
|
|
|
|
for ac_func in hstrerror
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:8124: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8130 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8161: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8164: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8167: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8170: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8180: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# hstrerror
|
|
eval "ac_tr_func=HAVE_`echo hstrerror | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_hstrerror=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_hstrerror=yes"
|
|
eval "LIB_hstrerror="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:8204: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_hstrerror=no"
|
|
eval "LIB_hstrerror="
|
|
echo "$as_me:8210: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_hstrerror=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:8224: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_hstrerror"; then
|
|
LIBS="$LIB_hstrerror $LIBS"
|
|
fi
|
|
|
|
if eval "test \"$ac_cv_func_hstrerror\" != yes"; then
|
|
LIBOBJS="$LIBOBJS hstrerror.o"
|
|
fi
|
|
|
|
if test "$ac_cv_func_hstrerror" = yes; then
|
|
|
|
if test "$ac_cv_func_hstrerror+set" != set -o "$ac_cv_func_hstrerror" = yes; then
|
|
echo "$as_me:8240: checking if hstrerror needs a prototype" >&5
|
|
echo $ECHO_N "checking if hstrerror needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_hstrerror_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8246 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int hstrerror (struct foo*);
|
|
hstrerror(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:8264: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8267: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:8270: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8273: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_hstrerror_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_hstrerror_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8283: result: $ac_cv_func_hstrerror_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_hstrerror_noproto" >&6
|
|
|
|
if test "$ac_cv_func_hstrerror_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_HSTRERROR_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_asprintf" = yes; then
|
|
|
|
if test "$ac_cv_func_asprintf+set" != set -o "$ac_cv_func_asprintf" = yes; then
|
|
echo "$as_me:8301: checking if asprintf needs a prototype" >&5
|
|
echo $ECHO_N "checking if asprintf needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_asprintf_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8307 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int asprintf (struct foo*);
|
|
asprintf(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:8324: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8327: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:8330: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8333: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_asprintf_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_asprintf_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8343: result: $ac_cv_func_asprintf_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_asprintf_noproto" >&6
|
|
|
|
if test "$ac_cv_func_asprintf_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_ASPRINTF_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
fi
|
|
if test "$ac_cv_func_vasprintf" = yes; then
|
|
|
|
if test "$ac_cv_func_vasprintf+set" != set -o "$ac_cv_func_vasprintf" = yes; then
|
|
echo "$as_me:8359: checking if vasprintf needs a prototype" >&5
|
|
echo $ECHO_N "checking if vasprintf needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_vasprintf_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8365 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int vasprintf (struct foo*);
|
|
vasprintf(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:8382: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8385: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:8388: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8391: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_vasprintf_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_vasprintf_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8401: result: $ac_cv_func_vasprintf_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_vasprintf_noproto" >&6
|
|
|
|
if test "$ac_cv_func_vasprintf_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_VASPRINTF_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
fi
|
|
if test "$ac_cv_func_asnprintf" = yes; then
|
|
|
|
if test "$ac_cv_func_asnprintf+set" != set -o "$ac_cv_func_asnprintf" = yes; then
|
|
echo "$as_me:8417: checking if asnprintf needs a prototype" >&5
|
|
echo $ECHO_N "checking if asnprintf needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_asnprintf_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8423 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int asnprintf (struct foo*);
|
|
asnprintf(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:8440: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8443: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:8446: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8449: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_asnprintf_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_asnprintf_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8459: result: $ac_cv_func_asnprintf_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_asnprintf_noproto" >&6
|
|
|
|
if test "$ac_cv_func_asnprintf_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_ASNPRINTF_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
fi
|
|
if test "$ac_cv_func_vasnprintf" = yes; then
|
|
|
|
if test "$ac_cv_func_vasnprintf+set" != set -o "$ac_cv_func_vasnprintf" = yes; then
|
|
echo "$as_me:8475: checking if vasnprintf needs a prototype" >&5
|
|
echo $ECHO_N "checking if vasnprintf needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_vasnprintf_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8481 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int vasnprintf (struct foo*);
|
|
vasnprintf(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:8498: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8501: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:8504: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8507: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_vasnprintf_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_vasnprintf_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8517: result: $ac_cv_func_vasnprintf_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_vasnprintf_noproto" >&6
|
|
|
|
if test "$ac_cv_func_vasnprintf_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_VASNPRINTF_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:8531: checking for bswap16" >&5
|
|
echo $ECHO_N "checking for bswap16... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_bswap16+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_bswap16\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8549 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_SYS_BSWAP_H
|
|
#include <sys/bswap.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
bswap16(0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8563: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8566: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8569: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8572: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_bswap16=$ac_lib; else ac_cv_funclib_bswap16=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_bswap16=\${ac_cv_funclib_bswap16-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_bswap16"
|
|
|
|
if false; then
|
|
|
|
for ac_func in bswap16
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:8594: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8600 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8631: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8634: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8637: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8640: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8650: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# bswap16
|
|
eval "ac_tr_func=HAVE_`echo bswap16 | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_bswap16=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_bswap16=yes"
|
|
eval "LIB_bswap16="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:8674: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_bswap16=no"
|
|
eval "LIB_bswap16="
|
|
echo "$as_me:8680: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_bswap16=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:8694: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:8699: checking for bswap32" >&5
|
|
echo $ECHO_N "checking for bswap32... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_bswap32+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_bswap32\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8717 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_SYS_BSWAP_H
|
|
#include <sys/bswap.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
bswap32(0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8731: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8734: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8737: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8740: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_bswap32=$ac_lib; else ac_cv_funclib_bswap32=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_bswap32=\${ac_cv_funclib_bswap32-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_bswap32"
|
|
|
|
if false; then
|
|
|
|
for ac_func in bswap32
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:8762: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8768 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8799: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8802: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8805: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8808: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8818: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# bswap32
|
|
eval "ac_tr_func=HAVE_`echo bswap32 | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_bswap32=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_bswap32=yes"
|
|
eval "LIB_bswap32="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:8842: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_bswap32=no"
|
|
eval "LIB_bswap32="
|
|
echo "$as_me:8848: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_bswap32=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:8862: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:8867: checking for pidfile" >&5
|
|
echo $ECHO_N "checking for pidfile... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_pidfile+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_pidfile\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" util; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8885 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_UTIL_H
|
|
#include <util.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
pidfile(0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8899: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8902: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8905: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8908: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_pidfile=$ac_lib; else ac_cv_funclib_pidfile=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_pidfile=\${ac_cv_funclib_pidfile-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_pidfile"
|
|
|
|
if false; then
|
|
|
|
for ac_func in pidfile
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:8930: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8936 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8967: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8970: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8973: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8976: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8986: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# pidfile
|
|
eval "ac_tr_func=HAVE_`echo pidfile | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_pidfile=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_pidfile=yes"
|
|
eval "LIB_pidfile="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:9010: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_pidfile=no"
|
|
eval "LIB_pidfile="
|
|
echo "$as_me:9016: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_pidfile=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:9030: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:9035: checking for getaddrinfo" >&5
|
|
echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_getaddrinfo+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_getaddrinfo\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9053 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
getaddrinfo(0,0,0,0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9067: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9070: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9073: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9076: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_getaddrinfo=$ac_lib; else ac_cv_funclib_getaddrinfo=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_getaddrinfo=\${ac_cv_funclib_getaddrinfo-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_getaddrinfo"
|
|
|
|
if false; then
|
|
|
|
for ac_func in getaddrinfo
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:9098: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9104 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9135: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9138: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9141: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9144: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9154: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# getaddrinfo
|
|
eval "ac_tr_func=HAVE_`echo getaddrinfo | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_getaddrinfo=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_getaddrinfo=yes"
|
|
eval "LIB_getaddrinfo="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:9178: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_getaddrinfo=no"
|
|
eval "LIB_getaddrinfo="
|
|
echo "$as_me:9184: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_getaddrinfo=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:9198: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_getaddrinfo"; then
|
|
LIBS="$LIB_getaddrinfo $LIBS"
|
|
fi
|
|
|
|
if eval "test \"$ac_cv_func_getaddrinfo\" != yes"; then
|
|
LIBOBJS="$LIBOBJS getaddrinfo.o"
|
|
fi
|
|
|
|
echo "$as_me:9211: checking for getnameinfo" >&5
|
|
echo $ECHO_N "checking for getnameinfo... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_getnameinfo+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_getnameinfo\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9229 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
getnameinfo(0,0,0,0,0,0,0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9243: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9246: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9249: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9252: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_getnameinfo=$ac_lib; else ac_cv_funclib_getnameinfo=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_getnameinfo=\${ac_cv_funclib_getnameinfo-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_getnameinfo"
|
|
|
|
if false; then
|
|
|
|
for ac_func in getnameinfo
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:9274: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9280 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9311: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9314: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9317: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9320: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9330: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# getnameinfo
|
|
eval "ac_tr_func=HAVE_`echo getnameinfo | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_getnameinfo=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_getnameinfo=yes"
|
|
eval "LIB_getnameinfo="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:9354: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_getnameinfo=no"
|
|
eval "LIB_getnameinfo="
|
|
echo "$as_me:9360: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_getnameinfo=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:9374: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_getnameinfo"; then
|
|
LIBS="$LIB_getnameinfo $LIBS"
|
|
fi
|
|
|
|
if eval "test \"$ac_cv_func_getnameinfo\" != yes"; then
|
|
LIBOBJS="$LIBOBJS getnameinfo.o"
|
|
fi
|
|
|
|
echo "$as_me:9387: checking for freeaddrinfo" >&5
|
|
echo $ECHO_N "checking for freeaddrinfo... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_freeaddrinfo+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_freeaddrinfo\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9405 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
freeaddrinfo(0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9419: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9422: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9425: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9428: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_freeaddrinfo=$ac_lib; else ac_cv_funclib_freeaddrinfo=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_freeaddrinfo=\${ac_cv_funclib_freeaddrinfo-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_freeaddrinfo"
|
|
|
|
if false; then
|
|
|
|
for ac_func in freeaddrinfo
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:9450: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9456 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9487: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9490: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9493: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9496: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9506: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# freeaddrinfo
|
|
eval "ac_tr_func=HAVE_`echo freeaddrinfo | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_freeaddrinfo=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_freeaddrinfo=yes"
|
|
eval "LIB_freeaddrinfo="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:9530: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_freeaddrinfo=no"
|
|
eval "LIB_freeaddrinfo="
|
|
echo "$as_me:9536: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_freeaddrinfo=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:9550: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_freeaddrinfo"; then
|
|
LIBS="$LIB_freeaddrinfo $LIBS"
|
|
fi
|
|
|
|
if eval "test \"$ac_cv_func_freeaddrinfo\" != yes"; then
|
|
LIBOBJS="$LIBOBJS freeaddrinfo.o"
|
|
fi
|
|
|
|
echo "$as_me:9563: checking for gai_strerror" >&5
|
|
echo $ECHO_N "checking for gai_strerror... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_gai_strerror+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_gai_strerror\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9581 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
gai_strerror(0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9595: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9598: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9601: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9604: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_gai_strerror=$ac_lib; else ac_cv_funclib_gai_strerror=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_gai_strerror=\${ac_cv_funclib_gai_strerror-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_gai_strerror"
|
|
|
|
if false; then
|
|
|
|
for ac_func in gai_strerror
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:9626: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9632 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9663: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9666: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9669: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9672: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9682: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# gai_strerror
|
|
eval "ac_tr_func=HAVE_`echo gai_strerror | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_gai_strerror=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_gai_strerror=yes"
|
|
eval "LIB_gai_strerror="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:9706: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_gai_strerror=no"
|
|
eval "LIB_gai_strerror="
|
|
echo "$as_me:9712: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_gai_strerror=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:9726: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_gai_strerror"; then
|
|
LIBS="$LIB_gai_strerror $LIBS"
|
|
fi
|
|
|
|
if eval "test \"$ac_cv_func_gai_strerror\" != yes"; then
|
|
LIBOBJS="$LIBOBJS gai_strerror.o"
|
|
fi
|
|
|
|
for ac_func in \
|
|
chown \
|
|
copyhostent \
|
|
daemon \
|
|
ecalloc \
|
|
emalloc \
|
|
erealloc \
|
|
estrdup \
|
|
err \
|
|
errx \
|
|
fchown \
|
|
flock \
|
|
fnmatch \
|
|
freehostent \
|
|
getcwd \
|
|
getdtablesize \
|
|
getegid \
|
|
geteuid \
|
|
getgid \
|
|
gethostname \
|
|
getifaddrs \
|
|
getipnodebyaddr \
|
|
getipnodebyname \
|
|
getopt \
|
|
gettimeofday \
|
|
getuid \
|
|
getusershell \
|
|
initgroups \
|
|
innetgr \
|
|
iruserok \
|
|
localtime_r \
|
|
lstat \
|
|
memmove \
|
|
mkstemp \
|
|
putenv \
|
|
rcmd \
|
|
readv \
|
|
recvmsg \
|
|
sendmsg \
|
|
setegid \
|
|
setenv \
|
|
seteuid \
|
|
strcasecmp \
|
|
strdup \
|
|
strerror \
|
|
strftime \
|
|
strlcat \
|
|
strlcpy \
|
|
strlwr \
|
|
strncasecmp \
|
|
strndup \
|
|
strnlen \
|
|
strptime \
|
|
strsep \
|
|
strsep_copy \
|
|
strtok_r \
|
|
strupr \
|
|
swab \
|
|
unsetenv \
|
|
verr \
|
|
verrx \
|
|
vsyslog \
|
|
vwarn \
|
|
vwarnx \
|
|
warn \
|
|
warnx \
|
|
writev \
|
|
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:9809: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9815 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9846: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9849: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9852: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9855: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9865: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
|
|
ac_tr_func=HAVE_`echo $ac_func | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
else
|
|
LIBOBJS="$LIBOBJS ${ac_func}.o"
|
|
fi
|
|
|
|
if false; then
|
|
|
|
for ac_func in \
|
|
chown \
|
|
copyhostent \
|
|
daemon \
|
|
ecalloc \
|
|
emalloc \
|
|
erealloc \
|
|
estrdup \
|
|
err \
|
|
errx \
|
|
fchown \
|
|
flock \
|
|
fnmatch \
|
|
freehostent \
|
|
getcwd \
|
|
getdtablesize \
|
|
getegid \
|
|
geteuid \
|
|
getgid \
|
|
gethostname \
|
|
getifaddrs \
|
|
getipnodebyaddr \
|
|
getipnodebyname \
|
|
getopt \
|
|
gettimeofday \
|
|
getuid \
|
|
getusershell \
|
|
initgroups \
|
|
innetgr \
|
|
iruserok \
|
|
localtime_r \
|
|
lstat \
|
|
memmove \
|
|
mkstemp \
|
|
putenv \
|
|
rcmd \
|
|
readv \
|
|
recvmsg \
|
|
sendmsg \
|
|
setegid \
|
|
setenv \
|
|
seteuid \
|
|
strcasecmp \
|
|
strdup \
|
|
strerror \
|
|
strftime \
|
|
strlcat \
|
|
strlcpy \
|
|
strlwr \
|
|
strncasecmp \
|
|
strndup \
|
|
strnlen \
|
|
strptime \
|
|
strsep \
|
|
strsep_copy \
|
|
strtok_r \
|
|
strupr \
|
|
swab \
|
|
unsetenv \
|
|
verr \
|
|
verrx \
|
|
vsyslog \
|
|
vwarn \
|
|
vwarnx \
|
|
warn \
|
|
warnx \
|
|
writev \
|
|
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:9950: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9956 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9987: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9990: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9993: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9996: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10006: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
done
|
|
|
|
for ac_func in inet_aton
|
|
do
|
|
echo "$as_me:10021: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_func_$ac_func+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10027 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_INET_H
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_inet_aton) || defined (__stub___inet_aton)
|
|
choke me
|
|
#else
|
|
$ac_func(0,0)
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:10059: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10062: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10065: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10068: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_$ac_func=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_$ac_func=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
|
|
if eval "test \"\${ac_cv_func_$ac_func}\" = yes"; then
|
|
ac_tr_func=HAVE_`echo $ac_func | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:10085: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
else
|
|
echo "$as_me:10088: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
LIBOBJS="$LIBOBJS ${ac_func}.o"
|
|
fi
|
|
done
|
|
if false; then
|
|
|
|
for ac_func in inet_aton
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:10098: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10104 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:10135: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10138: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10141: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10144: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10154: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
|
|
for ac_func in inet_ntop
|
|
do
|
|
echo "$as_me:10168: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_func_$ac_func+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10174 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_INET_H
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_inet_ntop) || defined (__stub___inet_ntop)
|
|
choke me
|
|
#else
|
|
$ac_func(0, 0, 0, 0)
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:10206: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10209: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10212: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10215: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_$ac_func=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_$ac_func=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
|
|
if eval "test \"\${ac_cv_func_$ac_func}\" = yes"; then
|
|
ac_tr_func=HAVE_`echo $ac_func | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:10232: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
else
|
|
echo "$as_me:10235: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
LIBOBJS="$LIBOBJS ${ac_func}.o"
|
|
fi
|
|
done
|
|
if false; then
|
|
|
|
for ac_func in inet_ntop
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:10245: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10251 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:10282: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10285: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10288: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10291: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10301: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
|
|
for ac_func in inet_pton
|
|
do
|
|
echo "$as_me:10315: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_func_$ac_func+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10321 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_INET_H
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_inet_pton) || defined (__stub___inet_pton)
|
|
choke me
|
|
#else
|
|
$ac_func(0,0,0)
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:10353: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10356: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10359: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10362: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_$ac_func=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_$ac_func=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
|
|
if eval "test \"\${ac_cv_func_$ac_func}\" = yes"; then
|
|
ac_tr_func=HAVE_`echo $ac_func | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:10379: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
else
|
|
echo "$as_me:10382: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
LIBOBJS="$LIBOBJS ${ac_func}.o"
|
|
fi
|
|
done
|
|
if false; then
|
|
|
|
for ac_func in inet_pton
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:10392: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10398 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:10429: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10432: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10435: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10438: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10448: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
|
|
echo "$as_me:10460: checking for sa_len in struct sockaddr" >&5
|
|
echo $ECHO_N "checking for sa_len in struct sockaddr... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_sockaddr_sa_len+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10467 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct sockaddr x; x.sa_len;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10480: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10483: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10486: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10489: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_sockaddr_sa_len=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_sockaddr_sa_len=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10499: result: $ac_cv_type_struct_sockaddr_sa_len" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_sockaddr_sa_len" >&6
|
|
if test "$ac_cv_type_struct_sockaddr_sa_len" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_SOCKADDR_SA_LEN 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_getnameinfo" = "yes"; then
|
|
|
|
echo "$as_me:10511: checking if getnameinfo is broken" >&5
|
|
echo $ECHO_N "checking if getnameinfo is broken... $ECHO_C" >&6
|
|
if test "${ac_cv_func_getnameinfo_broken+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:10517: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10522 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <netdb.h>
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
struct sockaddr_in sin;
|
|
char host[256];
|
|
memset(&sin, 0, sizeof(sin));
|
|
#ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
|
|
sin.sin_len = sizeof(sin);
|
|
#endif
|
|
sin.sin_family = AF_INET;
|
|
sin.sin_addr.s_addr = 0xffffffff;
|
|
sin.sin_port = 0;
|
|
return getnameinfo((struct sockaddr*)&sin, sizeof(sin), host, sizeof(host),
|
|
NULL, 0, 0);
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:10548: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10551: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10553: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10556: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_getnameinfo_broken=no
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_getnameinfo_broken=yes
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:10568: result: $ac_cv_func_getnameinfo_broken" >&5
|
|
echo "${ECHO_T}$ac_cv_func_getnameinfo_broken" >&6
|
|
if test "$ac_cv_func_getnameinfo_broken" = yes; then
|
|
LIBOBJS="$LIBOBJS getnameinfo.o"
|
|
fi
|
|
fi
|
|
|
|
if test "$ac_cv_func_getaddrinfo" = "yes"; then
|
|
|
|
echo "$as_me:10577: checking if getaddrinfo handles numeric services" >&5
|
|
echo $ECHO_N "checking if getaddrinfo handles numeric services... $ECHO_C" >&6
|
|
if test "${ac_cv_func_getaddrinfo_numserv+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:10583: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10588 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netdb.h>
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
struct addrinfo hints, *ai;
|
|
memset(&hints, 0, sizeof(hints));
|
|
hints.ai_flags = AI_PASSIVE;
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
hints.ai_family = PF_UNSPEC;
|
|
if(getaddrinfo(NULL, "17", &hints, &ai) == EAI_SERVICE)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:10610: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10613: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10615: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10618: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_getaddrinfo_numserv=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_getaddrinfo_numserv=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:10630: result: $ac_cv_func_getaddrinfo_numserv" >&5
|
|
echo "${ECHO_T}$ac_cv_func_getaddrinfo_numserv" >&6
|
|
if test "$ac_cv_func_getaddrinfo_numserv" = no; then
|
|
LIBOBJS="$LIBOBJS getaddrinfo.o freeaddrinfo.o"
|
|
fi
|
|
fi
|
|
|
|
if test "$ac_cv_func_setenv+set" != set -o "$ac_cv_func_setenv" = yes; then
|
|
echo "$as_me:10638: checking if setenv needs a prototype" >&5
|
|
echo $ECHO_N "checking if setenv needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_setenv_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10644 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int setenv (struct foo*);
|
|
setenv(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10659: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10662: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10665: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10668: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_setenv_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_setenv_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10678: result: $ac_cv_func_setenv_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_setenv_noproto" >&6
|
|
|
|
if test "$ac_cv_func_setenv_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_SETENV_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_unsetenv+set" != set -o "$ac_cv_func_unsetenv" = yes; then
|
|
echo "$as_me:10692: checking if unsetenv needs a prototype" >&5
|
|
echo $ECHO_N "checking if unsetenv needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_unsetenv_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10698 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int unsetenv (struct foo*);
|
|
unsetenv(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10713: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10716: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10719: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10722: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_unsetenv_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_unsetenv_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10732: result: $ac_cv_func_unsetenv_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_unsetenv_noproto" >&6
|
|
|
|
if test "$ac_cv_func_unsetenv_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_UNSETENV_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_gethostname+set" != set -o "$ac_cv_func_gethostname" = yes; then
|
|
echo "$as_me:10746: checking if gethostname needs a prototype" >&5
|
|
echo $ECHO_N "checking if gethostname needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_gethostname_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10752 "configure"
|
|
#include "confdefs.h"
|
|
#include <unistd.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int gethostname (struct foo*);
|
|
gethostname(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10767: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10770: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10773: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10776: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_gethostname_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_gethostname_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10786: result: $ac_cv_func_gethostname_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_gethostname_noproto" >&6
|
|
|
|
if test "$ac_cv_func_gethostname_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_GETHOSTNAME_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_mkstemp+set" != set -o "$ac_cv_func_mkstemp" = yes; then
|
|
echo "$as_me:10800: checking if mkstemp needs a prototype" >&5
|
|
echo $ECHO_N "checking if mkstemp needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_mkstemp_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10806 "configure"
|
|
#include "confdefs.h"
|
|
#include <unistd.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int mkstemp (struct foo*);
|
|
mkstemp(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10821: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10824: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10827: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10830: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_mkstemp_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_mkstemp_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10840: result: $ac_cv_func_mkstemp_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_mkstemp_noproto" >&6
|
|
|
|
if test "$ac_cv_func_mkstemp_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_MKSTEMP_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_getusershell+set" != set -o "$ac_cv_func_getusershell" = yes; then
|
|
echo "$as_me:10854: checking if getusershell needs a prototype" >&5
|
|
echo $ECHO_N "checking if getusershell needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_getusershell_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10860 "configure"
|
|
#include "confdefs.h"
|
|
#include <unistd.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int getusershell (struct foo*);
|
|
getusershell(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10875: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10878: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10881: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10884: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_getusershell_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_getusershell_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10894: result: $ac_cv_func_getusershell_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_getusershell_noproto" >&6
|
|
|
|
if test "$ac_cv_func_getusershell_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_GETUSERSHELL_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_inet_aton+set" != set -o "$ac_cv_func_inet_aton" = yes; then
|
|
echo "$as_me:10908: checking if inet_aton needs a prototype" >&5
|
|
echo $ECHO_N "checking if inet_aton needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_inet_aton_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10914 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_INET_H
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int inet_aton (struct foo*);
|
|
inet_aton(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10941: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10944: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10947: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10950: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_inet_aton_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_inet_aton_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10960: result: $ac_cv_func_inet_aton_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_inet_aton_noproto" >&6
|
|
|
|
if test "$ac_cv_func_inet_aton_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_INET_ATON_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:10973: checking for crypt" >&5
|
|
echo $ECHO_N "checking for crypt... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_crypt+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_crypt\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" crypt; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10991 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
crypt()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:11003: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11006: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:11009: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11012: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_crypt=$ac_lib; else ac_cv_funclib_crypt=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_crypt=\${ac_cv_funclib_crypt-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_crypt"
|
|
|
|
if false; then
|
|
|
|
for ac_func in crypt
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:11034: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11040 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:11071: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11074: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:11077: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11080: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11090: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# crypt
|
|
eval "ac_tr_func=HAVE_`echo crypt | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_crypt=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_crypt=yes"
|
|
eval "LIB_crypt="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:11114: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_crypt=no"
|
|
eval "LIB_crypt="
|
|
echo "$as_me:11120: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_crypt=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:11134: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:11139: checking if gethostbyname is compatible with system prototype" >&5
|
|
echo $ECHO_N "checking if gethostbyname is compatible with system prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_gethostbyname_proto_compat+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11145 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_INET_H
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
struct hostent *gethostbyname(const char *);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11173: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11176: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11179: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11182: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_gethostbyname_proto_compat=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_gethostbyname_proto_compat=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11192: result: $ac_cv_func_gethostbyname_proto_compat" >&5
|
|
echo "${ECHO_T}$ac_cv_func_gethostbyname_proto_compat" >&6
|
|
|
|
if test "$ac_cv_func_gethostbyname_proto_compat" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define GETHOSTBYNAME_PROTO_COMPATIBLE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:11203: checking if gethostbyaddr is compatible with system prototype" >&5
|
|
echo $ECHO_N "checking if gethostbyaddr is compatible with system prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_gethostbyaddr_proto_compat+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11209 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_INET_H
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
struct hostent *gethostbyaddr(const void *, size_t, int);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11237: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11240: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11243: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11246: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_gethostbyaddr_proto_compat=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_gethostbyaddr_proto_compat=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11256: result: $ac_cv_func_gethostbyaddr_proto_compat" >&5
|
|
echo "${ECHO_T}$ac_cv_func_gethostbyaddr_proto_compat" >&6
|
|
|
|
if test "$ac_cv_func_gethostbyaddr_proto_compat" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define GETHOSTBYADDR_PROTO_COMPATIBLE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:11267: checking if getservbyname is compatible with system prototype" >&5
|
|
echo $ECHO_N "checking if getservbyname is compatible with system prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_getservbyname_proto_compat+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11273 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_INET_H
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
struct servent *getservbyname(const char *, const char *);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11301: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11304: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11307: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11310: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_getservbyname_proto_compat=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_getservbyname_proto_compat=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11320: result: $ac_cv_func_getservbyname_proto_compat" >&5
|
|
echo "${ECHO_T}$ac_cv_func_getservbyname_proto_compat" >&6
|
|
|
|
if test "$ac_cv_func_getservbyname_proto_compat" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define GETSERVBYNAME_PROTO_COMPATIBLE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:11331: checking if getsockname is compatible with system prototype" >&5
|
|
echo $ECHO_N "checking if getsockname is compatible with system prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_getsockname_proto_compat+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11337 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int getsockname(int, struct sockaddr*, socklen_t*);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11356: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11359: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11362: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11365: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_getsockname_proto_compat=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_getsockname_proto_compat=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11375: result: $ac_cv_func_getsockname_proto_compat" >&5
|
|
echo "${ECHO_T}$ac_cv_func_getsockname_proto_compat" >&6
|
|
|
|
if test "$ac_cv_func_getsockname_proto_compat" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define GETSOCKNAME_PROTO_COMPATIBLE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:11386: checking if openlog is compatible with system prototype" >&5
|
|
echo $ECHO_N "checking if openlog is compatible with system prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_openlog_proto_compat+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11392 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_SYSLOG_H
|
|
#include <syslog.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
void openlog(const char *, int, int);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11408: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11411: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11414: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11417: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_openlog_proto_compat=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_openlog_proto_compat=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11427: result: $ac_cv_func_openlog_proto_compat" >&5
|
|
echo "${ECHO_T}$ac_cv_func_openlog_proto_compat" >&6
|
|
|
|
if test "$ac_cv_func_openlog_proto_compat" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define OPENLOG_PROTO_COMPATIBLE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_crypt+set" != set -o "$ac_cv_func_crypt" = yes; then
|
|
echo "$as_me:11439: checking if crypt needs a prototype" >&5
|
|
echo $ECHO_N "checking if crypt needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_crypt_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11445 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_CRYPT_H
|
|
#include <crypt.h>
|
|
#endif
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int crypt (struct foo*);
|
|
crypt(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11467: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11470: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11473: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11476: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_crypt_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_crypt_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11486: result: $ac_cv_func_crypt_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_crypt_noproto" >&6
|
|
|
|
if test "$ac_cv_func_crypt_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_CRYPT_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_strtok_r+set" != set -o "$ac_cv_func_strtok_r" = yes; then
|
|
echo "$as_me:11500: checking if strtok_r needs a prototype" >&5
|
|
echo $ECHO_N "checking if strtok_r needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_strtok_r_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11506 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <string.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int strtok_r (struct foo*);
|
|
strtok_r(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11523: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11526: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11529: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11532: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_strtok_r_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_strtok_r_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11542: result: $ac_cv_func_strtok_r_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_strtok_r_noproto" >&6
|
|
|
|
if test "$ac_cv_func_strtok_r_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_STRTOK_R_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_strsep+set" != set -o "$ac_cv_func_strsep" = yes; then
|
|
echo "$as_me:11556: checking if strsep needs a prototype" >&5
|
|
echo $ECHO_N "checking if strsep needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_strsep_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11562 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <string.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int strsep (struct foo*);
|
|
strsep(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11579: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11582: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11585: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11588: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_strsep_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_strsep_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11598: result: $ac_cv_func_strsep_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_strsep_noproto" >&6
|
|
|
|
if test "$ac_cv_func_strsep_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_STRSEP_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:11611: checking for h_errno" >&5
|
|
echo $ECHO_N "checking for h_errno... $ECHO_C" >&6
|
|
if test "${ac_cv_var_h_errno+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11618 "configure"
|
|
#include "confdefs.h"
|
|
extern int h_errno;
|
|
int foo() { return h_errno; }
|
|
int
|
|
main ()
|
|
{
|
|
foo()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:11631: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11634: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:11637: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11640: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_var_h_errno=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_var_h_errno=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
ac_foo=`eval echo \\$ac_cv_var_h_errno`
|
|
echo "$as_me:11653: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_H_ERRNO 1
|
|
EOF
|
|
|
|
echo "$as_me:11661: checking if h_errno is properly declared" >&5
|
|
echo $ECHO_N "checking if h_errno is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var_h_errno_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11668 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
extern struct { int foo; } h_errno;
|
|
int
|
|
main ()
|
|
{
|
|
h_errno.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11686: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11689: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11692: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11695: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var_h_errno_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var_h_errno_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:11707: result: $ac_cv_var_h_errno_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var_h_errno_declaration" >&6
|
|
if eval "test \"\$ac_cv_var_h_errno_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_H_ERRNO_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:11719: checking for h_errlist" >&5
|
|
echo $ECHO_N "checking for h_errlist... $ECHO_C" >&6
|
|
if test "${ac_cv_var_h_errlist+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11726 "configure"
|
|
#include "confdefs.h"
|
|
extern int h_errlist;
|
|
int foo() { return h_errlist; }
|
|
int
|
|
main ()
|
|
{
|
|
foo()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:11739: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11742: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:11745: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11748: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_var_h_errlist=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_var_h_errlist=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
ac_foo=`eval echo \\$ac_cv_var_h_errlist`
|
|
echo "$as_me:11761: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_H_ERRLIST 1
|
|
EOF
|
|
|
|
echo "$as_me:11769: checking if h_errlist is properly declared" >&5
|
|
echo $ECHO_N "checking if h_errlist is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var_h_errlist_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11776 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
extern struct { int foo; } h_errlist;
|
|
int
|
|
main ()
|
|
{
|
|
h_errlist.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11791: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11794: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11797: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11800: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var_h_errlist_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var_h_errlist_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:11812: result: $ac_cv_var_h_errlist_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var_h_errlist_declaration" >&6
|
|
if eval "test \"\$ac_cv_var_h_errlist_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_H_ERRLIST_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:11824: checking for h_nerr" >&5
|
|
echo $ECHO_N "checking for h_nerr... $ECHO_C" >&6
|
|
if test "${ac_cv_var_h_nerr+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11831 "configure"
|
|
#include "confdefs.h"
|
|
extern int h_nerr;
|
|
int foo() { return h_nerr; }
|
|
int
|
|
main ()
|
|
{
|
|
foo()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:11844: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11847: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:11850: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11853: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_var_h_nerr=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_var_h_nerr=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
ac_foo=`eval echo \\$ac_cv_var_h_nerr`
|
|
echo "$as_me:11866: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_H_NERR 1
|
|
EOF
|
|
|
|
echo "$as_me:11874: checking if h_nerr is properly declared" >&5
|
|
echo $ECHO_N "checking if h_nerr is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var_h_nerr_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11881 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_NETDB_H
|
|
#include <netdb.h>
|
|
#endif
|
|
extern struct { int foo; } h_nerr;
|
|
int
|
|
main ()
|
|
{
|
|
h_nerr.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11896: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11899: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11902: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11905: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var_h_nerr_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var_h_nerr_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:11917: result: $ac_cv_var_h_nerr_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var_h_nerr_declaration" >&6
|
|
if eval "test \"\$ac_cv_var_h_nerr_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_H_NERR_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:11929: checking for __progname" >&5
|
|
echo $ECHO_N "checking for __progname... $ECHO_C" >&6
|
|
if test "${ac_cv_var___progname+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11936 "configure"
|
|
#include "confdefs.h"
|
|
extern int __progname;
|
|
int foo() { return __progname; }
|
|
int
|
|
main ()
|
|
{
|
|
foo()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:11949: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11952: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:11955: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11958: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_var___progname=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_var___progname=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
ac_foo=`eval echo \\$ac_cv_var___progname`
|
|
echo "$as_me:11971: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE___PROGNAME 1
|
|
EOF
|
|
|
|
echo "$as_me:11979: checking if __progname is properly declared" >&5
|
|
echo $ECHO_N "checking if __progname is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var___progname_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11986 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_ERR_H
|
|
#include <err.h>
|
|
#endif
|
|
extern struct { int foo; } __progname;
|
|
int
|
|
main ()
|
|
{
|
|
__progname.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12001: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12004: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12007: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12010: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var___progname_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var___progname_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:12022: result: $ac_cv_var___progname_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var___progname_declaration" >&6
|
|
if eval "test \"\$ac_cv_var___progname_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE___PROGNAME_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:12034: checking if optarg is properly declared" >&5
|
|
echo $ECHO_N "checking if optarg is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var_optarg_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12041 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
extern struct { int foo; } optarg;
|
|
int
|
|
main ()
|
|
{
|
|
optarg.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12057: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12060: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12063: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12066: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var_optarg_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var_optarg_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:12078: result: $ac_cv_var_optarg_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var_optarg_declaration" >&6
|
|
if eval "test \"\$ac_cv_var_optarg_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_OPTARG_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12088: checking if optind is properly declared" >&5
|
|
echo $ECHO_N "checking if optind is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var_optind_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12095 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
extern struct { int foo; } optind;
|
|
int
|
|
main ()
|
|
{
|
|
optind.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12111: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12114: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12117: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12120: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var_optind_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var_optind_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:12132: result: $ac_cv_var_optind_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var_optind_declaration" >&6
|
|
if eval "test \"\$ac_cv_var_optind_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_OPTIND_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12142: checking if opterr is properly declared" >&5
|
|
echo $ECHO_N "checking if opterr is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var_opterr_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12149 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
extern struct { int foo; } opterr;
|
|
int
|
|
main ()
|
|
{
|
|
opterr.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12165: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12168: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12171: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12174: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var_opterr_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var_opterr_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:12186: result: $ac_cv_var_opterr_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var_opterr_declaration" >&6
|
|
if eval "test \"\$ac_cv_var_opterr_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_OPTERR_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12196: checking if optopt is properly declared" >&5
|
|
echo $ECHO_N "checking if optopt is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var_optopt_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12203 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
extern struct { int foo; } optopt;
|
|
int
|
|
main ()
|
|
{
|
|
optopt.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12219: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12222: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12225: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12228: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var_optopt_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var_optopt_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:12240: result: $ac_cv_var_optopt_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var_optopt_declaration" >&6
|
|
if eval "test \"\$ac_cv_var_optopt_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_OPTOPT_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12250: checking if environ is properly declared" >&5
|
|
echo $ECHO_N "checking if environ is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var_environ_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12257 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
extern struct { int foo; } environ;
|
|
int
|
|
main ()
|
|
{
|
|
environ.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12270: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12273: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12276: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12279: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var_environ_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var_environ_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:12291: result: $ac_cv_var_environ_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var_environ_declaration" >&6
|
|
if eval "test \"\$ac_cv_var_environ_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_ENVIRON_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12301: checking for tm_gmtoff in struct tm" >&5
|
|
echo $ECHO_N "checking for tm_gmtoff in struct tm... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_tm_tm_gmtoff+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12308 "configure"
|
|
#include "confdefs.h"
|
|
#include <time.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct tm x; x.tm_gmtoff;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12320: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12323: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12326: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12329: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_tm_tm_gmtoff=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_tm_tm_gmtoff=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12339: result: $ac_cv_type_struct_tm_tm_gmtoff" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_tm_tm_gmtoff" >&6
|
|
if test "$ac_cv_type_struct_tm_tm_gmtoff" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_TM_TM_GMTOFF 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12349: checking for tm_zone in struct tm" >&5
|
|
echo $ECHO_N "checking for tm_zone in struct tm... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_tm_tm_zone+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12356 "configure"
|
|
#include "confdefs.h"
|
|
#include <time.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct tm x; x.tm_zone;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12368: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12371: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12374: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12377: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_tm_tm_zone=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_tm_tm_zone=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12387: result: $ac_cv_type_struct_tm_tm_zone" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_tm_tm_zone" >&6
|
|
if test "$ac_cv_type_struct_tm_tm_zone" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_TM_TM_ZONE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12397: checking for timezone" >&5
|
|
echo $ECHO_N "checking for timezone... $ECHO_C" >&6
|
|
if test "${ac_cv_var_timezone+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12404 "configure"
|
|
#include "confdefs.h"
|
|
extern int timezone;
|
|
int foo() { return timezone; }
|
|
int
|
|
main ()
|
|
{
|
|
foo()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:12417: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12420: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:12423: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12426: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_var_timezone=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_var_timezone=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
ac_foo=`eval echo \\$ac_cv_var_timezone`
|
|
echo "$as_me:12439: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_TIMEZONE 1
|
|
EOF
|
|
|
|
echo "$as_me:12447: checking if timezone is properly declared" >&5
|
|
echo $ECHO_N "checking if timezone is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var_timezone_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12454 "configure"
|
|
#include "confdefs.h"
|
|
#include <time.h>
|
|
extern struct { int foo; } timezone;
|
|
int
|
|
main ()
|
|
{
|
|
timezone.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12467: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12470: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12473: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12476: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var_timezone_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var_timezone_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:12488: result: $ac_cv_var_timezone_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var_timezone_declaration" >&6
|
|
if eval "test \"\$ac_cv_var_timezone_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_TIMEZONE_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cv=`echo "sa_family_t" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:12501: checking for sa_family_t" >&5
|
|
echo $ECHO_N "checking for sa_family_t... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12507 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <sys/socket.h>
|
|
int
|
|
main ()
|
|
{
|
|
sa_family_t foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12524: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12527: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12530: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12533: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:12544: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo sa_family_t | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:12549: checking for sa_family_t" >&5
|
|
echo $ECHO_N "checking for sa_family_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_sa_family_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12555 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((sa_family_t *) 0)
|
|
return 0;
|
|
if (sizeof (sa_family_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12570: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12573: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12576: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12579: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_sa_family_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_sa_family_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12589: result: $ac_cv_type_sa_family_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_sa_family_t" >&6
|
|
if test $ac_cv_type_sa_family_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_SA_FAMILY_T 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "socklen_t" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:12608: checking for socklen_t" >&5
|
|
echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12614 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <sys/socket.h>
|
|
int
|
|
main ()
|
|
{
|
|
socklen_t foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12631: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12634: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12637: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12640: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:12651: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo socklen_t | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:12656: checking for socklen_t" >&5
|
|
echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_socklen_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12662 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((socklen_t *) 0)
|
|
return 0;
|
|
if (sizeof (socklen_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12677: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12680: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12683: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12686: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_socklen_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_socklen_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12696: result: $ac_cv_type_socklen_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_socklen_t" >&6
|
|
if test $ac_cv_type_socklen_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_SOCKLEN_T 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "struct sockaddr" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:12715: checking for struct sockaddr" >&5
|
|
echo $ECHO_N "checking for struct sockaddr... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12721 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <sys/socket.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct sockaddr foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12738: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12741: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12744: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12747: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:12758: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo struct sockaddr | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:12763: checking for struct sockaddr" >&5
|
|
echo $ECHO_N "checking for struct sockaddr... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_sockaddr+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12769 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((struct sockaddr *) 0)
|
|
return 0;
|
|
if (sizeof (struct sockaddr))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12784: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12787: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12790: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12793: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_sockaddr=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_sockaddr=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12803: result: $ac_cv_type_struct_sockaddr" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_sockaddr" >&6
|
|
if test $ac_cv_type_struct_sockaddr = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_STRUCT_SOCKADDR 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "struct sockaddr_storage" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:12822: checking for struct sockaddr_storage" >&5
|
|
echo $ECHO_N "checking for struct sockaddr_storage... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12828 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <sys/socket.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct sockaddr_storage foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12845: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12848: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12851: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12854: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:12865: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo struct sockaddr_storage | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:12870: checking for struct sockaddr_storage" >&5
|
|
echo $ECHO_N "checking for struct sockaddr_storage... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_sockaddr_storage+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12876 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((struct sockaddr_storage *) 0)
|
|
return 0;
|
|
if (sizeof (struct sockaddr_storage))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12891: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12894: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12897: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12900: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_sockaddr_storage=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_sockaddr_storage=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12910: result: $ac_cv_type_struct_sockaddr_storage" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_sockaddr_storage" >&6
|
|
if test $ac_cv_type_struct_sockaddr_storage = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_STRUCT_SOCKADDR_STORAGE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "struct addrinfo" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:12929: checking for struct addrinfo" >&5
|
|
echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12935 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <netdb.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct addrinfo foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12952: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12955: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12958: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12961: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:12972: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo struct addrinfo | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:12977: checking for struct addrinfo" >&5
|
|
echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_addrinfo+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12983 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((struct addrinfo *) 0)
|
|
return 0;
|
|
if (sizeof (struct addrinfo))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12998: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13001: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13004: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13007: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_addrinfo=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_addrinfo=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:13017: result: $ac_cv_type_struct_addrinfo" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_addrinfo" >&6
|
|
if test $ac_cv_type_struct_addrinfo = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_STRUCT_ADDRINFO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "struct ifaddrs" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:13036: checking for struct ifaddrs" >&5
|
|
echo $ECHO_N "checking for struct ifaddrs... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13042 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <ifaddrs.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct ifaddrs foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13059: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13062: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13065: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13068: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:13079: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo struct ifaddrs | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:13084: checking for struct ifaddrs" >&5
|
|
echo $ECHO_N "checking for struct ifaddrs... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_ifaddrs+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13090 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((struct ifaddrs *) 0)
|
|
return 0;
|
|
if (sizeof (struct ifaddrs))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13105: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13108: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13111: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13114: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_ifaddrs=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_ifaddrs=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:13124: result: $ac_cv_type_struct_ifaddrs" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_ifaddrs" >&6
|
|
if test $ac_cv_type_struct_ifaddrs = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_STRUCT_IFADDRS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13142: checking for struct winsize" >&5
|
|
echo $ECHO_N "checking for struct winsize... $ECHO_C" >&6
|
|
if test "${ac_cv_struct_winsize+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
ac_cv_struct_winsize=no
|
|
for i in sys/termios.h sys/ioctl.h; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13151 "configure"
|
|
#include "confdefs.h"
|
|
#include <$i>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "struct[ ]*winsize" >/dev/null 2>&1; then
|
|
ac_cv_struct_winsize=yes; break
|
|
fi
|
|
rm -f conftest*
|
|
done
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_struct_winsize" = "yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_WINSIZE 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:13172: result: $ac_cv_struct_winsize" >&5
|
|
echo "${ECHO_T}$ac_cv_struct_winsize" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13175 "configure"
|
|
#include "confdefs.h"
|
|
#include <termios.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "ws_xpixel" >/dev/null 2>&1; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_WS_XPIXEL 1
|
|
EOF
|
|
|
|
fi
|
|
rm -f conftest*
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13191 "configure"
|
|
#include "confdefs.h"
|
|
#include <termios.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "ws_ypixel" >/dev/null 2>&1; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_WS_YPIXEL 1
|
|
EOF
|
|
|
|
fi
|
|
rm -f conftest*
|
|
|
|
echo "$as_me:13206: checking for struct spwd" >&5
|
|
echo $ECHO_N "checking for struct spwd... $ECHO_C" >&6
|
|
if test "${ac_cv_struct_spwd+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13213 "configure"
|
|
#include "confdefs.h"
|
|
#include <pwd.h>
|
|
#ifdef HAVE_SHADOW_H
|
|
#include <shadow.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
struct spwd foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13228: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13231: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13234: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13237: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_struct_spwd=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_struct_spwd=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:13249: result: $ac_cv_struct_spwd" >&5
|
|
echo "${ECHO_T}$ac_cv_struct_spwd" >&6
|
|
|
|
if test "$ac_cv_struct_spwd" = "yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_SPWD 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
LIB_roken="${LIB_roken} \$(LIB_crypt) \$(LIB_dbopen)"
|
|
|
|
LIB_roken="\$(top_builddir)/lib/vers/libvers.la $LIB_roken"
|
|
|
|
# Check whether --with-openldap or --without-openldap was given.
|
|
if test "${with_openldap+set}" = set; then
|
|
withval="$with_openldap"
|
|
|
|
fi;
|
|
|
|
# Check whether --with-openldap-lib or --without-openldap-lib was given.
|
|
if test "${with_openldap_lib+set}" = set; then
|
|
withval="$with_openldap_lib"
|
|
if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
{ { echo "$as_me:13274: error: No argument for --with-openldap-lib" >&5
|
|
echo "$as_me: error: No argument for --with-openldap-lib" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
elif test "X$with_openldap" = "X"; then
|
|
with_openldap=yes
|
|
fi
|
|
fi;
|
|
|
|
# Check whether --with-openldap-include or --without-openldap-include was given.
|
|
if test "${with_openldap_include+set}" = set; then
|
|
withval="$with_openldap_include"
|
|
if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
{ { echo "$as_me:13286: error: No argument for --with-openldap-include" >&5
|
|
echo "$as_me: error: No argument for --with-openldap-include" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
elif test "X$with_openldap" = "X"; then
|
|
with_openldap=yes
|
|
fi
|
|
fi;
|
|
|
|
echo "$as_me:13294: checking for openldap" >&5
|
|
echo $ECHO_N "checking for openldap... $ECHO_C" >&6
|
|
|
|
case "$with_openldap" in
|
|
yes) ;;
|
|
no) ;;
|
|
"") ;;
|
|
*) if test "$with_openldap_include" = ""; then
|
|
with_openldap_include="$with_openldap/include"
|
|
fi
|
|
if test "$with_openldap_lib" = ""; then
|
|
with_openldap_lib="$with_openldap/lib$abilibdirext"
|
|
fi
|
|
;;
|
|
esac
|
|
header_dirs=
|
|
lib_dirs=
|
|
d=''
|
|
for i in $d; do
|
|
header_dirs="$header_dirs $i/include"
|
|
lib_dirs="$lib_dirs $i/lib$abilibdirext"
|
|
done
|
|
|
|
case "$with_openldap_include" in
|
|
yes) ;;
|
|
no) ;;
|
|
*) header_dirs="$with_openldap_include $header_dirs";;
|
|
esac
|
|
case "$with_openldap_lib" in
|
|
yes) ;;
|
|
no) ;;
|
|
*) lib_dirs="$with_openldap_lib $lib_dirs";;
|
|
esac
|
|
|
|
save_CFLAGS="$CFLAGS"
|
|
save_LIBS="$LIBS"
|
|
ires= lres=
|
|
for i in $header_dirs; do
|
|
CFLAGS="-I$i $save_CFLAGS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13334 "configure"
|
|
#include "confdefs.h"
|
|
#include <lber.h>
|
|
#include <ldap.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13347: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13350: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13353: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13356: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ires=$i;break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
for i in $lib_dirs; do
|
|
LIBS="-L$i -lldap -llber $save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13368 "configure"
|
|
#include "confdefs.h"
|
|
#include <lber.h>
|
|
#include <ldap.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:13381: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13384: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:13387: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13390: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
lres=$i;break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
CFLAGS="$save_CFLAGS"
|
|
LIBS="$save_LIBS"
|
|
|
|
if test "$ires" -a "$lres" -a "$with_openldap" != "no"; then
|
|
openldap_includedir="$ires"
|
|
openldap_libdir="$lres"
|
|
INCLUDE_openldap="-I$openldap_includedir"
|
|
LIB_openldap="-L$openldap_libdir -lldap -llber"
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define OPENLDAP 1
|
|
EOF
|
|
|
|
with_openldap=yes
|
|
echo "$as_me:13413: result: headers $ires, libraries $lres" >&5
|
|
echo "${ECHO_T}headers $ires, libraries $lres" >&6
|
|
else
|
|
INCLUDE_openldap=
|
|
LIB_openldap=
|
|
with_openldap=no
|
|
echo "$as_me:13419: result: $with_openldap" >&5
|
|
echo "${ECHO_T}$with_openldap" >&6
|
|
fi
|
|
|
|
if test "$openldap_libdir"; then
|
|
LIB_openldap="-R $openldap_libdir $LIB_openldap"
|
|
fi
|
|
|
|
# Check whether --with-krb4 or --without-krb4 was given.
|
|
if test "${with_krb4+set}" = set; then
|
|
withval="$with_krb4"
|
|
|
|
fi;
|
|
|
|
# Check whether --with-krb4-lib or --without-krb4-lib was given.
|
|
if test "${with_krb4_lib+set}" = set; then
|
|
withval="$with_krb4_lib"
|
|
if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
{ { echo "$as_me:13437: error: No argument for --with-krb4-lib" >&5
|
|
echo "$as_me: error: No argument for --with-krb4-lib" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
elif test "X$with_krb4" = "X"; then
|
|
with_krb4=yes
|
|
fi
|
|
fi;
|
|
|
|
# Check whether --with-krb4-include or --without-krb4-include was given.
|
|
if test "${with_krb4_include+set}" = set; then
|
|
withval="$with_krb4_include"
|
|
if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
{ { echo "$as_me:13449: error: No argument for --with-krb4-include" >&5
|
|
echo "$as_me: error: No argument for --with-krb4-include" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
elif test "X$with_krb4" = "X"; then
|
|
with_krb4=yes
|
|
fi
|
|
fi;
|
|
|
|
echo "$as_me:13457: checking for krb4" >&5
|
|
echo $ECHO_N "checking for krb4... $ECHO_C" >&6
|
|
|
|
case "$with_krb4" in
|
|
yes) ;;
|
|
no) ;;
|
|
"") ;;
|
|
*) if test "$with_krb4_include" = ""; then
|
|
with_krb4_include="$with_krb4/include"
|
|
fi
|
|
if test "$with_krb4_lib" = ""; then
|
|
with_krb4_lib="$with_krb4/lib$abilibdirext"
|
|
fi
|
|
;;
|
|
esac
|
|
header_dirs=
|
|
lib_dirs=
|
|
d='/usr/athena'
|
|
for i in $d; do
|
|
header_dirs="$header_dirs $i/include"
|
|
lib_dirs="$lib_dirs $i/lib$abilibdirext"
|
|
done
|
|
|
|
case "$with_krb4_include" in
|
|
yes) ;;
|
|
no) ;;
|
|
*) header_dirs="$with_krb4_include $header_dirs";;
|
|
esac
|
|
case "$with_krb4_lib" in
|
|
yes) ;;
|
|
no) ;;
|
|
*) lib_dirs="$with_krb4_lib $lib_dirs";;
|
|
esac
|
|
|
|
save_CFLAGS="$CFLAGS"
|
|
save_LIBS="$LIBS"
|
|
ires= lres=
|
|
for i in $header_dirs; do
|
|
CFLAGS="-I$i $save_CFLAGS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13497 "configure"
|
|
#include "confdefs.h"
|
|
#include <krb.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13509: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13512: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13515: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13518: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ires=$i;break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
for i in $lib_dirs; do
|
|
LIBS="-L$i -lkrb -ldes $save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13530 "configure"
|
|
#include "confdefs.h"
|
|
#include <krb.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:13542: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13545: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:13548: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13551: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
lres=$i;break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
CFLAGS="$save_CFLAGS"
|
|
LIBS="$save_LIBS"
|
|
|
|
if test "$ires" -a "$lres" -a "$with_krb4" != "no"; then
|
|
krb4_includedir="$ires"
|
|
krb4_libdir="$lres"
|
|
INCLUDE_krb4="-I$krb4_includedir"
|
|
LIB_krb4="-L$krb4_libdir -lkrb"
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define KRB4 1
|
|
EOF
|
|
|
|
with_krb4=yes
|
|
echo "$as_me:13574: result: headers $ires, libraries $lres" >&5
|
|
echo "${ECHO_T}headers $ires, libraries $lres" >&6
|
|
else
|
|
INCLUDE_krb4=
|
|
LIB_krb4=
|
|
with_krb4=no
|
|
echo "$as_me:13580: result: $with_krb4" >&5
|
|
echo "${ECHO_T}$with_krb4" >&6
|
|
fi
|
|
|
|
LIB_kdb=
|
|
if test "$with_krb4" != "no"; then
|
|
save_CFLAGS="$CFLAGS"
|
|
CFLAGS="$CFLAGS $INCLUDE_krb4"
|
|
save_LIBS="$LIBS"
|
|
LIBS="$LIB_krb4 -ldes $LIBS"
|
|
EXTRA_LIB45=lib45.a
|
|
|
|
echo "$as_me:13592: checking for four valued krb_put_int" >&5
|
|
echo $ECHO_N "checking for four valued krb_put_int... $ECHO_C" >&6
|
|
if test "${ac_cv_func_krb_put_int_four+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13598 "configure"
|
|
#include "confdefs.h"
|
|
#include <krb.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
char tmp[4];
|
|
krb_put_int(17, tmp, 4, sizeof(tmp));
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13612: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13615: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13618: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13621: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_krb_put_int_four=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_krb_put_int_four=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
echo "$as_me:13632: result: $ac_cv_func_krb_put_int_four" >&5
|
|
echo "${ECHO_T}$ac_cv_func_krb_put_int_four" >&6
|
|
if test "$ac_cv_func_krb_put_int_four" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_FOUR_VALUED_KRB_PUT_INT 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13642: checking for KRB_VERIFY_SECURE" >&5
|
|
echo $ECHO_N "checking for KRB_VERIFY_SECURE... $ECHO_C" >&6
|
|
if test "${ac_cv_func_krb_verify_secure+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13648 "configure"
|
|
#include "confdefs.h"
|
|
#include <krb.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
int x = KRB_VERIFY_SECURE
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13661: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13664: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13667: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13670: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_krb_verify_secure=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_krb_verify_secure=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
echo "$as_me:13681: result: $ac_cv_func_krb_verify_secure" >&5
|
|
echo "${ECHO_T}$ac_cv_func_krb_verify_secure" >&6
|
|
if test "$ac_cv_func_krb_verify_secure" != yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define KRB_VERIFY_SECURE 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define KRB_VERIFY_SECURE_FAIL 2
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:13694: checking for KRB_VERIFY_NOT_SECURE" >&5
|
|
echo $ECHO_N "checking for KRB_VERIFY_NOT_SECURE... $ECHO_C" >&6
|
|
if test "${ac_cv_func_krb_verify_not_secure+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13700 "configure"
|
|
#include "confdefs.h"
|
|
#include <krb.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
int x = KRB_VERIFY_NOT_SECURE
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13713: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13716: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13719: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13722: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_krb_verify_not_secure=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_krb_verify_not_secure=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
echo "$as_me:13733: result: $ac_cv_func_krb_verify_not_secure" >&5
|
|
echo "${ECHO_T}$ac_cv_func_krb_verify_not_secure" >&6
|
|
if test "$ac_cv_func_krb_verify_not_secure" != yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define KRB_VERIFY_NOT_SECURE 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13743: checking for krb_enable_debug" >&5
|
|
echo $ECHO_N "checking for krb_enable_debug... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_krb_enable_debug+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_krb_enable_debug\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13761 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
krb_enable_debug()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:13773: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13776: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:13779: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13782: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_krb_enable_debug=$ac_lib; else ac_cv_funclib_krb_enable_debug=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_krb_enable_debug=\${ac_cv_funclib_krb_enable_debug-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_krb_enable_debug"
|
|
|
|
if false; then
|
|
|
|
for ac_func in krb_enable_debug
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:13804: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13810 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:13841: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13844: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:13847: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13850: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:13860: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# krb_enable_debug
|
|
eval "ac_tr_func=HAVE_`echo krb_enable_debug | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_krb_enable_debug=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_krb_enable_debug=yes"
|
|
eval "LIB_krb_enable_debug="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:13884: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_krb_enable_debug=no"
|
|
eval "LIB_krb_enable_debug="
|
|
echo "$as_me:13890: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_krb_enable_debug=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:13904: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_krb_enable_debug"; then
|
|
LIBS="$LIB_krb_enable_debug $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:13913: checking for krb_disable_debug" >&5
|
|
echo $ECHO_N "checking for krb_disable_debug... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_krb_disable_debug+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_krb_disable_debug\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13931 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
krb_disable_debug()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:13943: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13946: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:13949: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13952: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_krb_disable_debug=$ac_lib; else ac_cv_funclib_krb_disable_debug=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_krb_disable_debug=\${ac_cv_funclib_krb_disable_debug-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_krb_disable_debug"
|
|
|
|
if false; then
|
|
|
|
for ac_func in krb_disable_debug
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:13974: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13980 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:14011: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14014: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14017: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14020: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:14030: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# krb_disable_debug
|
|
eval "ac_tr_func=HAVE_`echo krb_disable_debug | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_krb_disable_debug=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_krb_disable_debug=yes"
|
|
eval "LIB_krb_disable_debug="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:14054: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_krb_disable_debug=no"
|
|
eval "LIB_krb_disable_debug="
|
|
echo "$as_me:14060: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_krb_disable_debug=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:14074: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_krb_disable_debug"; then
|
|
LIBS="$LIB_krb_disable_debug $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:14083: checking for krb_get_our_ip_for_realm" >&5
|
|
echo $ECHO_N "checking for krb_get_our_ip_for_realm... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_krb_get_our_ip_for_realm+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_krb_get_our_ip_for_realm\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14101 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
krb_get_our_ip_for_realm()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:14113: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14116: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14119: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14122: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_krb_get_our_ip_for_realm=$ac_lib; else ac_cv_funclib_krb_get_our_ip_for_realm=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_krb_get_our_ip_for_realm=\${ac_cv_funclib_krb_get_our_ip_for_realm-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_krb_get_our_ip_for_realm"
|
|
|
|
if false; then
|
|
|
|
for ac_func in krb_get_our_ip_for_realm
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:14144: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14150 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:14181: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14184: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14187: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14190: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:14200: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# krb_get_our_ip_for_realm
|
|
eval "ac_tr_func=HAVE_`echo krb_get_our_ip_for_realm | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_krb_get_our_ip_for_realm=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_krb_get_our_ip_for_realm=yes"
|
|
eval "LIB_krb_get_our_ip_for_realm="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:14224: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_krb_get_our_ip_for_realm=no"
|
|
eval "LIB_krb_get_our_ip_for_realm="
|
|
echo "$as_me:14230: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_krb_get_our_ip_for_realm=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:14244: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_krb_get_our_ip_for_realm"; then
|
|
LIBS="$LIB_krb_get_our_ip_for_realm $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:14253: checking for krb_mk_req with const arguments" >&5
|
|
echo $ECHO_N "checking for krb_mk_req with const arguments... $ECHO_C" >&6
|
|
if test "${ac_cv_func_krb_mk_req_const+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14259 "configure"
|
|
#include "confdefs.h"
|
|
#include <krb.h>
|
|
int krb_mk_req(KTEXT a, const char *s, const char *i,
|
|
const char *r, int32_t checksum)
|
|
{ return 17; }
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:14274: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14277: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:14280: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14283: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_krb_mk_req_const=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_krb_mk_req_const=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
echo "$as_me:14294: result: $ac_cv_func_krb_mk_req_const" >&5
|
|
echo "${ECHO_T}$ac_cv_func_krb_mk_req_const" >&6
|
|
if test "$ac_cv_func_krb_mk_req_const" = "yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define KRB_MK_REQ_CONST 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
LIBS="$save_LIBS"
|
|
CFLAGS="$save_CFLAGS"
|
|
LIB_kdb="-lkdb -lkrb"
|
|
if test "$krb4_libdir"; then
|
|
LIB_krb4="-R $krb4_libdir $LIB_krb4"
|
|
LIB_kdb="-R $krb4_libdir -L$krb4_libdir $LIB_kdb"
|
|
fi
|
|
fi
|
|
|
|
if test "$with_krb4" != "no"; then
|
|
KRB4_TRUE=
|
|
KRB4_FALSE='#'
|
|
else
|
|
KRB4_TRUE='#'
|
|
KRB4_FALSE=
|
|
fi
|
|
|
|
if true; then
|
|
KRB5_TRUE=
|
|
KRB5_FALSE='#'
|
|
else
|
|
KRB5_TRUE='#'
|
|
KRB5_FALSE=
|
|
fi
|
|
|
|
if true; then
|
|
do_roken_rename_TRUE=
|
|
do_roken_rename_FALSE='#'
|
|
else
|
|
do_roken_rename_TRUE='#'
|
|
do_roken_rename_FALSE=
|
|
fi
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define KRB5 1
|
|
EOF
|
|
|
|
# Check whether --enable-dce or --disable-dce was given.
|
|
if test "${enable_dce+set}" = set; then
|
|
enableval="$enable_dce"
|
|
|
|
fi;
|
|
if test "$enable_dce" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define DCE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$enable_dce" = yes; then
|
|
DCE_TRUE=
|
|
DCE_FALSE='#'
|
|
else
|
|
DCE_TRUE='#'
|
|
DCE_FALSE=
|
|
fi
|
|
|
|
## XXX quite horrible:
|
|
if test -f /etc/ibmcxx.cfg; then
|
|
dpagaix_LDADD=`sed -n '/^xlc_r4/,/^$/p' /etc/ibmcxx.cfg | sed -n -e '/libraries/{;s/^[^=]*=\(.*\)/\1/;s/,/ /gp;}'`
|
|
dpagaix_CFLAGS=`sed -n '/^xlc_r4/,/^$/p' /etc/ibmcxx.cfg | sed -n -e '/options/{;s/^[^=]*=\(.*\)/\1/;s/-q^,*//;s/,/ /gp;}'`
|
|
else
|
|
dpagaix_CFLAGS="-D_THREAD_SAFE -D_AIX_PTHREADS_D7 -D_AIX32_THREADS=1 -D_AES_SOURCE -D_AIX41 -I/usr/include/dce"
|
|
dpagaix_LDADD="-L/usr/lib/threads -ldcelibc_r -ldcepthreads -lpthreads_compat lpthreads -lc_r"
|
|
dpagaix_LDFLAGS="-Wl,-bI:dfspag.exp"
|
|
fi
|
|
|
|
otp=yes
|
|
# Check whether --enable-otp or --disable-otp was given.
|
|
if test "${enable_otp+set}" = set; then
|
|
enableval="$enable_otp"
|
|
|
|
if test "$enableval" = "no"; then
|
|
otp=no
|
|
fi
|
|
|
|
fi;
|
|
if test "$otp" = "yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define OTP 1
|
|
EOF
|
|
|
|
LIB_otp='$(top_builddir)/lib/otp/libotp.la'
|
|
fi
|
|
|
|
if test "$otp" = yes; then
|
|
OTP_TRUE=
|
|
OTP_FALSE='#'
|
|
else
|
|
OTP_TRUE='#'
|
|
OTP_FALSE=
|
|
fi
|
|
|
|
# Check whether --enable-osfc2 or --disable-osfc2 was given.
|
|
if test "${enable_osfc2+set}" = set; then
|
|
enableval="$enable_osfc2"
|
|
|
|
fi;
|
|
LIB_security=
|
|
if test "$enable_osfc2" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_OSFC2 1
|
|
EOF
|
|
|
|
LIB_security=-lsecurity
|
|
fi
|
|
|
|
# Extract the first word of "nroff", so it can be a program name with args.
|
|
set dummy nroff; ac_word=$2
|
|
echo "$as_me:14416: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_path_NROFF+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
case $NROFF in
|
|
[\\/]* | ?:[\\/]*)
|
|
ac_cv_path_NROFF="$NROFF" # Let the user override the test with a path.
|
|
;;
|
|
*)
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
if $as_executable_p "$ac_dir/$ac_word"; then
|
|
ac_cv_path_NROFF="$ac_dir/$ac_word"
|
|
echo "$as_me:14433: found $ac_dir/$ac_word" >&5
|
|
break
|
|
fi
|
|
done
|
|
|
|
;;
|
|
esac
|
|
fi
|
|
NROFF=$ac_cv_path_NROFF
|
|
|
|
if test -n "$NROFF"; then
|
|
echo "$as_me:14444: result: $NROFF" >&5
|
|
echo "${ECHO_T}$NROFF" >&6
|
|
else
|
|
echo "$as_me:14447: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
# Extract the first word of "groff", so it can be a program name with args.
|
|
set dummy groff; ac_word=$2
|
|
echo "$as_me:14453: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_path_GROFF+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
case $GROFF in
|
|
[\\/]* | ?:[\\/]*)
|
|
ac_cv_path_GROFF="$GROFF" # Let the user override the test with a path.
|
|
;;
|
|
*)
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
if $as_executable_p "$ac_dir/$ac_word"; then
|
|
ac_cv_path_GROFF="$ac_dir/$ac_word"
|
|
echo "$as_me:14470: found $ac_dir/$ac_word" >&5
|
|
break
|
|
fi
|
|
done
|
|
|
|
;;
|
|
esac
|
|
fi
|
|
GROFF=$ac_cv_path_GROFF
|
|
|
|
if test -n "$GROFF"; then
|
|
echo "$as_me:14481: result: $GROFF" >&5
|
|
echo "${ECHO_T}$GROFF" >&6
|
|
else
|
|
echo "$as_me:14484: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
echo "$as_me:14488: checking how to format man pages" >&5
|
|
echo $ECHO_N "checking how to format man pages... $ECHO_C" >&6
|
|
if test "${ac_cv_sys_man_format+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat > conftest.1 << END
|
|
.Dd January 1, 1970
|
|
.Dt CONFTEST 1
|
|
.Sh NAME
|
|
.Nm conftest
|
|
.Nd
|
|
foobar
|
|
END
|
|
|
|
if test "$NROFF" ; then
|
|
for i in "-mdoc" "-mandoc"; do
|
|
if "$NROFF" $i conftest.1 2> /dev/null | \
|
|
grep Jan > /dev/null 2>&1 ; then
|
|
ac_cv_sys_man_format="$NROFF $i"
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
if test "$ac_cv_sys_man_format" = "" -a "$GROFF" ; then
|
|
for i in "-mdoc" "-mandoc"; do
|
|
if "$GROFF" -Tascii $i conftest.1 2> /dev/null | \
|
|
grep Jan > /dev/null 2>&1 ; then
|
|
ac_cv_sys_man_format="$GROFF -Tascii $i"
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
if test "$ac_cv_sys_man_format"; then
|
|
ac_cv_sys_man_format="$ac_cv_sys_man_format \$< > \$@"
|
|
fi
|
|
|
|
fi
|
|
echo "$as_me:14525: result: $ac_cv_sys_man_format" >&5
|
|
echo "${ECHO_T}$ac_cv_sys_man_format" >&6
|
|
if test "$ac_cv_sys_man_format"; then
|
|
CATMAN="$ac_cv_sys_man_format"
|
|
|
|
fi
|
|
|
|
if test "$CATMAN"; then
|
|
CATMAN_TRUE=
|
|
CATMAN_FALSE='#'
|
|
else
|
|
CATMAN_TRUE='#'
|
|
CATMAN_FALSE=
|
|
fi
|
|
echo "$as_me:14539: checking extension of pre-formatted manual pages" >&5
|
|
echo $ECHO_N "checking extension of pre-formatted manual pages... $ECHO_C" >&6
|
|
if test "${ac_cv_sys_catman_ext+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if grep _suffix /etc/man.conf > /dev/null 2>&1; then
|
|
ac_cv_sys_catman_ext=0
|
|
else
|
|
ac_cv_sys_catman_ext=number
|
|
fi
|
|
|
|
fi
|
|
echo "$as_me:14551: result: $ac_cv_sys_catman_ext" >&5
|
|
echo "${ECHO_T}$ac_cv_sys_catman_ext" >&6
|
|
if test "$ac_cv_sys_catman_ext" = number; then
|
|
CATMANEXT='$$section'
|
|
else
|
|
CATMANEXT=0
|
|
fi
|
|
|
|
# Check whether --with-readline or --without-readline was given.
|
|
if test "${with_readline+set}" = set; then
|
|
withval="$with_readline"
|
|
|
|
fi;
|
|
|
|
# Check whether --with-readline-lib or --without-readline-lib was given.
|
|
if test "${with_readline_lib+set}" = set; then
|
|
withval="$with_readline_lib"
|
|
if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
{ { echo "$as_me:14569: error: No argument for --with-readline-lib" >&5
|
|
echo "$as_me: error: No argument for --with-readline-lib" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
elif test "X$with_readline" = "X"; then
|
|
with_readline=yes
|
|
fi
|
|
fi;
|
|
|
|
# Check whether --with-readline-include or --without-readline-include was given.
|
|
if test "${with_readline_include+set}" = set; then
|
|
withval="$with_readline_include"
|
|
if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
{ { echo "$as_me:14581: error: No argument for --with-readline-include" >&5
|
|
echo "$as_me: error: No argument for --with-readline-include" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
elif test "X$with_readline" = "X"; then
|
|
with_readline=yes
|
|
fi
|
|
fi;
|
|
|
|
echo "$as_me:14589: checking for readline" >&5
|
|
echo $ECHO_N "checking for readline... $ECHO_C" >&6
|
|
|
|
case "$with_readline" in
|
|
yes) ;;
|
|
no) ;;
|
|
"") ;;
|
|
*) if test "$with_readline_include" = ""; then
|
|
with_readline_include="$with_readline/include"
|
|
fi
|
|
if test "$with_readline_lib" = ""; then
|
|
with_readline_lib="$with_readline/lib$abilibdirext"
|
|
fi
|
|
;;
|
|
esac
|
|
header_dirs=
|
|
lib_dirs=
|
|
d=''
|
|
for i in $d; do
|
|
header_dirs="$header_dirs $i/include"
|
|
lib_dirs="$lib_dirs $i/lib$abilibdirext"
|
|
done
|
|
|
|
case "$with_readline_include" in
|
|
yes) ;;
|
|
no) ;;
|
|
*) header_dirs="$with_readline_include $header_dirs";;
|
|
esac
|
|
case "$with_readline_lib" in
|
|
yes) ;;
|
|
no) ;;
|
|
*) lib_dirs="$with_readline_lib $lib_dirs";;
|
|
esac
|
|
|
|
save_CFLAGS="$CFLAGS"
|
|
save_LIBS="$LIBS"
|
|
ires= lres=
|
|
for i in $header_dirs; do
|
|
CFLAGS="-I$i $save_CFLAGS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14629 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <readline.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:14642: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14645: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:14648: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14651: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ires=$i;break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
for i in $lib_dirs; do
|
|
LIBS="-L$i -lreadline $save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14663 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <readline.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:14676: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14679: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14682: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14685: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
lres=$i;break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
CFLAGS="$save_CFLAGS"
|
|
LIBS="$save_LIBS"
|
|
|
|
if test "$ires" -a "$lres" -a "$with_readline" != "no"; then
|
|
readline_includedir="$ires"
|
|
readline_libdir="$lres"
|
|
INCLUDE_readline="-I$readline_includedir"
|
|
LIB_readline="-L$readline_libdir -lreadline"
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define READLINE 1
|
|
EOF
|
|
|
|
with_readline=yes
|
|
echo "$as_me:14708: result: headers $ires, libraries $lres" >&5
|
|
echo "${ECHO_T}headers $ires, libraries $lres" >&6
|
|
else
|
|
INCLUDE_readline=
|
|
LIB_readline=
|
|
with_readline=no
|
|
echo "$as_me:14714: result: $with_readline" >&5
|
|
echo "${ECHO_T}$with_readline" >&6
|
|
fi
|
|
|
|
# Check whether --with-hesiod or --without-hesiod was given.
|
|
if test "${with_hesiod+set}" = set; then
|
|
withval="$with_hesiod"
|
|
|
|
fi;
|
|
|
|
# Check whether --with-hesiod-lib or --without-hesiod-lib was given.
|
|
if test "${with_hesiod_lib+set}" = set; then
|
|
withval="$with_hesiod_lib"
|
|
if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
{ { echo "$as_me:14728: error: No argument for --with-hesiod-lib" >&5
|
|
echo "$as_me: error: No argument for --with-hesiod-lib" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
elif test "X$with_hesiod" = "X"; then
|
|
with_hesiod=yes
|
|
fi
|
|
fi;
|
|
|
|
# Check whether --with-hesiod-include or --without-hesiod-include was given.
|
|
if test "${with_hesiod_include+set}" = set; then
|
|
withval="$with_hesiod_include"
|
|
if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
{ { echo "$as_me:14740: error: No argument for --with-hesiod-include" >&5
|
|
echo "$as_me: error: No argument for --with-hesiod-include" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
elif test "X$with_hesiod" = "X"; then
|
|
with_hesiod=yes
|
|
fi
|
|
fi;
|
|
|
|
echo "$as_me:14748: checking for hesiod" >&5
|
|
echo $ECHO_N "checking for hesiod... $ECHO_C" >&6
|
|
|
|
case "$with_hesiod" in
|
|
yes) ;;
|
|
no) ;;
|
|
"") ;;
|
|
*) if test "$with_hesiod_include" = ""; then
|
|
with_hesiod_include="$with_hesiod/include"
|
|
fi
|
|
if test "$with_hesiod_lib" = ""; then
|
|
with_hesiod_lib="$with_hesiod/lib$abilibdirext"
|
|
fi
|
|
;;
|
|
esac
|
|
header_dirs=
|
|
lib_dirs=
|
|
d=''
|
|
for i in $d; do
|
|
header_dirs="$header_dirs $i/include"
|
|
lib_dirs="$lib_dirs $i/lib$abilibdirext"
|
|
done
|
|
|
|
case "$with_hesiod_include" in
|
|
yes) ;;
|
|
no) ;;
|
|
*) header_dirs="$with_hesiod_include $header_dirs";;
|
|
esac
|
|
case "$with_hesiod_lib" in
|
|
yes) ;;
|
|
no) ;;
|
|
*) lib_dirs="$with_hesiod_lib $lib_dirs";;
|
|
esac
|
|
|
|
save_CFLAGS="$CFLAGS"
|
|
save_LIBS="$LIBS"
|
|
ires= lres=
|
|
for i in $header_dirs; do
|
|
CFLAGS="-I$i $save_CFLAGS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14788 "configure"
|
|
#include "confdefs.h"
|
|
#include <hesiod.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:14800: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14803: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:14806: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14809: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ires=$i;break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
for i in $lib_dirs; do
|
|
LIBS="-L$i -lhesiod $save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14821 "configure"
|
|
#include "confdefs.h"
|
|
#include <hesiod.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:14833: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14836: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14839: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14842: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
lres=$i;break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
CFLAGS="$save_CFLAGS"
|
|
LIBS="$save_LIBS"
|
|
|
|
if test "$ires" -a "$lres" -a "$with_hesiod" != "no"; then
|
|
hesiod_includedir="$ires"
|
|
hesiod_libdir="$lres"
|
|
INCLUDE_hesiod="-I$hesiod_includedir"
|
|
LIB_hesiod="-L$hesiod_libdir -lhesiod"
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HESIOD 1
|
|
EOF
|
|
|
|
with_hesiod=yes
|
|
echo "$as_me:14865: result: headers $ires, libraries $lres" >&5
|
|
echo "${ECHO_T}headers $ires, libraries $lres" >&6
|
|
else
|
|
INCLUDE_hesiod=
|
|
LIB_hesiod=
|
|
with_hesiod=no
|
|
echo "$as_me:14871: result: $with_hesiod" >&5
|
|
echo "${ECHO_T}$with_hesiod" >&6
|
|
fi
|
|
|
|
# Check whether --enable-bigendian or --disable-bigendian was given.
|
|
if test "${enable_bigendian+set}" = set; then
|
|
enableval="$enable_bigendian"
|
|
krb_cv_c_bigendian=yes
|
|
fi;
|
|
# Check whether --enable-littleendian or --disable-littleendian was given.
|
|
if test "${enable_littleendian+set}" = set; then
|
|
enableval="$enable_littleendian"
|
|
krb_cv_c_bigendian=no
|
|
fi;
|
|
echo "$as_me:14885: checking whether byte order is known at compile time" >&5
|
|
echo $ECHO_N "checking whether byte order is known at compile time... $ECHO_C" >&6
|
|
if test "${krb_cv_c_bigendian_compile+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14891 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/param.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
#if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
|
|
bogus endian macros
|
|
#endif
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:14908: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14911: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:14914: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14917: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
krb_cv_c_bigendian_compile=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
krb_cv_c_bigendian_compile=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:14927: result: $krb_cv_c_bigendian_compile" >&5
|
|
echo "${ECHO_T}$krb_cv_c_bigendian_compile" >&6
|
|
echo "$as_me:14929: checking whether byte ordering is bigendian" >&5
|
|
echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6
|
|
if test "${krb_cv_c_bigendian+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if test "$krb_cv_c_bigendian_compile" = "yes"; then
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14937 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/param.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
#if BYTE_ORDER != BIG_ENDIAN
|
|
not big endian
|
|
#endif
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:14954: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14957: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:14960: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14963: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
krb_cv_c_bigendian=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
krb_cv_c_bigendian=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:14974: error: specify either --enable-bigendian or --enable-littleendian" >&5
|
|
echo "$as_me: error: specify either --enable-bigendian or --enable-littleendian" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14979 "configure"
|
|
#include "confdefs.h"
|
|
main () {
|
|
/* Are we little or big endian? From Harbison&Steele. */
|
|
union
|
|
{
|
|
long l;
|
|
char c[sizeof (long)];
|
|
} u;
|
|
u.l = 1;
|
|
exit (u.c[sizeof (long) - 1] == 1);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:14993: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14996: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14998: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15001: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
krb_cv_c_bigendian=no
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
krb_cv_c_bigendian=yes
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
fi
|
|
echo "$as_me:15015: result: $krb_cv_c_bigendian" >&5
|
|
echo "${ECHO_T}$krb_cv_c_bigendian" >&6
|
|
if test "$krb_cv_c_bigendian" = "yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define WORDS_BIGENDIAN 1
|
|
EOF
|
|
fi
|
|
if test "$krb_cv_c_bigendian_compile" = "yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define ENDIANESS_IN_SYS_PARAM_H 1
|
|
EOF
|
|
fi
|
|
|
|
echo "$as_me:15030: checking for inline" >&5
|
|
echo $ECHO_N "checking for inline... $ECHO_C" >&6
|
|
if test "${ac_cv_c_inline+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_c_inline=no
|
|
for ac_kw in inline __inline__ __inline; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15038 "configure"
|
|
#include "confdefs.h"
|
|
#ifndef __cplusplus
|
|
static $ac_kw int static_foo () {return 0; }
|
|
$ac_kw int foo () {return 0; }
|
|
#endif
|
|
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:15047: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15050: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:15053: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15056: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_inline=$ac_kw; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
|
|
fi
|
|
echo "$as_me:15067: result: $ac_cv_c_inline" >&5
|
|
echo "${ECHO_T}$ac_cv_c_inline" >&6
|
|
case $ac_cv_c_inline in
|
|
inline | yes) ;;
|
|
no)
|
|
cat >>confdefs.h <<\EOF
|
|
#define inline
|
|
EOF
|
|
;;
|
|
*) cat >>confdefs.h <<EOF
|
|
#define inline $ac_cv_c_inline
|
|
EOF
|
|
;;
|
|
esac
|
|
|
|
aix=no
|
|
case "$host" in
|
|
*-*-aix3*)
|
|
aix=3
|
|
;;
|
|
*-*-aix4*)
|
|
aix=4
|
|
;;
|
|
esac
|
|
|
|
if test "$aix" != no; then
|
|
AIX_TRUE=
|
|
AIX_FALSE='#'
|
|
else
|
|
AIX_TRUE='#'
|
|
AIX_FALSE=
|
|
fi
|
|
|
|
if test "$aix" = 4; then
|
|
AIX4_TRUE=
|
|
AIX4_FALSE='#'
|
|
else
|
|
AIX4_TRUE='#'
|
|
AIX4_FALSE=
|
|
fi
|
|
aix_dynamic_afs=yes
|
|
|
|
if test "$aix_dynamic_afs" = yes; then
|
|
AIX_DYNAMIC_AFS_TRUE=
|
|
AIX_DYNAMIC_AFS_FALSE='#'
|
|
else
|
|
AIX_DYNAMIC_AFS_TRUE='#'
|
|
AIX_DYNAMIC_AFS_FALSE=
|
|
fi
|
|
|
|
echo "$as_me:15117: checking for dlopen" >&5
|
|
echo $ECHO_N "checking for dlopen... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_dlopen+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_dlopen\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" dl; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15135 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
dlopen()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15147: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15150: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15153: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15156: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_dlopen=$ac_lib; else ac_cv_funclib_dlopen=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_dlopen=\${ac_cv_funclib_dlopen-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_dlopen"
|
|
|
|
if false; then
|
|
|
|
for ac_func in dlopen
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:15178: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15184 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15215: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15218: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15221: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15224: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:15234: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# dlopen
|
|
eval "ac_tr_func=HAVE_`echo dlopen | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_dlopen=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_dlopen=yes"
|
|
eval "LIB_dlopen="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:15258: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_dlopen=no"
|
|
eval "LIB_dlopen="
|
|
echo "$as_me:15264: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_dlopen=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:15278: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test "$aix" != no; then
|
|
if test "$aix_dynamic_afs" = yes; then
|
|
if test "$ac_cv_funclib_dlopen" = yes; then
|
|
AIX_EXTRA_KAFS=
|
|
elif test "$ac_cv_funclib_dlopen" != no; then
|
|
AIX_EXTRA_KAFS="$ac_cv_funclib_dlopen"
|
|
else
|
|
AIX_EXTRA_KAFS=-lld
|
|
fi
|
|
else
|
|
AIX_EXTRA_KAFS=
|
|
fi
|
|
fi
|
|
|
|
if test "$ac_cv_funclib_dlopen" != no; then
|
|
HAVE_DLOPEN_TRUE=
|
|
HAVE_DLOPEN_FALSE='#'
|
|
else
|
|
HAVE_DLOPEN_TRUE='#'
|
|
HAVE_DLOPEN_FALSE=
|
|
fi
|
|
|
|
irix=no
|
|
case "$host_os" in
|
|
irix*) irix=yes ;;
|
|
esac
|
|
|
|
if test "$irix" != no; then
|
|
IRIX_TRUE=
|
|
IRIX_FALSE='#'
|
|
else
|
|
IRIX_TRUE='#'
|
|
IRIX_FALSE=
|
|
fi
|
|
|
|
echo "$as_me:15318: checking for X" >&5
|
|
echo $ECHO_N "checking for X... $ECHO_C" >&6
|
|
|
|
# Check whether --with-x or --without-x was given.
|
|
if test "${with_x+set}" = set; then
|
|
withval="$with_x"
|
|
|
|
fi;
|
|
# $have_x is `yes', `no', `disabled', or empty when we do not yet know.
|
|
if test "x$with_x" = xno; then
|
|
# The user explicitly disabled X.
|
|
have_x=disabled
|
|
else
|
|
if test "x$x_includes" != xNONE && test "x$x_libraries" != xNONE; then
|
|
# Both variables are already set.
|
|
have_x=yes
|
|
else
|
|
if test "${ac_cv_have_x+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
# One or both of the vars are not set, and there is no cached value.
|
|
ac_x_includes=no ac_x_libraries=no
|
|
rm -fr conftest.dir
|
|
if mkdir conftest.dir; then
|
|
cd conftest.dir
|
|
# Make sure to not put "make" in the Imakefile rules, since we grep it out.
|
|
cat >Imakefile <<'EOF'
|
|
acfindx:
|
|
@echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
|
|
EOF
|
|
if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
|
|
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
|
|
eval `${MAKE-make} acfindx 2>/dev/null | grep -v make`
|
|
# Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
|
|
for ac_extension in a so sl; do
|
|
if test ! -f $ac_im_usrlibdir/libX11.$ac_extension &&
|
|
test -f $ac_im_libdir/libX11.$ac_extension; then
|
|
ac_im_usrlibdir=$ac_im_libdir; break
|
|
fi
|
|
done
|
|
# Screen out bogus values from the imake configuration. They are
|
|
# bogus both because they are the default anyway, and because
|
|
# using them would break gcc on systems where it needs fixed includes.
|
|
case $ac_im_incroot in
|
|
/usr/include) ;;
|
|
*) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;;
|
|
esac
|
|
case $ac_im_usrlibdir in
|
|
/usr/lib | /lib) ;;
|
|
*) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;;
|
|
esac
|
|
fi
|
|
cd ..
|
|
rm -fr conftest.dir
|
|
fi
|
|
|
|
# Standard set of common directories for X headers.
|
|
# Check X11 before X11Rn because it is often a symlink to the current release.
|
|
ac_x_header_dirs='
|
|
/usr/X11/include
|
|
/usr/X11R6/include
|
|
/usr/X11R5/include
|
|
/usr/X11R4/include
|
|
|
|
/usr/include/X11
|
|
/usr/include/X11R6
|
|
/usr/include/X11R5
|
|
/usr/include/X11R4
|
|
|
|
/usr/local/X11/include
|
|
/usr/local/X11R6/include
|
|
/usr/local/X11R5/include
|
|
/usr/local/X11R4/include
|
|
|
|
/usr/local/include/X11
|
|
/usr/local/include/X11R6
|
|
/usr/local/include/X11R5
|
|
/usr/local/include/X11R4
|
|
|
|
/usr/X386/include
|
|
/usr/x386/include
|
|
/usr/XFree86/include/X11
|
|
|
|
/usr/include
|
|
/usr/local/include
|
|
/usr/unsupported/include
|
|
/usr/athena/include
|
|
/usr/local/x11r5/include
|
|
/usr/lpp/Xamples/include
|
|
|
|
/usr/openwin/include
|
|
/usr/openwin/share/include'
|
|
|
|
if test "$ac_x_includes" = no; then
|
|
# Guess where to find include files, by looking for Intrinsic.h.
|
|
# First, try using that file with no special directory specified.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15415 "configure"
|
|
#include "confdefs.h"
|
|
#include <X11/Intrinsic.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:15419: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:15425: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
# We can compile using X headers with no special include directory.
|
|
ac_x_includes=
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
for ac_dir in $ac_x_header_dirs; do
|
|
if test -r "$ac_dir/X11/Intrinsic.h"; then
|
|
ac_x_includes=$ac_dir
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi # $ac_x_includes = no
|
|
|
|
if test "$ac_x_libraries" = no; then
|
|
# Check for the libraries.
|
|
# See if we find them without any special options.
|
|
# Don't add to $LIBS permanently.
|
|
ac_save_LIBS=$LIBS
|
|
LIBS="-lXt $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15458 "configure"
|
|
#include "confdefs.h"
|
|
#include <X11/Intrinsic.h>
|
|
int
|
|
main ()
|
|
{
|
|
XtMalloc (0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15470: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15473: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15476: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15479: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
LIBS=$ac_save_LIBS
|
|
# We can link X programs with no special library path.
|
|
ac_x_libraries=
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
LIBS=$ac_save_LIBS
|
|
for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g`
|
|
do
|
|
# Don't even attempt the hair of trying to link an X program!
|
|
for ac_extension in a so sl; do
|
|
if test -r $ac_dir/libXt.$ac_extension; then
|
|
ac_x_libraries=$ac_dir
|
|
break 2
|
|
fi
|
|
done
|
|
done
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi # $ac_x_libraries = no
|
|
|
|
if test "$ac_x_includes" = no || test "$ac_x_libraries" = no; then
|
|
# Didn't find X anywhere. Cache the known absence of X.
|
|
ac_cv_have_x="have_x=no"
|
|
else
|
|
# Record where we found X for the cache.
|
|
ac_cv_have_x="have_x=yes \
|
|
ac_x_includes=$ac_x_includes ac_x_libraries=$ac_x_libraries"
|
|
fi
|
|
fi
|
|
|
|
fi
|
|
eval "$ac_cv_have_x"
|
|
fi # $with_x != no
|
|
|
|
if test "$have_x" != yes; then
|
|
echo "$as_me:15517: result: $have_x" >&5
|
|
echo "${ECHO_T}$have_x" >&6
|
|
no_x=yes
|
|
else
|
|
# If each of the values was on the command line, it overrides each guess.
|
|
test "x$x_includes" = xNONE && x_includes=$ac_x_includes
|
|
test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries
|
|
# Update the cache value to reflect the command line values.
|
|
ac_cv_have_x="have_x=yes \
|
|
ac_x_includes=$x_includes ac_x_libraries=$x_libraries"
|
|
echo "$as_me:15527: result: libraries $x_libraries, headers $x_includes" >&5
|
|
echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6
|
|
fi
|
|
|
|
if test "$no_x" = yes; then
|
|
# Not all programs may use this symbol, but it does not hurt to define it.
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define X_DISPLAY_MISSING 1
|
|
EOF
|
|
|
|
X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS=
|
|
else
|
|
if test -n "$x_includes"; then
|
|
X_CFLAGS="$X_CFLAGS -I$x_includes"
|
|
fi
|
|
|
|
# It would also be nice to do this for all -L options, not just this one.
|
|
if test -n "$x_libraries"; then
|
|
X_LIBS="$X_LIBS -L$x_libraries"
|
|
# For Solaris; some versions of Sun CC require a space after -R and
|
|
# others require no space. Words are not sufficient . . . .
|
|
case `(uname -sr) 2>/dev/null` in
|
|
"SunOS 5"*)
|
|
echo "$as_me:15551: checking whether -R must be followed by a space" >&5
|
|
echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6
|
|
ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15555 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15567: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15570: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15573: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15576: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_R_nospace=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_R_nospace=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
if test $ac_R_nospace = yes; then
|
|
echo "$as_me:15586: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
X_LIBS="$X_LIBS -R$x_libraries"
|
|
else
|
|
LIBS="$ac_xsave_LIBS -R $x_libraries"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15592 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15604: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15607: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15610: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15613: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_R_space=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_R_space=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
if test $ac_R_space = yes; then
|
|
echo "$as_me:15623: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
X_LIBS="$X_LIBS -R $x_libraries"
|
|
else
|
|
echo "$as_me:15627: result: neither works" >&5
|
|
echo "${ECHO_T}neither works" >&6
|
|
fi
|
|
fi
|
|
LIBS=$ac_xsave_LIBS
|
|
esac
|
|
fi
|
|
|
|
# Check for system-dependent libraries X programs must link with.
|
|
# Do this before checking for the system-independent R6 libraries
|
|
# (-lICE), since we may need -lsocket or whatever for X linking.
|
|
|
|
if test "$ISC" = yes; then
|
|
X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet"
|
|
else
|
|
# Martyn Johnson says this is needed for Ultrix, if the X
|
|
# libraries were built with DECnet support. And Karl Berry says
|
|
# the Alpha needs dnet_stub (dnet does not exist).
|
|
ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15647 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char XOpenDisplay ();
|
|
int
|
|
main ()
|
|
{
|
|
XOpenDisplay ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15666: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15669: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15672: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15675: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
echo "$as_me:15681: checking for dnet_ntoa in -ldnet" >&5
|
|
echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-ldnet $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15689 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dnet_ntoa ();
|
|
int
|
|
main ()
|
|
{
|
|
dnet_ntoa ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15708: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15711: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15714: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15717: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_dnet_dnet_ntoa=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_dnet_dnet_ntoa=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:15728: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6
|
|
if test $ac_cv_lib_dnet_dnet_ntoa = yes; then
|
|
X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
|
|
fi
|
|
|
|
if test $ac_cv_lib_dnet_dnet_ntoa = no; then
|
|
echo "$as_me:15735: checking for dnet_ntoa in -ldnet_stub" >&5
|
|
echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-ldnet_stub $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15743 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dnet_ntoa ();
|
|
int
|
|
main ()
|
|
{
|
|
dnet_ntoa ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15762: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15765: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15768: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15771: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_dnet_stub_dnet_ntoa=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_dnet_stub_dnet_ntoa=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:15782: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6
|
|
if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then
|
|
X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
|
|
fi
|
|
|
|
fi
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS="$ac_xsave_LIBS"
|
|
|
|
# msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT,
|
|
# to get the SysV transport functions.
|
|
# Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4)
|
|
# needs -lnsl.
|
|
# The nsl library prevents programs from opening the X display
|
|
# on Irix 5.2, according to T.E. Dickey.
|
|
# The functions gethostbyname, getservbyname, and inet_addr are
|
|
# in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
|
|
echo "$as_me:15801: checking for gethostbyname" >&5
|
|
echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6
|
|
if test "${ac_cv_func_gethostbyname+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15807 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char gethostbyname (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char gethostbyname ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_gethostbyname) || defined (__stub___gethostbyname)
|
|
choke me
|
|
#else
|
|
f = gethostbyname;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15838: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15841: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15844: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15847: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_gethostbyname=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_gethostbyname=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:15857: result: $ac_cv_func_gethostbyname" >&5
|
|
echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6
|
|
|
|
if test $ac_cv_func_gethostbyname = no; then
|
|
echo "$as_me:15861: checking for gethostbyname in -lnsl" >&5
|
|
echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lnsl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15869 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char gethostbyname ();
|
|
int
|
|
main ()
|
|
{
|
|
gethostbyname ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15888: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15891: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15894: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15897: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_nsl_gethostbyname=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_nsl_gethostbyname=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:15908: result: $ac_cv_lib_nsl_gethostbyname" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
|
|
if test $ac_cv_lib_nsl_gethostbyname = yes; then
|
|
X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
|
|
fi
|
|
|
|
if test $ac_cv_lib_nsl_gethostbyname = no; then
|
|
echo "$as_me:15915: checking for gethostbyname in -lbsd" >&5
|
|
echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lbsd $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15923 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char gethostbyname ();
|
|
int
|
|
main ()
|
|
{
|
|
gethostbyname ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15942: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15945: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15948: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15951: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_bsd_gethostbyname=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_bsd_gethostbyname=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:15962: result: $ac_cv_lib_bsd_gethostbyname" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6
|
|
if test $ac_cv_lib_bsd_gethostbyname = yes; then
|
|
X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
|
|
fi
|
|
|
|
fi
|
|
fi
|
|
|
|
# lieder@skyler.mavd.honeywell.com says without -lsocket,
|
|
# socket/setsockopt and other routines are undefined under SCO ODT
|
|
# 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary
|
|
# on later versions), says Simon Leinen: it contains gethostby*
|
|
# variants that don't use the nameserver (or something). -lsocket
|
|
# must be given before -lnsl if both are needed. We assume that
|
|
# if connect needs -lnsl, so does gethostbyname.
|
|
echo "$as_me:15978: checking for connect" >&5
|
|
echo $ECHO_N "checking for connect... $ECHO_C" >&6
|
|
if test "${ac_cv_func_connect+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15984 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char connect (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char connect ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_connect) || defined (__stub___connect)
|
|
choke me
|
|
#else
|
|
f = connect;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16015: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16018: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16021: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16024: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_connect=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_connect=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:16034: result: $ac_cv_func_connect" >&5
|
|
echo "${ECHO_T}$ac_cv_func_connect" >&6
|
|
|
|
if test $ac_cv_func_connect = no; then
|
|
echo "$as_me:16038: checking for connect in -lsocket" >&5
|
|
echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_socket_connect+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16046 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char connect ();
|
|
int
|
|
main ()
|
|
{
|
|
connect ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16065: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16068: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16071: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16074: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_socket_connect=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_socket_connect=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:16085: result: $ac_cv_lib_socket_connect" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6
|
|
if test $ac_cv_lib_socket_connect = yes; then
|
|
X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
# Guillermo Gomez says -lposix is necessary on A/UX.
|
|
echo "$as_me:16094: checking for remove" >&5
|
|
echo $ECHO_N "checking for remove... $ECHO_C" >&6
|
|
if test "${ac_cv_func_remove+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16100 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char remove (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char remove ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_remove) || defined (__stub___remove)
|
|
choke me
|
|
#else
|
|
f = remove;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16131: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16134: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16137: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16140: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_remove=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_remove=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:16150: result: $ac_cv_func_remove" >&5
|
|
echo "${ECHO_T}$ac_cv_func_remove" >&6
|
|
|
|
if test $ac_cv_func_remove = no; then
|
|
echo "$as_me:16154: checking for remove in -lposix" >&5
|
|
echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_posix_remove+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lposix $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16162 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char remove ();
|
|
int
|
|
main ()
|
|
{
|
|
remove ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16181: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16184: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16187: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16190: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_posix_remove=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_posix_remove=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:16201: result: $ac_cv_lib_posix_remove" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6
|
|
if test $ac_cv_lib_posix_remove = yes; then
|
|
X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
|
|
fi
|
|
|
|
fi
|
|
|
|
# BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
|
|
echo "$as_me:16210: checking for shmat" >&5
|
|
echo $ECHO_N "checking for shmat... $ECHO_C" >&6
|
|
if test "${ac_cv_func_shmat+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16216 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char shmat (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char shmat ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_shmat) || defined (__stub___shmat)
|
|
choke me
|
|
#else
|
|
f = shmat;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16247: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16250: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16253: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16256: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_shmat=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_shmat=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:16266: result: $ac_cv_func_shmat" >&5
|
|
echo "${ECHO_T}$ac_cv_func_shmat" >&6
|
|
|
|
if test $ac_cv_func_shmat = no; then
|
|
echo "$as_me:16270: checking for shmat in -lipc" >&5
|
|
echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_ipc_shmat+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lipc $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16278 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char shmat ();
|
|
int
|
|
main ()
|
|
{
|
|
shmat ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16297: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16300: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16303: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16306: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_ipc_shmat=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_ipc_shmat=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:16317: result: $ac_cv_lib_ipc_shmat" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6
|
|
if test $ac_cv_lib_ipc_shmat = yes; then
|
|
X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
|
|
fi
|
|
|
|
fi
|
|
fi
|
|
|
|
# Check for libraries that X11R6 Xt/Xaw programs need.
|
|
ac_save_LDFLAGS=$LDFLAGS
|
|
test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries"
|
|
# SM needs ICE to (dynamically) link under SunOS 4.x (so we have to
|
|
# check for ICE first), but we must link in the order -lSM -lICE or
|
|
# we get undefined symbols. So assume we have SM if we have ICE.
|
|
# These have to be linked with before -lX11, unlike the other
|
|
# libraries we check for below, so use a different variable.
|
|
# John Interrante, Karl Berry
|
|
echo "$as_me:16335: checking for IceConnectionNumber in -lICE" >&5
|
|
echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lICE $X_EXTRA_LIBS $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16343 "configure"
|
|
#include "confdefs.h"
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char IceConnectionNumber ();
|
|
int
|
|
main ()
|
|
{
|
|
IceConnectionNumber ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16362: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16365: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16368: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16371: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_ICE_IceConnectionNumber=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_ICE_IceConnectionNumber=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:16382: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6
|
|
if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then
|
|
X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
|
|
fi
|
|
|
|
LDFLAGS=$ac_save_LDFLAGS
|
|
|
|
fi
|
|
|
|
# try to figure out if we need any additional ld flags, like -R
|
|
# and yes, the autoconf X test is utterly broken
|
|
if test "$no_x" != yes; then
|
|
echo "$as_me:16395: checking for special X linker flags" >&5
|
|
echo $ECHO_N "checking for special X linker flags... $ECHO_C" >&6
|
|
if test "${krb_cv_sys_x_libs_rpath+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
ac_save_libs="$LIBS"
|
|
ac_save_cflags="$CFLAGS"
|
|
CFLAGS="$CFLAGS $X_CFLAGS"
|
|
krb_cv_sys_x_libs_rpath=""
|
|
krb_cv_sys_x_libs=""
|
|
for rflag in "" "-R" "-R " "-rpath "; do
|
|
if test "$rflag" = ""; then
|
|
foo="$X_LIBS"
|
|
else
|
|
foo=""
|
|
for flag in $X_LIBS; do
|
|
case $flag in
|
|
-L*)
|
|
foo="$foo $flag `echo $flag | sed \"s/-L/$rflag/\"`"
|
|
;;
|
|
*)
|
|
foo="$foo $flag"
|
|
;;
|
|
esac
|
|
done
|
|
fi
|
|
LIBS="$ac_save_libs $foo $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:16424: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16429 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <X11/Xlib.h>
|
|
foo()
|
|
{
|
|
XOpenDisplay(NULL);
|
|
}
|
|
main()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:16444: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16447: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16449: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16452: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
krb_cv_sys_x_libs_rpath="$rflag"; krb_cv_sys_x_libs="$foo"; break
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
:
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
done
|
|
LIBS="$ac_save_libs"
|
|
CFLAGS="$ac_save_cflags"
|
|
|
|
fi
|
|
echo "$as_me:16468: result: $krb_cv_sys_x_libs_rpath" >&5
|
|
echo "${ECHO_T}$krb_cv_sys_x_libs_rpath" >&6
|
|
X_LIBS="$krb_cv_sys_x_libs"
|
|
fi
|
|
|
|
if test "$no_x" != yes; then
|
|
HAVE_X_TRUE=
|
|
HAVE_X_FALSE='#'
|
|
else
|
|
HAVE_X_TRUE='#'
|
|
HAVE_X_FALSE=
|
|
fi
|
|
|
|
save_CFLAGS="$CFLAGS"
|
|
CFLAGS="$X_CFLAGS $CFLAGS"
|
|
save_LIBS="$LIBS"
|
|
LIBS="$X_PRE_LIBS $X_EXTRA_LIBS $LIBS"
|
|
save_LDFLAGS="$LDFLAGS"
|
|
LDFLAGS="$LDFLAGS $X_LIBS"
|
|
|
|
echo "$as_me:16488: checking for XauWriteAuth" >&5
|
|
echo $ECHO_N "checking for XauWriteAuth... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_XauWriteAuth+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_XauWriteAuth\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" X11 Xau; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16506 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
XauWriteAuth()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16518: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16521: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16524: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16527: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_XauWriteAuth=$ac_lib; else ac_cv_funclib_XauWriteAuth=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_XauWriteAuth=\${ac_cv_funclib_XauWriteAuth-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_XauWriteAuth"
|
|
|
|
if false; then
|
|
|
|
for ac_func in XauWriteAuth
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:16549: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16555 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16586: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16589: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16592: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16595: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:16605: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# XauWriteAuth
|
|
eval "ac_tr_func=HAVE_`echo XauWriteAuth | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_XauWriteAuth=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_XauWriteAuth=yes"
|
|
eval "LIB_XauWriteAuth="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:16629: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_XauWriteAuth=no"
|
|
eval "LIB_XauWriteAuth="
|
|
echo "$as_me:16635: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_XauWriteAuth=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:16649: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
ac_xxx="$LIBS"
|
|
LIBS="$LIB_XauWriteAuth $LIBS"
|
|
|
|
echo "$as_me:16657: checking for XauReadAuth" >&5
|
|
echo $ECHO_N "checking for XauReadAuth... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_XauReadAuth+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_XauReadAuth\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" X11 Xau; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16675 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
XauReadAuth()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16687: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16690: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16693: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16696: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_XauReadAuth=$ac_lib; else ac_cv_funclib_XauReadAuth=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_XauReadAuth=\${ac_cv_funclib_XauReadAuth-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_XauReadAuth"
|
|
|
|
if false; then
|
|
|
|
for ac_func in XauReadAuth
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:16718: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16724 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16755: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16758: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16761: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16764: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:16774: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# XauReadAuth
|
|
eval "ac_tr_func=HAVE_`echo XauReadAuth | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_XauReadAuth=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_XauReadAuth=yes"
|
|
eval "LIB_XauReadAuth="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:16798: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_XauReadAuth=no"
|
|
eval "LIB_XauReadAuth="
|
|
echo "$as_me:16804: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_XauReadAuth=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:16818: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
LIBS="$LIB_XauReadAauth $LIBS"
|
|
|
|
echo "$as_me:16825: checking for XauFileName" >&5
|
|
echo $ECHO_N "checking for XauFileName... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_XauFileName+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_XauFileName\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" X11 Xau; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16843 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
XauFileName()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16855: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16858: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16861: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16864: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_XauFileName=$ac_lib; else ac_cv_funclib_XauFileName=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_XauFileName=\${ac_cv_funclib_XauFileName-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_XauFileName"
|
|
|
|
if false; then
|
|
|
|
for ac_func in XauFileName
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:16886: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 16892 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:16923: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16926: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:16929: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:16932: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:16942: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# XauFileName
|
|
eval "ac_tr_func=HAVE_`echo XauFileName | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_XauFileName=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_XauFileName=yes"
|
|
eval "LIB_XauFileName="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:16966: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_XauFileName=no"
|
|
eval "LIB_XauFileName="
|
|
echo "$as_me:16972: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_XauFileName=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:16986: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
LIBS="$ac_xxx"
|
|
|
|
case "$ac_cv_funclib_XauWriteAuth" in
|
|
yes) ;;
|
|
no) ;;
|
|
*) if test "$ac_cv_funclib_XauReadAuth" = yes; then
|
|
if test "$ac_cv_funclib_XauFileName" = yes; then
|
|
LIB_XauReadAuth="$LIB_XauWriteAuth"
|
|
else
|
|
LIB_XauReadAuth="$LIB_XauWriteAuth $LIB_XauFileName"
|
|
fi
|
|
else
|
|
if test "$ac_cv_funclib_XauFileName" = yes; then
|
|
LIB_XauReadAuth="$LIB_XauReadAuth $LIB_XauWriteAuth"
|
|
else
|
|
LIB_XauReadAuth="$LIB_XauReadAuth $LIB_XauWriteAuth $LIB_XauFileName"
|
|
fi
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
if test "$AUTOMAKE" != ""; then
|
|
|
|
if test "$ac_cv_func_XauWriteAuth" != "yes"; then
|
|
NEED_WRITEAUTH_TRUE=
|
|
NEED_WRITEAUTH_FALSE='#'
|
|
else
|
|
NEED_WRITEAUTH_TRUE='#'
|
|
NEED_WRITEAUTH_FALSE=
|
|
fi
|
|
else
|
|
|
|
if test "$ac_cv_func_XauWriteAuth" != "yes"; then
|
|
NEED_WRITEAUTH_TRUE=
|
|
NEED_WRITEAUTH_FALSE='#'
|
|
else
|
|
NEED_WRITEAUTH_TRUE='#'
|
|
NEED_WRITEAUTH_FALSE=
|
|
fi
|
|
fi
|
|
CFLAGS=$save_CFLAGS
|
|
LIBS=$save_LIBS
|
|
LDFLAGS=$save_LDFLAGS
|
|
|
|
echo "$as_me:17035: checking for an ANSI C-conforming const" >&5
|
|
echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
|
|
if test "${ac_cv_c_const+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17041 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* FIXME: Include the comments suggested by Paul. */
|
|
#ifndef __cplusplus
|
|
/* Ultrix mips cc rejects this. */
|
|
typedef int charset[2];
|
|
const charset x;
|
|
/* SunOS 4.1.1 cc rejects this. */
|
|
char const *const *ccp;
|
|
char **p;
|
|
/* NEC SVR4.0.2 mips cc rejects this. */
|
|
struct point {int x, y;};
|
|
static struct point const zero = {0,0};
|
|
/* AIX XL C 1.02.0.0 rejects this.
|
|
It does not let you subtract one const X* pointer from another in
|
|
an arm of an if-expression whose if-part is not a constant
|
|
expression */
|
|
const char *g = "string";
|
|
ccp = &g + (g ? g-g : 0);
|
|
/* HPUX 7.0 cc rejects these. */
|
|
++ccp;
|
|
p = (char**) ccp;
|
|
ccp = (char const *const *) p;
|
|
{ /* SCO 3.2v4 cc rejects this. */
|
|
char *t;
|
|
char const *s = 0 ? (char *) 0 : (char const *) 0;
|
|
|
|
*t++ = 0;
|
|
}
|
|
{ /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */
|
|
int x[] = {25, 17};
|
|
const int *foo = &x[0];
|
|
++foo;
|
|
}
|
|
{ /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
|
|
typedef const int *iptr;
|
|
iptr p = 0;
|
|
++p;
|
|
}
|
|
{ /* AIX XL C 1.02.0.0 rejects this saying
|
|
"k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
|
|
struct s { int j; const int *ap[3]; };
|
|
struct s *b; b->j = 5;
|
|
}
|
|
{ /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
|
|
const int foo = 10;
|
|
}
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:17099: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17102: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:17105: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17108: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_const=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_c_const=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:17118: result: $ac_cv_c_const" >&5
|
|
echo "${ECHO_T}$ac_cv_c_const" >&6
|
|
if test $ac_cv_c_const = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define const
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:17128: checking for off_t" >&5
|
|
echo $ECHO_N "checking for off_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_off_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17134 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((off_t *) 0)
|
|
return 0;
|
|
if (sizeof (off_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:17149: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17152: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:17155: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17158: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_off_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_off_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:17168: result: $ac_cv_type_off_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_off_t" >&6
|
|
if test $ac_cv_type_off_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define off_t long
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:17180: checking for size_t" >&5
|
|
echo $ECHO_N "checking for size_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_size_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17186 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((size_t *) 0)
|
|
return 0;
|
|
if (sizeof (size_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:17201: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17204: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:17207: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17210: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_size_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_size_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:17220: result: $ac_cv_type_size_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_size_t" >&6
|
|
if test $ac_cv_type_size_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define size_t unsigned
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:17232: checking for ssize_t" >&5
|
|
echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_ssize_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17238 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <unistd.h>
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "ssize_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then
|
|
ac_cv_type_ssize_t=yes
|
|
else
|
|
ac_cv_type_ssize_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:17256: result: $ac_cv_type_ssize_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_ssize_t" >&6
|
|
if test $ac_cv_type_ssize_t = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define ssize_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:17266: checking for pid_t" >&5
|
|
echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_pid_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17272 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((pid_t *) 0)
|
|
return 0;
|
|
if (sizeof (pid_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:17287: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17290: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:17293: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17296: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_pid_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_pid_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:17306: result: $ac_cv_type_pid_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_pid_t" >&6
|
|
if test $ac_cv_type_pid_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define pid_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:17318: checking for uid_t in sys/types.h" >&5
|
|
echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6
|
|
if test "${ac_cv_type_uid_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17324 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "uid_t" >/dev/null 2>&1; then
|
|
ac_cv_type_uid_t=yes
|
|
else
|
|
ac_cv_type_uid_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:17338: result: $ac_cv_type_uid_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_uid_t" >&6
|
|
if test $ac_cv_type_uid_t = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define uid_t int
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define gid_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:17352: checking for mode_t" >&5
|
|
echo $ECHO_N "checking for mode_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_mode_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17358 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "mode_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then
|
|
ac_cv_type_mode_t=yes
|
|
else
|
|
ac_cv_type_mode_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:17376: result: $ac_cv_type_mode_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_mode_t" >&6
|
|
if test $ac_cv_type_mode_t = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define mode_t unsigned short
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:17386: checking for sig_atomic_t" >&5
|
|
echo $ECHO_N "checking for sig_atomic_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_sig_atomic_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17392 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <signal.h>
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "sig_atomic_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then
|
|
ac_cv_type_sig_atomic_t=yes
|
|
else
|
|
ac_cv_type_sig_atomic_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:17410: result: $ac_cv_type_sig_atomic_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_sig_atomic_t" >&6
|
|
if test $ac_cv_type_sig_atomic_t = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define sig_atomic_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "long long" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:17421: checking for long long" >&5
|
|
echo $ECHO_N "checking for long long... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17427 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
long long foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:17444: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17447: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:17450: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17453: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:17464: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo long long | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:17469: checking for long long" >&5
|
|
echo $ECHO_N "checking for long long... $ECHO_C" >&6
|
|
if test "${ac_cv_type_long_long+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17475 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((long long *) 0)
|
|
return 0;
|
|
if (sizeof (long long))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:17490: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17493: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:17496: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17499: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_long_long=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_long_long=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:17509: result: $ac_cv_type_long_long" >&5
|
|
echo "${ECHO_T}$ac_cv_type_long_long" >&6
|
|
if test $ac_cv_type_long_long = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_LONG_LONG 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:17527: checking whether time.h and sys/time.h may both be included" >&5
|
|
echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
|
|
if test "${ac_cv_header_time+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17533 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <time.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((struct tm *) 0)
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:17549: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17552: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:17555: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17558: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_header_time=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_header_time=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:17568: result: $ac_cv_header_time" >&5
|
|
echo "${ECHO_T}$ac_cv_header_time" >&6
|
|
if test $ac_cv_header_time = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define TIME_WITH_SYS_TIME 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:17578: checking whether struct tm is in sys/time.h or time.h" >&5
|
|
echo $ECHO_N "checking whether struct tm is in sys/time.h or time.h... $ECHO_C" >&6
|
|
if test "${ac_cv_struct_tm+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17584 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <time.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
struct tm *tp; tp->tm_sec;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:17598: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17601: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:17604: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17607: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_struct_tm=time.h
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_struct_tm=sys/time.h
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:17617: result: $ac_cv_struct_tm" >&5
|
|
echo "${ECHO_T}$ac_cv_struct_tm" >&6
|
|
if test $ac_cv_struct_tm = sys/time.h; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define TM_IN_SYS_TIME 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:17627: checking for ANSI C header files" >&5
|
|
echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
|
|
if test "${ac_cv_header_stdc+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17633 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <float.h>
|
|
|
|
_ACEOF
|
|
if { (eval echo "$as_me:17641: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:17647: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
ac_cv_header_stdc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17669 "configure"
|
|
#include "confdefs.h"
|
|
#include <string.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "memchr" >/dev/null 2>&1; then
|
|
:
|
|
else
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17687 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "free" >/dev/null 2>&1; then
|
|
:
|
|
else
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
|
|
if test "$cross_compiling" = yes; then
|
|
:
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17708 "configure"
|
|
#include "confdefs.h"
|
|
#include <ctype.h>
|
|
#if ((' ' & 0x0FF) == 0x020)
|
|
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
|
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
|
|
#else
|
|
# define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \
|
|
|| ('j' <= (c) && (c) <= 'r') \
|
|
|| ('s' <= (c) && (c) <= 'z'))
|
|
# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
|
|
#endif
|
|
|
|
#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
|
|
int
|
|
main ()
|
|
{
|
|
int i;
|
|
for (i = 0; i < 256; i++)
|
|
if (XOR (islower (i), ISLOWER (i))
|
|
|| toupper (i) != TOUPPER (i))
|
|
exit(2);
|
|
exit (0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:17734: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17737: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:17739: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:17742: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
fi
|
|
echo "$as_me:17755: result: $ac_cv_header_stdc" >&5
|
|
echo "${ECHO_T}$ac_cv_header_stdc" >&6
|
|
if test $ac_cv_header_stdc = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define STDC_HEADERS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
for ac_header in \
|
|
arpa/ftp.h \
|
|
arpa/inet.h \
|
|
arpa/nameser.h \
|
|
arpa/telnet.h \
|
|
bind/bitypes.h \
|
|
bsdsetjmp.h \
|
|
crypt.h \
|
|
curses.h \
|
|
dirent.h \
|
|
dlfcn.h \
|
|
err.h \
|
|
errno.h \
|
|
fcntl.h \
|
|
fnmatch.h \
|
|
grp.h \
|
|
inttypes.h \
|
|
io.h \
|
|
libutil.h \
|
|
limits.h \
|
|
maillock.h \
|
|
net/if.h \
|
|
netdb.h \
|
|
netinet/in.h \
|
|
netinet/in6.h \
|
|
netinet/in6_machtypes.h \
|
|
netinet/in6_var.h \
|
|
netinet/in_systm.h \
|
|
netinet6/in6.h \
|
|
netinfo/ni.h \
|
|
paths.h \
|
|
pthread.h \
|
|
pty.h \
|
|
pwd.h \
|
|
resolv.h \
|
|
sac.h \
|
|
security/pam_modules.h \
|
|
sgtty.h \
|
|
shadow.h \
|
|
siad.h \
|
|
signal.h \
|
|
stropts.h \
|
|
sys/bitypes.h \
|
|
sys/category.h \
|
|
sys/file.h \
|
|
sys/filio.h \
|
|
sys/ioccom.h \
|
|
sys/ioctl.h \
|
|
sys/param.h \
|
|
sys/proc.h \
|
|
sys/pty.h \
|
|
sys/ptyio.h \
|
|
sys/ptyvar.h \
|
|
sys/resource.h \
|
|
sys/select.h \
|
|
sys/socket.h \
|
|
sys/sockio.h \
|
|
sys/stat.h \
|
|
sys/str_tty.h \
|
|
sys/stream.h \
|
|
sys/stropts.h \
|
|
sys/strtty.h \
|
|
sys/syscall.h \
|
|
sys/sysctl.h \
|
|
sys/termio.h \
|
|
sys/time.h \
|
|
sys/timeb.h \
|
|
sys/times.h \
|
|
sys/tty.h \
|
|
sys/types.h \
|
|
sys/uio.h \
|
|
sys/un.h \
|
|
sys/utsname.h \
|
|
sys/wait.h \
|
|
syslog.h \
|
|
term.h \
|
|
termcap.h \
|
|
termio.h \
|
|
termios.h \
|
|
time.h \
|
|
tmpdir.h \
|
|
udb.h \
|
|
unistd.h \
|
|
userconf.h \
|
|
usersec.h \
|
|
util.h \
|
|
utmp.h \
|
|
utmpx.h \
|
|
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:17856: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17862 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:17866: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:17872: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:17891: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
for ac_header in standards.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:17904: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17910 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:17914: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:17920: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:17939: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
for i in netinet/ip.h netinet/tcp.h; do
|
|
|
|
cv=`echo "$i" | sed 'y%./+-%__p_%'`
|
|
|
|
echo "$as_me:17953: checking for $i" >&5
|
|
echo $ECHO_N "checking for $i... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_header_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 17959 "configure"
|
|
#include "confdefs.h"
|
|
\
|
|
#ifdef HAVE_STANDARDS_H
|
|
#include <standards.h>
|
|
#endif
|
|
#include <$i>
|
|
|
|
_ACEOF
|
|
if { (eval echo "$as_me:17968: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:17974: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "ac_cv_header_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_header_$cv=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:17993: result: `eval echo '${'ac_cv_header_$cv'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'ac_cv_header_$cv'}'`" >&6
|
|
ac_res=`eval echo \\$ac_cv_header_$cv`
|
|
if test "$ac_res" = yes; then
|
|
ac_tr_hdr=HAVE_`echo $i | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
if false;then
|
|
|
|
for ac_header in netinet/ip.h netinet/tcp.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:18009: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18015 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:18019: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:18025: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:18044: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
|
|
# Check whether --enable-netinfo or --disable-netinfo was given.
|
|
if test "${enable_netinfo+set}" = set; then
|
|
enableval="$enable_netinfo"
|
|
|
|
fi;
|
|
|
|
if test "$ac_cv_header_netinfo_ni_h" = yes -a "$enable_netinfo" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_NETINFO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_header_err_h" = yes; then
|
|
have_err_h_TRUE=
|
|
have_err_h_FALSE='#'
|
|
else
|
|
have_err_h_TRUE='#'
|
|
have_err_h_FALSE=
|
|
fi
|
|
|
|
if test "$ac_cv_header_fnmatch_h" = yes; then
|
|
have_fnmatch_h_TRUE=
|
|
have_fnmatch_h_FALSE='#'
|
|
else
|
|
have_fnmatch_h_TRUE='#'
|
|
have_fnmatch_h_FALSE=
|
|
fi
|
|
|
|
echo "$as_me:18086: checking for socket" >&5
|
|
echo $ECHO_N "checking for socket... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_socket+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_socket\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" socket; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18104 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
socket()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:18116: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18119: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:18122: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18125: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_socket=$ac_lib; else ac_cv_funclib_socket=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_socket=\${ac_cv_funclib_socket-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_socket"
|
|
|
|
if false; then
|
|
|
|
for ac_func in socket
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:18147: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18153 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:18184: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18187: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:18190: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18193: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:18203: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# socket
|
|
eval "ac_tr_func=HAVE_`echo socket | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_socket=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_socket=yes"
|
|
eval "LIB_socket="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:18227: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_socket=no"
|
|
eval "LIB_socket="
|
|
echo "$as_me:18233: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_socket=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:18247: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_socket"; then
|
|
LIBS="$LIB_socket $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:18256: checking for gethostbyname" >&5
|
|
echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_gethostbyname+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_gethostbyname\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" nsl; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18274 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
gethostbyname()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:18286: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18289: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:18292: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18295: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_gethostbyname=$ac_lib; else ac_cv_funclib_gethostbyname=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_gethostbyname=\${ac_cv_funclib_gethostbyname-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_gethostbyname"
|
|
|
|
if false; then
|
|
|
|
for ac_func in gethostbyname
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:18317: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18323 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:18354: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18357: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:18360: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18363: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:18373: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# gethostbyname
|
|
eval "ac_tr_func=HAVE_`echo gethostbyname | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_gethostbyname=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_gethostbyname=yes"
|
|
eval "LIB_gethostbyname="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:18397: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_gethostbyname=no"
|
|
eval "LIB_gethostbyname="
|
|
echo "$as_me:18403: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_gethostbyname=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:18417: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_gethostbyname"; then
|
|
LIBS="$LIB_gethostbyname $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:18426: checking for syslog" >&5
|
|
echo $ECHO_N "checking for syslog... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_syslog+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_syslog\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" syslog; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18444 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
syslog()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:18456: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18459: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:18462: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18465: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_syslog=$ac_lib; else ac_cv_funclib_syslog=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_syslog=\${ac_cv_funclib_syslog-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_syslog"
|
|
|
|
if false; then
|
|
|
|
for ac_func in syslog
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:18487: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18493 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:18524: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18527: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:18530: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18533: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:18543: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# syslog
|
|
eval "ac_tr_func=HAVE_`echo syslog | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_syslog=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_syslog=yes"
|
|
eval "LIB_syslog="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:18567: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_syslog=no"
|
|
eval "LIB_syslog="
|
|
echo "$as_me:18573: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_syslog=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:18587: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_syslog"; then
|
|
LIBS="$LIB_syslog $LIBS"
|
|
fi
|
|
|
|
# Check whether --with-ipv6 or --without-ipv6 was given.
|
|
if test "${with_ipv6+set}" = set; then
|
|
withval="$with_ipv6"
|
|
|
|
if test "$withval" = "no"; then
|
|
ac_cv_lib_ipv6=no
|
|
fi
|
|
fi;
|
|
save_CFLAGS="${CFLAGS}"
|
|
if test "${ac_cv_lib_ipv6+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
v6type=unknown
|
|
v6lib=none
|
|
|
|
echo "$as_me:18611: checking ipv6 stack type" >&5
|
|
echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6
|
|
for i in v6d toshiba kame inria zeta linux; do
|
|
case $i in
|
|
v6d)
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18617 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include </usr/local/v6/include/sys/types.h>
|
|
#ifdef __V6D__
|
|
yes
|
|
#endif
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
v6type=$i; v6lib=v6;
|
|
v6libdir=/usr/local/v6/lib;
|
|
CFLAGS="-I/usr/local/v6/include $CFLAGS"
|
|
fi
|
|
rm -f conftest*
|
|
|
|
;;
|
|
toshiba)
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18636 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/param.h>
|
|
#ifdef _TOSHIBA_INET6
|
|
yes
|
|
#endif
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
v6type=$i; v6lib=inet6;
|
|
v6libdir=/usr/local/v6/lib;
|
|
CFLAGS="-DINET6 $CFLAGS"
|
|
fi
|
|
rm -f conftest*
|
|
|
|
;;
|
|
kame)
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18655 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <netinet/in.h>
|
|
#ifdef __KAME__
|
|
yes
|
|
#endif
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
v6type=$i; v6lib=inet6;
|
|
v6libdir=/usr/local/v6/lib;
|
|
CFLAGS="-DINET6 $CFLAGS"
|
|
fi
|
|
rm -f conftest*
|
|
|
|
;;
|
|
inria)
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18674 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <netinet/in.h>
|
|
#ifdef IPV6_INRIA_VERSION
|
|
yes
|
|
#endif
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
v6type=$i; CFLAGS="-DINET6 $CFLAGS"
|
|
fi
|
|
rm -f conftest*
|
|
|
|
;;
|
|
zeta)
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18691 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/param.h>
|
|
#ifdef _ZETA_MINAMI_INET6
|
|
yes
|
|
#endif
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
v6type=$i; v6lib=inet6;
|
|
v6libdir=/usr/local/v6/lib;
|
|
CFLAGS="-DINET6 $CFLAGS"
|
|
fi
|
|
rm -f conftest*
|
|
|
|
;;
|
|
linux)
|
|
if test -d /usr/inet6; then
|
|
v6type=$i
|
|
v6lib=inet6
|
|
v6libdir=/usr/inet6
|
|
CFLAGS="-DINET6 $CFLAGS"
|
|
fi
|
|
;;
|
|
esac
|
|
if test "$v6type" != "unknown"; then
|
|
break
|
|
fi
|
|
done
|
|
echo "$as_me:18721: result: $v6type" >&5
|
|
echo "${ECHO_T}$v6type" >&6
|
|
|
|
if test "$v6lib" != "none"; then
|
|
for dir in $v6libdir /usr/local/v6/lib /usr/local/lib; do
|
|
if test -d $dir -a -f $dir/lib$v6lib.a; then
|
|
LIBS="-L$dir -l$v6lib $LIBS"
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18733 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_H
|
|
#include <netinet/in6.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
struct sockaddr_in6 sin6;
|
|
int s;
|
|
|
|
s = socket(AF_INET6, SOCK_DGRAM, 0);
|
|
|
|
sin6.sin6_family = AF_INET6;
|
|
sin6.sin6_port = htons(17);
|
|
sin6.sin6_addr = in6addr_any;
|
|
bind(s, (struct sockaddr *)&sin6, sizeof(sin6));
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:18768: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18771: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:18774: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18777: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_ipv6=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_ipv6=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
|
|
echo "$as_me:18788: checking for IPv6" >&5
|
|
echo $ECHO_N "checking for IPv6... $ECHO_C" >&6
|
|
echo "$as_me:18790: result: $ac_cv_lib_ipv6" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_ipv6" >&6
|
|
if test "$ac_cv_lib_ipv6" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_IPV6 1
|
|
EOF
|
|
|
|
else
|
|
CFLAGS="${save_CFLAGS}"
|
|
fi
|
|
|
|
if test "$ac_cv_lib_ipv6" = yes; then
|
|
echo "$as_me:18803: checking for in6addr_loopback" >&5
|
|
echo $ECHO_N "checking for in6addr_loopback... $ECHO_C" >&6
|
|
if test "${ac_cv_var_in6addr_loopback+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18810 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_H
|
|
#include <netinet/in6.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
|
|
struct sockaddr_in6 sin6;
|
|
sin6.sin6_addr = in6addr_loopback;
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:18837: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18840: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:18843: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18846: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_var_in6addr_loopback=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_var_in6addr_loopback=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:18856: result: $ac_cv_var_in6addr_loopback" >&5
|
|
echo "${ECHO_T}$ac_cv_var_in6addr_loopback" >&6
|
|
if test "$ac_cv_var_in6addr_loopback" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_IN6ADDR_LOOPBACK 1
|
|
EOF
|
|
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:18867: checking for logwtmp" >&5
|
|
echo $ECHO_N "checking for logwtmp... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_logwtmp+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_logwtmp\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" util; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18885 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
logwtmp()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:18897: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18900: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:18903: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18906: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_logwtmp=$ac_lib; else ac_cv_funclib_logwtmp=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_logwtmp=\${ac_cv_funclib_logwtmp-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_logwtmp"
|
|
|
|
if false; then
|
|
|
|
for ac_func in logwtmp
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:18928: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 18934 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:18965: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18968: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:18971: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:18974: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:18984: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# logwtmp
|
|
eval "ac_tr_func=HAVE_`echo logwtmp | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_logwtmp=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_logwtmp=yes"
|
|
eval "LIB_logwtmp="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:19008: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_logwtmp=no"
|
|
eval "LIB_logwtmp="
|
|
echo "$as_me:19014: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_logwtmp=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:19028: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:19033: checking for logout" >&5
|
|
echo $ECHO_N "checking for logout... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_logout+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_logout\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" util; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19051 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
logout()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19063: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19066: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19069: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19072: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_logout=$ac_lib; else ac_cv_funclib_logout=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_logout=\${ac_cv_funclib_logout-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_logout"
|
|
|
|
if false; then
|
|
|
|
for ac_func in logout
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:19094: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19100 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19131: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19134: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19137: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19140: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:19150: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# logout
|
|
eval "ac_tr_func=HAVE_`echo logout | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_logout=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_logout=yes"
|
|
eval "LIB_logout="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:19174: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_logout=no"
|
|
eval "LIB_logout="
|
|
echo "$as_me:19180: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_logout=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:19194: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:19199: checking for openpty" >&5
|
|
echo $ECHO_N "checking for openpty... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_openpty+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_openpty\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" util; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19217 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
openpty()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19229: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19232: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19235: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19238: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_openpty=$ac_lib; else ac_cv_funclib_openpty=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_openpty=\${ac_cv_funclib_openpty-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_openpty"
|
|
|
|
if false; then
|
|
|
|
for ac_func in openpty
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:19260: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19266 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19297: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19300: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19303: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19306: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:19316: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# openpty
|
|
eval "ac_tr_func=HAVE_`echo openpty | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_openpty=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_openpty=yes"
|
|
eval "LIB_openpty="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:19340: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_openpty=no"
|
|
eval "LIB_openpty="
|
|
echo "$as_me:19346: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_openpty=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:19360: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:19365: checking for tgetent" >&5
|
|
echo $ECHO_N "checking for tgetent... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_tgetent\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" termcap ncurses curses; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19383 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
tgetent()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19395: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19398: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19401: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19404: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_tgetent=$ac_lib; else ac_cv_funclib_tgetent=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_tgetent=\${ac_cv_funclib_tgetent-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_tgetent"
|
|
|
|
if false; then
|
|
|
|
for ac_func in tgetent
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:19426: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19432 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19463: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19466: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19469: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19472: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:19482: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# tgetent
|
|
eval "ac_tr_func=HAVE_`echo tgetent | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_tgetent=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_tgetent=yes"
|
|
eval "LIB_tgetent="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:19506: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_tgetent=no"
|
|
eval "LIB_tgetent="
|
|
echo "$as_me:19512: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_tgetent=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:19526: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:19531: checking for gethostbyname2" >&5
|
|
echo $ECHO_N "checking for gethostbyname2... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_gethostbyname2+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_gethostbyname2\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" inet6 ip6; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19549 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
gethostbyname2()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19561: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19564: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19567: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19570: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_gethostbyname2=$ac_lib; else ac_cv_funclib_gethostbyname2=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_gethostbyname2=\${ac_cv_funclib_gethostbyname2-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_gethostbyname2"
|
|
|
|
if false; then
|
|
|
|
for ac_func in gethostbyname2
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:19592: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19598 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19629: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19632: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19635: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19638: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:19648: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# gethostbyname2
|
|
eval "ac_tr_func=HAVE_`echo gethostbyname2 | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_gethostbyname2=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_gethostbyname2=yes"
|
|
eval "LIB_gethostbyname2="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:19672: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_gethostbyname2=no"
|
|
eval "LIB_gethostbyname2="
|
|
echo "$as_me:19678: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_gethostbyname2=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:19692: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_gethostbyname2"; then
|
|
LIBS="$LIB_gethostbyname2 $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:19701: checking for res_search" >&5
|
|
echo $ECHO_N "checking for res_search... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_res_search+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_res_search\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" resolv; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19719 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_NAMESER_H
|
|
#include <arpa/nameser.h>
|
|
#endif
|
|
#ifdef HAVE_RESOLV_H
|
|
#include <resolv.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
res_search(0,0,0,0,0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19745: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19748: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19751: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19754: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_res_search=$ac_lib; else ac_cv_funclib_res_search=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_res_search=\${ac_cv_funclib_res_search-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_res_search"
|
|
|
|
if false; then
|
|
|
|
for ac_func in res_search
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:19776: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19782 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19813: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19816: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19819: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19822: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:19832: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# res_search
|
|
eval "ac_tr_func=HAVE_`echo res_search | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_res_search=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_res_search=yes"
|
|
eval "LIB_res_search="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:19856: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_res_search=no"
|
|
eval "LIB_res_search="
|
|
echo "$as_me:19862: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_res_search=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:19876: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_res_search"; then
|
|
LIBS="$LIB_res_search $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:19885: checking for dn_expand" >&5
|
|
echo $ECHO_N "checking for dn_expand... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_dn_expand+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_dn_expand\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" resolv; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19903 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN_H
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#ifdef HAVE_ARPA_NAMESER_H
|
|
#include <arpa/nameser.h>
|
|
#endif
|
|
#ifdef HAVE_RESOLV_H
|
|
#include <resolv.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
dn_expand(0,0,0,0,0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19929: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19932: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:19935: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:19938: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_dn_expand=$ac_lib; else ac_cv_funclib_dn_expand=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_dn_expand=\${ac_cv_funclib_dn_expand-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_dn_expand"
|
|
|
|
if false; then
|
|
|
|
for ac_func in dn_expand
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:19960: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 19966 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:19997: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20000: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20003: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20006: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:20016: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# dn_expand
|
|
eval "ac_tr_func=HAVE_`echo dn_expand | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_dn_expand=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_dn_expand=yes"
|
|
eval "LIB_dn_expand="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:20040: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_dn_expand=no"
|
|
eval "LIB_dn_expand="
|
|
echo "$as_me:20046: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_dn_expand=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:20060: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test -n "$LIB_dn_expand"; then
|
|
LIBS="$LIB_dn_expand $LIBS"
|
|
fi
|
|
|
|
echo "$as_me:20069: checking for working snprintf" >&5
|
|
echo $ECHO_N "checking for working snprintf... $ECHO_C" >&6
|
|
if test "${ac_cv_func_snprintf_working+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_func_snprintf_working=yes
|
|
if test "$cross_compiling" = yes; then
|
|
:
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20079 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
int main()
|
|
{
|
|
char foo[3];
|
|
snprintf(foo, 2, "12");
|
|
return strcmp(foo, "1");
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:20092: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20095: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20097: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20100: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_snprintf_working=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:20112: result: $ac_cv_func_snprintf_working" >&5
|
|
echo "${ECHO_T}$ac_cv_func_snprintf_working" >&6
|
|
|
|
if test "$ac_cv_func_snprintf_working" = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_SNPRINTF 1
|
|
EOF
|
|
|
|
fi
|
|
if test "$ac_cv_func_snprintf_working" = yes; then
|
|
|
|
if test "$ac_cv_func_snprintf+set" != set -o "$ac_cv_func_snprintf" = yes; then
|
|
echo "$as_me:20125: checking if snprintf needs a prototype" >&5
|
|
echo $ECHO_N "checking if snprintf needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_snprintf_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20131 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int snprintf (struct foo*);
|
|
snprintf(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:20146: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20149: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:20152: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20155: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_snprintf_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_snprintf_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:20165: result: $ac_cv_func_snprintf_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_snprintf_noproto" >&6
|
|
|
|
if test "$ac_cv_func_snprintf_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_SNPRINTF_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:20180: checking for working vsnprintf" >&5
|
|
echo $ECHO_N "checking for working vsnprintf... $ECHO_C" >&6
|
|
if test "${ac_cv_func_vsnprintf_working+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_func_vsnprintf_working=yes
|
|
if test "$cross_compiling" = yes; then
|
|
:
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20190 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
|
|
int foo(int num, ...)
|
|
{
|
|
char bar[3];
|
|
va_list arg;
|
|
va_start(arg, num);
|
|
vsnprintf(bar, 2, "%s", arg);
|
|
va_end(arg);
|
|
return strcmp(bar, "1");
|
|
}
|
|
|
|
int main()
|
|
{
|
|
return foo(0, "12");
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:20213: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20216: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20218: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20221: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_vsnprintf_working=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:20233: result: $ac_cv_func_vsnprintf_working" >&5
|
|
echo "${ECHO_T}$ac_cv_func_vsnprintf_working" >&6
|
|
|
|
if test "$ac_cv_func_vsnprintf_working" = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_VSNPRINTF 1
|
|
EOF
|
|
|
|
fi
|
|
if test "$ac_cv_func_vsnprintf_working" = yes; then
|
|
|
|
if test "$ac_cv_func_vsnprintf+set" != set -o "$ac_cv_func_vsnprintf" = yes; then
|
|
echo "$as_me:20246: checking if vsnprintf needs a prototype" >&5
|
|
echo $ECHO_N "checking if vsnprintf needs a prototype... $ECHO_C" >&6
|
|
if test "${ac_cv_func_vsnprintf_noproto+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20252 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct foo { int foo; } xx;
|
|
extern int vsnprintf (struct foo*);
|
|
vsnprintf(&xx);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:20267: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20270: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:20273: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20276: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_func_vsnprintf_noproto=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_func_vsnprintf_noproto=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:20286: result: $ac_cv_func_vsnprintf_noproto" >&5
|
|
echo "${ECHO_T}$ac_cv_func_vsnprintf_noproto" >&6
|
|
|
|
if test "$ac_cv_func_vsnprintf_noproto" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define NEED_VSNPRINTF_PROTO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
for ac_func in \
|
|
_getpty \
|
|
_scrsize \
|
|
fcntl \
|
|
gettimeofday \
|
|
getuid \
|
|
grantpt \
|
|
mktime \
|
|
ptsname \
|
|
rand \
|
|
random \
|
|
revoke \
|
|
select \
|
|
setitimer \
|
|
setpcred \
|
|
setpgid \
|
|
setproctitle \
|
|
setregid \
|
|
setresgid \
|
|
setresuid \
|
|
setreuid \
|
|
setsid \
|
|
setutent \
|
|
sigaction \
|
|
strstr \
|
|
timegm \
|
|
ttyname \
|
|
ttyslot \
|
|
umask \
|
|
unlockpt \
|
|
vhangup \
|
|
yp_get_default_domain \
|
|
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:20336: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20342 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:20373: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20376: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20379: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20382: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:20392: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
for ac_header in capability.h sys/capability.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:20405: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_Header+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20411 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:20415: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:20421: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:20440: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
for ac_func in sgi_getcapabilitybyname cap_set_proc
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:20453: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20459 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:20490: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20493: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20496: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20499: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:20509: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:20519: checking for getpwnam_r" >&5
|
|
echo $ECHO_N "checking for getpwnam_r... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_getpwnam_r+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_getpwnam_r\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" c_r; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20537 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
getpwnam_r()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:20549: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20552: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20555: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20558: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_getpwnam_r=$ac_lib; else ac_cv_funclib_getpwnam_r=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_getpwnam_r=\${ac_cv_funclib_getpwnam_r-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_getpwnam_r"
|
|
|
|
if false; then
|
|
|
|
for ac_func in getpwnam_r
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:20580: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20586 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:20617: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20620: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20623: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20626: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:20636: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# getpwnam_r
|
|
eval "ac_tr_func=HAVE_`echo getpwnam_r | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_getpwnam_r=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_getpwnam_r=yes"
|
|
eval "LIB_getpwnam_r="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:20660: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_getpwnam_r=no"
|
|
eval "LIB_getpwnam_r="
|
|
echo "$as_me:20666: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_getpwnam_r=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:20680: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test "$ac_cv_func_getpwnam_r" = yes; then
|
|
echo "$as_me:20686: checking if getpwnam_r is posix" >&5
|
|
echo $ECHO_N "checking if getpwnam_r is posix... $ECHO_C" >&6
|
|
if test "${ac_cv_func_getpwnam_r_posix+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_libs="$LIBS"
|
|
LIBS="$LIBS $LIB_getpwnam_r"
|
|
if test "$cross_compiling" = yes; then
|
|
:
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20697 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <pwd.h>
|
|
int main()
|
|
{
|
|
struct passwd pw, *pwd;
|
|
return getpwnam_r("", &pw, NULL, 0, &pwd) < 0;
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:20709: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20712: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20714: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20717: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_getpwnam_r_posix=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_getpwnam_r_posix=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
LIBS="$ac_libs"
|
|
fi
|
|
echo "$as_me:20730: result: $ac_cv_func_getpwnam_r_posix" >&5
|
|
echo "${ECHO_T}$ac_cv_func_getpwnam_r_posix" >&6
|
|
if test "$ac_cv_func_getpwnam_r_posix" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define POSIX_GETPWNAM_R 1
|
|
EOF
|
|
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:20741: checking for getsockopt" >&5
|
|
echo $ECHO_N "checking for getsockopt... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_getsockopt+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_getsockopt\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20759 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
getsockopt(0,0,0,0,0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:20776: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20779: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20782: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20785: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_getsockopt=$ac_lib; else ac_cv_funclib_getsockopt=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_getsockopt=\${ac_cv_funclib_getsockopt-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_getsockopt"
|
|
|
|
if false; then
|
|
|
|
for ac_func in getsockopt
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:20807: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20813 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:20844: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20847: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20850: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20853: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:20863: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# getsockopt
|
|
eval "ac_tr_func=HAVE_`echo getsockopt | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_getsockopt=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_getsockopt=yes"
|
|
eval "LIB_getsockopt="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:20887: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_getsockopt=no"
|
|
eval "LIB_getsockopt="
|
|
echo "$as_me:20893: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_getsockopt=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:20907: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:20912: checking for setsockopt" >&5
|
|
echo $ECHO_N "checking for setsockopt... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_setsockopt+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_setsockopt\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" ; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20930 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
#include <sys/socket.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
setsockopt(0,0,0,0,0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:20947: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20950: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:20953: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:20956: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_setsockopt=$ac_lib; else ac_cv_funclib_setsockopt=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_setsockopt=\${ac_cv_funclib_setsockopt-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_setsockopt"
|
|
|
|
if false; then
|
|
|
|
for ac_func in setsockopt
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:20978: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 20984 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:21015: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21018: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:21021: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21024: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21034: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# setsockopt
|
|
eval "ac_tr_func=HAVE_`echo setsockopt | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_setsockopt=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_setsockopt=yes"
|
|
eval "LIB_setsockopt="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:21058: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_setsockopt=no"
|
|
eval "LIB_setsockopt="
|
|
echo "$as_me:21064: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_setsockopt=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:21078: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
for ac_func in getudbnam setlim
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:21086: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21092 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:21123: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21126: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:21129: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21132: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21142: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:21152: checking for ut_addr in struct utmp" >&5
|
|
echo $ECHO_N "checking for ut_addr in struct utmp... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_utmp_ut_addr+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21159 "configure"
|
|
#include "confdefs.h"
|
|
#include <utmp.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct utmp x; x.ut_addr;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21171: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21174: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21177: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21180: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_utmp_ut_addr=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_utmp_ut_addr=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21190: result: $ac_cv_type_struct_utmp_ut_addr" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_utmp_ut_addr" >&6
|
|
if test "$ac_cv_type_struct_utmp_ut_addr" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_UTMP_UT_ADDR 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:21200: checking for ut_host in struct utmp" >&5
|
|
echo $ECHO_N "checking for ut_host in struct utmp... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_utmp_ut_host+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21207 "configure"
|
|
#include "confdefs.h"
|
|
#include <utmp.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct utmp x; x.ut_host;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21219: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21222: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21225: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21228: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_utmp_ut_host=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_utmp_ut_host=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21238: result: $ac_cv_type_struct_utmp_ut_host" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_utmp_ut_host" >&6
|
|
if test "$ac_cv_type_struct_utmp_ut_host" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_UTMP_UT_HOST 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:21248: checking for ut_id in struct utmp" >&5
|
|
echo $ECHO_N "checking for ut_id in struct utmp... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_utmp_ut_id+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21255 "configure"
|
|
#include "confdefs.h"
|
|
#include <utmp.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct utmp x; x.ut_id;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21267: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21270: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21273: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21276: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_utmp_ut_id=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_utmp_ut_id=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21286: result: $ac_cv_type_struct_utmp_ut_id" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_utmp_ut_id" >&6
|
|
if test "$ac_cv_type_struct_utmp_ut_id" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_UTMP_UT_ID 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:21296: checking for ut_pid in struct utmp" >&5
|
|
echo $ECHO_N "checking for ut_pid in struct utmp... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_utmp_ut_pid+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21303 "configure"
|
|
#include "confdefs.h"
|
|
#include <utmp.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct utmp x; x.ut_pid;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21315: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21318: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21321: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21324: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_utmp_ut_pid=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_utmp_ut_pid=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21334: result: $ac_cv_type_struct_utmp_ut_pid" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_utmp_ut_pid" >&6
|
|
if test "$ac_cv_type_struct_utmp_ut_pid" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_UTMP_UT_PID 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:21344: checking for ut_type in struct utmp" >&5
|
|
echo $ECHO_N "checking for ut_type in struct utmp... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_utmp_ut_type+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21351 "configure"
|
|
#include "confdefs.h"
|
|
#include <utmp.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct utmp x; x.ut_type;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21363: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21366: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21369: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21372: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_utmp_ut_type=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_utmp_ut_type=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21382: result: $ac_cv_type_struct_utmp_ut_type" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_utmp_ut_type" >&6
|
|
if test "$ac_cv_type_struct_utmp_ut_type" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_UTMP_UT_TYPE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:21392: checking for ut_user in struct utmp" >&5
|
|
echo $ECHO_N "checking for ut_user in struct utmp... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_utmp_ut_user+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21399 "configure"
|
|
#include "confdefs.h"
|
|
#include <utmp.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct utmp x; x.ut_user;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21411: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21414: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21417: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21420: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_utmp_ut_user=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_utmp_ut_user=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21430: result: $ac_cv_type_struct_utmp_ut_user" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_utmp_ut_user" >&6
|
|
if test "$ac_cv_type_struct_utmp_ut_user" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_UTMP_UT_USER 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:21440: checking for ut_exit in struct utmpx" >&5
|
|
echo $ECHO_N "checking for ut_exit in struct utmpx... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_utmpx_ut_exit+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21447 "configure"
|
|
#include "confdefs.h"
|
|
#include <utmpx.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct utmpx x; x.ut_exit;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21459: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21462: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21465: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21468: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_utmpx_ut_exit=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_utmpx_ut_exit=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21478: result: $ac_cv_type_struct_utmpx_ut_exit" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_utmpx_ut_exit" >&6
|
|
if test "$ac_cv_type_struct_utmpx_ut_exit" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_UTMPX_UT_EXIT 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:21488: checking for ut_syslen in struct utmpx" >&5
|
|
echo $ECHO_N "checking for ut_syslen in struct utmpx... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_utmpx_ut_syslen+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21495 "configure"
|
|
#include "confdefs.h"
|
|
#include <utmpx.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct utmpx x; x.ut_syslen;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21507: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21510: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21513: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21516: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_utmpx_ut_syslen=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_utmpx_ut_syslen=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21526: result: $ac_cv_type_struct_utmpx_ut_syslen" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_utmpx_ut_syslen" >&6
|
|
if test "$ac_cv_type_struct_utmpx_ut_syslen" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_UTMPX_UT_SYSLEN 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:21536: checking for tm_gmtoff in struct tm" >&5
|
|
echo $ECHO_N "checking for tm_gmtoff in struct tm... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_tm_tm_gmtoff+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21543 "configure"
|
|
#include "confdefs.h"
|
|
#include <time.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct tm x; x.tm_gmtoff;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21555: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21558: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21561: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21564: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_tm_tm_gmtoff=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_tm_tm_gmtoff=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21574: result: $ac_cv_type_struct_tm_tm_gmtoff" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_tm_tm_gmtoff" >&6
|
|
if test "$ac_cv_type_struct_tm_tm_gmtoff" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_TM_TM_GMTOFF 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:21584: checking for tm_zone in struct tm" >&5
|
|
echo $ECHO_N "checking for tm_zone in struct tm... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_tm_tm_zone+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21591 "configure"
|
|
#include "confdefs.h"
|
|
#include <time.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct tm x; x.tm_zone;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21603: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21606: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21609: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21612: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_tm_tm_zone=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_tm_tm_zone=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21622: result: $ac_cv_type_struct_tm_tm_zone" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_tm_tm_zone" >&6
|
|
if test "$ac_cv_type_struct_tm_tm_zone" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_TM_TM_ZONE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:21632: checking for timezone" >&5
|
|
echo $ECHO_N "checking for timezone... $ECHO_C" >&6
|
|
if test "${ac_cv_var_timezone+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21639 "configure"
|
|
#include "confdefs.h"
|
|
extern int timezone;
|
|
int foo() { return timezone; }
|
|
int
|
|
main ()
|
|
{
|
|
foo()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:21652: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21655: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:21658: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21661: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_var_timezone=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_var_timezone=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
ac_foo=`eval echo \\$ac_cv_var_timezone`
|
|
echo "$as_me:21674: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_TIMEZONE 1
|
|
EOF
|
|
|
|
echo "$as_me:21682: checking if timezone is properly declared" >&5
|
|
echo $ECHO_N "checking if timezone is properly declared... $ECHO_C" >&6
|
|
if test "${ac_cv_var_timezone_declaration+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21689 "configure"
|
|
#include "confdefs.h"
|
|
#include <time.h>
|
|
extern struct { int foo; } timezone;
|
|
int
|
|
main ()
|
|
{
|
|
timezone.foo = 1;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21702: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21705: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21708: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21711: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_var_timezone_declaration=no"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_var_timezone_declaration=yes"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:21723: result: $ac_cv_var_timezone_declaration" >&5
|
|
echo "${ECHO_T}$ac_cv_var_timezone_declaration" >&6
|
|
if eval "test \"\$ac_cv_var_timezone_declaration\" = yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_TIMEZONE_DECLARATION 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cv=`echo "sa_family_t" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:21736: checking for sa_family_t" >&5
|
|
echo $ECHO_N "checking for sa_family_t... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21742 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <sys/socket.h>
|
|
int
|
|
main ()
|
|
{
|
|
sa_family_t foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21759: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21762: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21765: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21768: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:21779: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo sa_family_t | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:21784: checking for sa_family_t" >&5
|
|
echo $ECHO_N "checking for sa_family_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_sa_family_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21790 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((sa_family_t *) 0)
|
|
return 0;
|
|
if (sizeof (sa_family_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21805: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21808: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21811: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21814: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_sa_family_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_sa_family_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21824: result: $ac_cv_type_sa_family_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_sa_family_t" >&6
|
|
if test $ac_cv_type_sa_family_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_SA_FAMILY_T 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "socklen_t" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:21843: checking for socklen_t" >&5
|
|
echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21849 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <sys/socket.h>
|
|
int
|
|
main ()
|
|
{
|
|
socklen_t foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21866: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21869: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21872: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21875: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:21886: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo socklen_t | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:21891: checking for socklen_t" >&5
|
|
echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_socklen_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21897 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((socklen_t *) 0)
|
|
return 0;
|
|
if (sizeof (socklen_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21912: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21915: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21918: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21921: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_socklen_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_socklen_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:21931: result: $ac_cv_type_socklen_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_socklen_t" >&6
|
|
if test $ac_cv_type_socklen_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_SOCKLEN_T 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "struct sockaddr" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:21950: checking for struct sockaddr" >&5
|
|
echo $ECHO_N "checking for struct sockaddr... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 21956 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <sys/socket.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct sockaddr foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:21973: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21976: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:21979: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:21982: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:21993: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo struct sockaddr | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:21998: checking for struct sockaddr" >&5
|
|
echo $ECHO_N "checking for struct sockaddr... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_sockaddr+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22004 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((struct sockaddr *) 0)
|
|
return 0;
|
|
if (sizeof (struct sockaddr))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22019: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22022: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22025: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22028: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_sockaddr=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_sockaddr=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22038: result: $ac_cv_type_struct_sockaddr" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_sockaddr" >&6
|
|
if test $ac_cv_type_struct_sockaddr = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_STRUCT_SOCKADDR 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "struct sockaddr_storage" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:22057: checking for struct sockaddr_storage" >&5
|
|
echo $ECHO_N "checking for struct sockaddr_storage... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22063 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <sys/socket.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct sockaddr_storage foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22080: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22083: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22086: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22089: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:22100: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo struct sockaddr_storage | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:22105: checking for struct sockaddr_storage" >&5
|
|
echo $ECHO_N "checking for struct sockaddr_storage... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_sockaddr_storage+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22111 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((struct sockaddr_storage *) 0)
|
|
return 0;
|
|
if (sizeof (struct sockaddr_storage))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22126: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22129: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22132: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22135: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_sockaddr_storage=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_sockaddr_storage=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22145: result: $ac_cv_type_struct_sockaddr_storage" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_sockaddr_storage" >&6
|
|
if test $ac_cv_type_struct_sockaddr_storage = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_STRUCT_SOCKADDR_STORAGE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
cv=`echo "struct addrinfo" | sed 'y%./+- %__p__%'`
|
|
echo "$as_me:22164: checking for struct addrinfo" >&5
|
|
echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6
|
|
if eval "test \"\${ac_cv_type_$cv+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22170 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#include <netdb.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct addrinfo foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22187: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22190: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22193: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22196: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "ac_cv_type_$cv=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "ac_cv_type_$cv=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
ac_foo=`eval echo \\$ac_cv_type_$cv`
|
|
echo "$as_me:22207: result: $ac_foo" >&5
|
|
echo "${ECHO_T}$ac_foo" >&6
|
|
if test "$ac_foo" = yes; then
|
|
ac_tr_hdr=HAVE_`echo struct addrinfo | sed 'y%abcdefghijklmnopqrstuvwxyz./- %ABCDEFGHIJKLMNOPQRSTUVWXYZ____%'`
|
|
if false; then
|
|
echo "$as_me:22212: checking for struct addrinfo" >&5
|
|
echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_addrinfo+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22218 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((struct addrinfo *) 0)
|
|
return 0;
|
|
if (sizeof (struct addrinfo))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22233: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22236: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22239: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22242: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_addrinfo=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_addrinfo=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22252: result: $ac_cv_type_struct_addrinfo" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_addrinfo" >&6
|
|
if test $ac_cv_type_struct_addrinfo = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_STRUCT_ADDRINFO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_hdr 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:22270: checking for struct winsize" >&5
|
|
echo $ECHO_N "checking for struct winsize... $ECHO_C" >&6
|
|
if test "${ac_cv_struct_winsize+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
ac_cv_struct_winsize=no
|
|
for i in sys/termios.h sys/ioctl.h; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22279 "configure"
|
|
#include "confdefs.h"
|
|
#include <$i>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "struct[ ]*winsize" >/dev/null 2>&1; then
|
|
ac_cv_struct_winsize=yes; break
|
|
fi
|
|
rm -f conftest*
|
|
done
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_struct_winsize" = "yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_WINSIZE 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:22300: result: $ac_cv_struct_winsize" >&5
|
|
echo "${ECHO_T}$ac_cv_struct_winsize" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22303 "configure"
|
|
#include "confdefs.h"
|
|
#include <termios.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "ws_xpixel" >/dev/null 2>&1; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_WS_XPIXEL 1
|
|
EOF
|
|
|
|
fi
|
|
rm -f conftest*
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22319 "configure"
|
|
#include "confdefs.h"
|
|
#include <termios.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "ws_ypixel" >/dev/null 2>&1; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_WS_YPIXEL 1
|
|
EOF
|
|
|
|
fi
|
|
rm -f conftest*
|
|
|
|
echo "$as_me:22334: checking for struct spwd" >&5
|
|
echo $ECHO_N "checking for struct spwd... $ECHO_C" >&6
|
|
if test "${ac_cv_struct_spwd+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22341 "configure"
|
|
#include "confdefs.h"
|
|
#include <pwd.h>
|
|
#ifdef HAVE_SHADOW_H
|
|
#include <shadow.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
struct spwd foo;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22356: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22359: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22362: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22365: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_struct_spwd=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_struct_spwd=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:22377: result: $ac_cv_struct_spwd" >&5
|
|
echo "${ECHO_T}$ac_cv_struct_spwd" >&6
|
|
|
|
if test "$ac_cv_struct_spwd" = "yes"; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_SPWD 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:22388: checking for sa_len in struct sockaddr" >&5
|
|
echo $ECHO_N "checking for sa_len in struct sockaddr... $ECHO_C" >&6
|
|
if test "${ac_cv_type_struct_sockaddr_sa_len+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22395 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct sockaddr x; x.sa_len;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22408: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22411: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22414: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22417: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_struct_sockaddr_sa_len=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_struct_sockaddr_sa_len=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22427: result: $ac_cv_type_struct_sockaddr_sa_len" >&5
|
|
echo "${ECHO_T}$ac_cv_type_struct_sockaddr_sa_len" >&6
|
|
if test "$ac_cv_type_struct_sockaddr_sa_len" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_SOCKADDR_SA_LEN 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:22437: checking for int8_t" >&5
|
|
echo $ECHO_N "checking for int8_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_int8_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22443 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((int8_t *) 0)
|
|
return 0;
|
|
if (sizeof (int8_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22474: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22477: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22480: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22483: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_int8_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_int8_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22493: result: $ac_cv_type_int8_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_int8_t" >&6
|
|
if test $ac_cv_type_int8_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_INT8_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:22502: checking for int16_t" >&5
|
|
echo $ECHO_N "checking for int16_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_int16_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22508 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((int16_t *) 0)
|
|
return 0;
|
|
if (sizeof (int16_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22539: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22542: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22545: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22548: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_int16_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_int16_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22558: result: $ac_cv_type_int16_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_int16_t" >&6
|
|
if test $ac_cv_type_int16_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_INT16_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:22567: checking for int32_t" >&5
|
|
echo $ECHO_N "checking for int32_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_int32_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22573 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((int32_t *) 0)
|
|
return 0;
|
|
if (sizeof (int32_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22604: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22607: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22610: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22613: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_int32_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_int32_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22623: result: $ac_cv_type_int32_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_int32_t" >&6
|
|
if test $ac_cv_type_int32_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_INT32_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:22632: checking for int64_t" >&5
|
|
echo $ECHO_N "checking for int64_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_int64_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22638 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((int64_t *) 0)
|
|
return 0;
|
|
if (sizeof (int64_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22669: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22672: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22675: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22678: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_int64_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_int64_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22688: result: $ac_cv_type_int64_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_int64_t" >&6
|
|
if test $ac_cv_type_int64_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_INT64_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:22697: checking for u_int8_t" >&5
|
|
echo $ECHO_N "checking for u_int8_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_int8_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22703 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_int8_t *) 0)
|
|
return 0;
|
|
if (sizeof (u_int8_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22734: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22737: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22740: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22743: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_int8_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_int8_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22753: result: $ac_cv_type_u_int8_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_int8_t" >&6
|
|
if test $ac_cv_type_u_int8_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_U_INT8_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:22762: checking for u_int16_t" >&5
|
|
echo $ECHO_N "checking for u_int16_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_int16_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22768 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_int16_t *) 0)
|
|
return 0;
|
|
if (sizeof (u_int16_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22799: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22802: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22805: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22808: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_int16_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_int16_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22818: result: $ac_cv_type_u_int16_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_int16_t" >&6
|
|
if test $ac_cv_type_u_int16_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_U_INT16_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:22827: checking for u_int32_t" >&5
|
|
echo $ECHO_N "checking for u_int32_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_int32_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22833 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_int32_t *) 0)
|
|
return 0;
|
|
if (sizeof (u_int32_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22864: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22867: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22870: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22873: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_int32_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_int32_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22883: result: $ac_cv_type_u_int32_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_int32_t" >&6
|
|
if test $ac_cv_type_u_int32_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_U_INT32_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:22892: checking for u_int64_t" >&5
|
|
echo $ECHO_N "checking for u_int64_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_int64_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22898 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_int64_t *) 0)
|
|
return 0;
|
|
if (sizeof (u_int64_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22929: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22932: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:22935: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22938: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_int64_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_int64_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:22948: result: $ac_cv_type_u_int64_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_int64_t" >&6
|
|
if test $ac_cv_type_u_int64_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_U_INT64_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:22957: checking for uint8_t" >&5
|
|
echo $ECHO_N "checking for uint8_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_uint8_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 22963 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((uint8_t *) 0)
|
|
return 0;
|
|
if (sizeof (uint8_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:22994: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:22997: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:23000: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23003: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_uint8_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_uint8_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:23013: result: $ac_cv_type_uint8_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_uint8_t" >&6
|
|
if test $ac_cv_type_uint8_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_UINT8_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:23022: checking for uint16_t" >&5
|
|
echo $ECHO_N "checking for uint16_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_uint16_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23028 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((uint16_t *) 0)
|
|
return 0;
|
|
if (sizeof (uint16_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:23059: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23062: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:23065: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23068: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_uint16_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_uint16_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:23078: result: $ac_cv_type_uint16_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_uint16_t" >&6
|
|
if test $ac_cv_type_uint16_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_UINT16_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:23087: checking for uint32_t" >&5
|
|
echo $ECHO_N "checking for uint32_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_uint32_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23093 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((uint32_t *) 0)
|
|
return 0;
|
|
if (sizeof (uint32_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:23124: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23127: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:23130: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23133: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_uint32_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_uint32_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:23143: result: $ac_cv_type_uint32_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_uint32_t" >&6
|
|
if test $ac_cv_type_uint32_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_UINT32_T 1
|
|
EOF
|
|
|
|
fi
|
|
echo "$as_me:23152: checking for uint64_t" >&5
|
|
echo $ECHO_N "checking for uint64_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_uint64_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23158 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_BITYPES_H
|
|
#include <sys/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_BIND_BITYPES_H
|
|
#include <bind/bitypes.h>
|
|
#endif
|
|
#ifdef HAVE_NETINET_IN6_MACHTYPES_H
|
|
#include <netinet/in6_machtypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((uint64_t *) 0)
|
|
return 0;
|
|
if (sizeof (uint64_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:23189: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23192: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:23195: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23198: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_uint64_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_uint64_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:23208: result: $ac_cv_type_uint64_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_uint64_t" >&6
|
|
if test $ac_cv_type_uint64_t = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_UINT64_T 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
crypto_lib=unknown
|
|
|
|
# Check whether --with-openssl or --without-openssl was given.
|
|
if test "${with_openssl+set}" = set; then
|
|
withval="$with_openssl"
|
|
|
|
fi;
|
|
|
|
# Check whether --with-openssl-lib or --without-openssl-lib was given.
|
|
if test "${with_openssl_lib+set}" = set; then
|
|
withval="$with_openssl_lib"
|
|
if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
{ { echo "$as_me:23230: error: No argument for --with-openssl-lib" >&5
|
|
echo "$as_me: error: No argument for --with-openssl-lib" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
elif test "X$with_openssl" = "X"; then
|
|
with_openssl=yes
|
|
fi
|
|
fi;
|
|
|
|
# Check whether --with-openssl-include or --without-openssl-include was given.
|
|
if test "${with_openssl_include+set}" = set; then
|
|
withval="$with_openssl_include"
|
|
if test "$withval" = "yes" -o "$withval" = "no"; then
|
|
{ { echo "$as_me:23242: error: No argument for --with-openssl-include" >&5
|
|
echo "$as_me: error: No argument for --with-openssl-include" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
elif test "X$with_openssl" = "X"; then
|
|
with_openssl=yes
|
|
fi
|
|
fi;
|
|
|
|
case "$with_openssl" in
|
|
yes) ;;
|
|
no) ;;
|
|
"") ;;
|
|
*) if test "$with_openssl_include" = ""; then
|
|
with_openssl_include="$with_openssl/include"
|
|
fi
|
|
if test "$with_openssl_lib" = ""; then
|
|
with_openssl_lib="$with_openssl/lib$abilibdirext"
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
DIR_des=
|
|
|
|
echo "$as_me:23265: checking for crypto library" >&5
|
|
echo $ECHO_N "checking for crypto library... $ECHO_C" >&6
|
|
|
|
if test "$crypto_lib" = "unknown" -a "$with_openssl" != "no"; then
|
|
|
|
save_CPPFLAGS="$CPPFLAGS"
|
|
save_LIBS="$LIBS"
|
|
INCLUDE_des=
|
|
LIB_des=
|
|
if test "$with_openssl_include" != ""; then
|
|
INCLUDE_des="-I${with_openssl}/include"
|
|
fi
|
|
if test "$with_openssl_lib" != ""; then
|
|
LIB_des="-L${with_openssl}/lib"
|
|
fi
|
|
CPPFLAGS="${INCLUDE_des} ${CPPFLAGS}"
|
|
LIB_des="${LIB_des} -lcrypto"
|
|
LIB_des_a="$LIB_des"
|
|
LIB_des_so="$LIB_des"
|
|
LIB_des_appl="$LIB_des"
|
|
LIBS="${LIBS} ${LIB_des}"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23287 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <openssl/md4.h>
|
|
#include <openssl/md5.h>
|
|
#include <openssl/sha.h>
|
|
#include <openssl/des.h>
|
|
#include <openssl/rc4.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
MD4_CTX md4;
|
|
MD5_CTX md5;
|
|
SHA_CTX sha1;
|
|
|
|
MD4_Init(&md4);
|
|
MD5_Init(&md5);
|
|
SHA1_Init(&sha1);
|
|
|
|
des_cbc_encrypt(0, 0, 0, 0, 0, 0);
|
|
RC4(0, 0, 0, 0);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:23316: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23319: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:23322: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23325: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
|
|
crypto_lib=libcrypto
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_OPENSSL 1
|
|
EOF
|
|
|
|
echo "$as_me:23334: result: libcrypto" >&5
|
|
echo "${ECHO_T}libcrypto" >&6
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
CPPFLAGS="$save_CPPFLAGS"
|
|
LIBS="$save_LIBS"
|
|
fi
|
|
|
|
if test "$crypto_lib" = "unknown" -a "$with_krb4" != "no"; then
|
|
|
|
save_CPPFLAGS="$CPPFLAGS"
|
|
save_LIBS="$LIBS"
|
|
INCLUDE_des="${INCLUDE_krb4}"
|
|
LIB_des=
|
|
if test "$krb4_libdir"; then
|
|
LIB_des="-L${krb4_libdir}"
|
|
fi
|
|
LIB_des="${LIB_des} -ldes"
|
|
CPPFLAGS="${CPPFLAGS} ${INCLUDE_des}"
|
|
LIBS="${LIBS} ${LIB_des}"
|
|
LIB_des_a="$LIB_des"
|
|
LIB_des_so="$LIB_des"
|
|
LIB_des_appl="$LIB_des"
|
|
LIBS="${LIBS} ${LIB_des}"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23362 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#undef KRB5 /* makes md4.h et al unhappy */
|
|
#define KRB4
|
|
#include <md4.h>
|
|
#include <md5.h>
|
|
#include <sha.h>
|
|
#include <des.h>
|
|
#include <rc4.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
MD4_CTX md4;
|
|
MD5_CTX md5;
|
|
SHA_CTX sha1;
|
|
|
|
MD4_Init(&md4);
|
|
MD5_Init(&md5);
|
|
SHA1_Init(&sha1);
|
|
|
|
des_cbc_encrypt(0, 0, 0, 0, 0, 0);
|
|
RC4(0, 0, 0, 0);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:23393: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23396: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:23399: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23402: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
crypto_lib=krb4; echo "$as_me:23404: result: krb4's libdes" >&5
|
|
echo "${ECHO_T}krb4's libdes" >&6
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
CPPFLAGS="$save_CPPFLAGS"
|
|
LIBS="$save_LIBS"
|
|
fi
|
|
|
|
if test "$crypto_lib" = "unknown"; then
|
|
|
|
DIR_des='des'
|
|
LIB_des='$(top_builddir)/lib/des/libdes.la'
|
|
LIB_des_a='$(top_builddir)/lib/des/.libs/libdes.a'
|
|
LIB_des_so='$(top_builddir)/lib/des/.libs/libdes.so'
|
|
LIB_des_appl="-ldes"
|
|
|
|
echo "$as_me:23423: result: included libdes" >&5
|
|
echo "${ECHO_T}included libdes" >&6
|
|
|
|
fi
|
|
|
|
echo "$as_me:23428: checking for el_init" >&5
|
|
echo $ECHO_N "checking for el_init... $ECHO_C" >&6
|
|
if test "${ac_cv_funclib_el_init+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
if eval "test \"\$ac_cv_func_el_init\" != yes" ; then
|
|
ac_save_LIBS="$LIBS"
|
|
for ac_lib in "" edit; do
|
|
case "$ac_lib" in
|
|
"") ;;
|
|
yes) ac_lib="" ;;
|
|
no) continue ;;
|
|
-l*) ;;
|
|
*) ac_lib="-l$ac_lib" ;;
|
|
esac
|
|
LIBS=" $ac_lib $LIB_tgetent $ac_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23446 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
el_init()
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:23458: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23461: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:23464: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23467: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "if test -n \"$ac_lib\";then ac_cv_funclib_el_init=$ac_lib; else ac_cv_funclib_el_init=yes; fi";break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
eval "ac_cv_funclib_el_init=\${ac_cv_funclib_el_init-no}"
|
|
LIBS="$ac_save_LIBS"
|
|
fi
|
|
|
|
fi
|
|
|
|
eval "ac_res=\$ac_cv_funclib_el_init"
|
|
|
|
if false; then
|
|
|
|
for ac_func in el_init
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:23489: checking for $ac_func" >&5
|
|
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
|
|
if eval "test \"\${$as_ac_var+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23495 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
f = $ac_func;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:23526: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23529: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:23532: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23535: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:23545: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
# el_init
|
|
eval "ac_tr_func=HAVE_`echo el_init | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "ac_tr_lib=HAVE_LIB`echo $ac_res | sed -e 's/-l//' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`"
|
|
eval "LIB_el_init=$ac_res"
|
|
|
|
case "$ac_res" in
|
|
yes)
|
|
eval "ac_cv_func_el_init=yes"
|
|
eval "LIB_el_init="
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
echo "$as_me:23569: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
;;
|
|
no)
|
|
eval "ac_cv_func_el_init=no"
|
|
eval "LIB_el_init="
|
|
echo "$as_me:23575: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
;;
|
|
*)
|
|
eval "ac_cv_func_el_init=yes"
|
|
eval "ac_cv_lib_`echo "$ac_res" | sed 's/-l//'`=yes"
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_func 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define $ac_tr_lib 1
|
|
EOF
|
|
|
|
echo "$as_me:23589: result: yes, in $ac_res" >&5
|
|
echo "${ECHO_T}yes, in $ac_res" >&6
|
|
;;
|
|
esac
|
|
|
|
if test "$ac_cv_func_el_init" = yes ; then
|
|
echo "$as_me:23595: checking for four argument el_init" >&5
|
|
echo $ECHO_N "checking for four argument el_init... $ECHO_C" >&6
|
|
if test "${ac_cv_func_el_init_four+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23602 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <histedit.h>
|
|
int
|
|
main ()
|
|
{
|
|
el_init("", NULL, NULL, NULL);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:23615: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23618: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:23621: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23624: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_el_init_four=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_el_init_four=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:23634: result: $ac_cv_func_el_init_four" >&5
|
|
echo "${ECHO_T}$ac_cv_func_el_init_four" >&6
|
|
if test "$ac_cv_func_el_init_four" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_FOUR_VALUED_EL_INIT 1
|
|
EOF
|
|
|
|
fi
|
|
fi
|
|
|
|
ac_foo=no
|
|
if test "$with_readline" = yes; then
|
|
:
|
|
elif test "$ac_cv_func_readline" = yes; then
|
|
:
|
|
elif test "$ac_cv_func_el_init" = yes; then
|
|
ac_foo=yes
|
|
LIB_readline="\$(top_builddir)/lib/editline/libel_compat.la $LIB_el_init"
|
|
else
|
|
LIB_readline='$(top_builddir)/lib/editline/libeditline.la'
|
|
fi
|
|
|
|
if test "$ac_foo" = yes; then
|
|
el_compat_TRUE=
|
|
el_compat_FALSE='#'
|
|
else
|
|
el_compat_TRUE='#'
|
|
el_compat_FALSE=
|
|
fi
|
|
if test "$readline_libdir"; then
|
|
LIB_readline="-rpath $readline_libdir $LIB_readline"
|
|
fi
|
|
LIB_readline="$LIB_readline \$(LIB_tgetent)"
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_READLINE 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define AUTHENTICATION 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define ENCRYPTION 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define DES_ENCRYPTION 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define DIAGNOSTICS 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define OLD_ENVIRON 1
|
|
EOF
|
|
if false; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define ENV_HACK 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
# Simple test for streamspty, based on the existance of getmsg(), alas
|
|
# this breaks on SunOS4 which have streams but BSD-like ptys
|
|
#
|
|
# And also something wierd has happend with dec-osf1, fallback to bsd-ptys
|
|
|
|
echo "$as_me:23705: checking for getmsg" >&5
|
|
echo $ECHO_N "checking for getmsg... $ECHO_C" >&6
|
|
if test "${ac_cv_func_getmsg+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23711 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char getmsg (); below. */
|
|
#include <assert.h>
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char getmsg ();
|
|
char (*f) ();
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_getmsg) || defined (__stub___getmsg)
|
|
choke me
|
|
#else
|
|
f = getmsg;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:23742: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23745: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:23748: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23751: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_getmsg=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_getmsg=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:23761: result: $ac_cv_func_getmsg" >&5
|
|
echo "${ECHO_T}$ac_cv_func_getmsg" >&6
|
|
|
|
if test "$ac_cv_func_getmsg" = "yes"; then
|
|
|
|
echo "$as_me:23766: checking for working getmsg" >&5
|
|
echo $ECHO_N "checking for working getmsg... $ECHO_C" >&6
|
|
if test "${ac_cv_func_getmsg_work+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
ac_cv_func_getmsg_work=no
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23775 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
int main()
|
|
{
|
|
int ret;
|
|
ret = getmsg(open("/dev/null", 0), NULL, NULL, NULL);
|
|
if(ret < 0 && errno == ENOSYS)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:23792: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23795: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:23797: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23800: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_getmsg_work=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_getmsg_work=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:23812: result: $ac_cv_func_getmsg_work" >&5
|
|
echo "${ECHO_T}$ac_cv_func_getmsg_work" >&6
|
|
test "$ac_cv_func_getmsg_work" = "yes" &&
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_GETMSG 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_getmsg_work" = yes; then
|
|
echo "$as_me:23823: checking for streamspty" >&5
|
|
echo $ECHO_N "checking for streamspty... $ECHO_C" >&6
|
|
case "$host" in
|
|
*-*-aix3*|*-*-sunos4*|*-*-osf*|*-*-hpux1[01]*)
|
|
krb_cv_sys_streamspty=no
|
|
;;
|
|
*)
|
|
krb_cv_sys_streamspty=yes
|
|
;;
|
|
esac
|
|
echo "$as_me:23833: result: $krb_cv_sys_streamspty" >&5
|
|
echo "${ECHO_T}$krb_cv_sys_streamspty" >&6
|
|
fi
|
|
if test "$krb_cv_sys_streamspty" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define STREAMSPTY 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
# Extract the first word of "compile_et", so it can be a program name with args.
|
|
set dummy compile_et; ac_word=$2
|
|
echo "$as_me:23846: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_COMPILE_ET+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$COMPILE_ET"; then
|
|
ac_cv_prog_COMPILE_ET="$COMPILE_ET" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_COMPILE_ET="compile_et"
|
|
echo "$as_me:23861: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
COMPILE_ET=$ac_cv_prog_COMPILE_ET
|
|
if test -n "$COMPILE_ET"; then
|
|
echo "$as_me:23869: result: $COMPILE_ET" >&5
|
|
echo "${ECHO_T}$COMPILE_ET" >&6
|
|
else
|
|
echo "$as_me:23872: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
krb_cv_compile_et="no"
|
|
if test "${COMPILE_ET}" = "compile_et"; then
|
|
|
|
echo "$as_me:23879: checking whether compile_et has the features we need" >&5
|
|
echo $ECHO_N "checking whether compile_et has the features we need... $ECHO_C" >&6
|
|
cat > conftest_et.et <<'EOF'
|
|
error_table conf
|
|
prefix CONFTEST
|
|
index 1
|
|
error_code CODE1, "CODE1"
|
|
index 128
|
|
error_code CODE2, "CODE2"
|
|
end
|
|
EOF
|
|
if ${COMPILE_ET} conftest_et.et >/dev/null 2>&1; then
|
|
save_CPPFLAGS="${save_CPPFLAGS}"
|
|
if test -d "/usr/include/et"; then
|
|
CPPFLAGS="-I/usr/include/et ${CPPFLAGS}"
|
|
fi
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:23896: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23901 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <com_err.h>
|
|
#include <string.h>
|
|
#include "conftest_et.h"
|
|
int main(){return (CONFTEST_CODE2 - CONFTEST_CODE1) != 127;}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:23911: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23914: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:23916: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23919: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
krb_cv_compile_et="yes"
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
CPPFLAGS="${save_CPPFLAGS}"
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:23931: result: ${krb_cv_compile_et}" >&5
|
|
echo "${ECHO_T}${krb_cv_compile_et}" >&6
|
|
rm -fr conftest*
|
|
fi
|
|
|
|
if test "${krb_cv_compile_et}" = "yes"; then
|
|
krb_cv_save_LIBS="${LIBS}"
|
|
LIBS="${LIBS} -lcom_err"
|
|
echo "$as_me:23939: checking for com_err" >&5
|
|
echo $ECHO_N "checking for com_err... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 23942 "configure"
|
|
#include "confdefs.h"
|
|
#include <com_err.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
const char *p;
|
|
p = error_message(0);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:23957: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23960: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:23963: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:23966: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
krb_cv_com_err="yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
krb_cv_com_err="no"; CPPFLAGS="${save_CPPFLAGS}"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
echo "$as_me:23975: result: ${krb_cv_com_err}" >&5
|
|
echo "${ECHO_T}${krb_cv_com_err}" >&6
|
|
LIBS="${krb_cv_save_LIBS}"
|
|
else
|
|
krb_cv_com_err="no"
|
|
fi
|
|
|
|
if test "${krb_cv_com_err}" = "yes"; then
|
|
DIR_com_err=""
|
|
LIB_com_err="-lcom_err"
|
|
LIB_com_err_a=""
|
|
LIB_com_err_so=""
|
|
{ echo "$as_me:23987: Using the already-installed com_err" >&5
|
|
echo "$as_me: Using the already-installed com_err" >&6;}
|
|
else
|
|
COMPILE_ET="\$(top_builddir)/lib/com_err/compile_et"
|
|
DIR_com_err="com_err"
|
|
LIB_com_err="\$(top_builddir)/lib/com_err/libcom_err.la"
|
|
LIB_com_err_a="\$(top_builddir)/lib/com_err/.libs/libcom_err.a"
|
|
LIB_com_err_so="\$(top_builddir)/lib/com_err/.libs/libcom_err.so"
|
|
{ echo "$as_me:23995: Using our own com_err" >&5
|
|
echo "$as_me: Using our own com_err" >&6;}
|
|
fi
|
|
|
|
echo "$as_me:23999: checking which authentication modules should be built" >&5
|
|
echo $ECHO_N "checking which authentication modules should be built... $ECHO_C" >&6
|
|
|
|
LIB_AUTH_SUBDIRS=
|
|
|
|
if test "$ac_cv_header_siad_h" = yes; then
|
|
LIB_AUTH_SUBDIRS="$LIB_AUTH_SUBDIRS sia"
|
|
fi
|
|
|
|
if test "$ac_cv_header_security_pam_modules_h" = yes -a "$enable_shared" = yes; then
|
|
LIB_AUTH_SUBDIRS="$LIB_AUTH_SUBDIRS pam"
|
|
fi
|
|
|
|
case "${host}" in
|
|
*-*-irix[56]*) LIB_AUTH_SUBDIRS="$LIB_AUTH_SUBDIRS afskauthlib" ;;
|
|
esac
|
|
|
|
echo "$as_me:24016: result: $LIB_AUTH_SUBDIRS" >&5
|
|
echo "${ECHO_T}$LIB_AUTH_SUBDIRS" >&6
|
|
|
|
test "x$prefix" = xNONE && prefix=$ac_default_prefix
|
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
|
|
|
for i in bin lib libexec sbin; do
|
|
i=${i}dir
|
|
foo=`echo $i | tr 'xindiscernible' 'XINDISCERNIBLE'`
|
|
x="\$${i}"
|
|
eval y="$x"
|
|
while test "x$y" != "x$x"; do
|
|
x="$y"
|
|
eval y="$x"
|
|
done
|
|
cat >>confdefs.h <<EOF
|
|
#define $foo "$x"
|
|
EOF
|
|
|
|
done
|
|
|
|
LTLIBOBJS=`echo "$LIBOBJS" | sed 's/\.o/\.lo/g'`
|
|
|
|
ac_config_files="$ac_config_files Makefile include/Makefile include/kadm5/Makefile lib/Makefile lib/45/Makefile lib/auth/Makefile lib/auth/afskauthlib/Makefile lib/auth/pam/Makefile lib/auth/sia/Makefile lib/asn1/Makefile lib/com_err/Makefile lib/des/Makefile lib/editline/Makefile lib/gssapi/Makefile lib/hdb/Makefile lib/kadm5/Makefile lib/kafs/Makefile lib/kdfs/Makefile lib/krb5/Makefile lib/otp/Makefile lib/roken/Makefile lib/sl/Makefile lib/vers/Makefile kuser/Makefile kpasswd/Makefile kadmin/Makefile admin/Makefile kdc/Makefile appl/Makefile appl/afsutil/Makefile appl/ftp/Makefile appl/ftp/common/Makefile appl/ftp/ftp/Makefile appl/ftp/ftpd/Makefile appl/kx/Makefile appl/login/Makefile appl/otp/Makefile appl/popper/Makefile appl/push/Makefile appl/rsh/Makefile appl/rcp/Makefile appl/su/Makefile appl/xnlock/Makefile appl/telnet/Makefile appl/telnet/libtelnet/Makefile appl/telnet/telnet/Makefile appl/telnet/telnetd/Makefile appl/test/Makefile appl/kf/Makefile appl/dceutils/Makefile doc/Makefile tools/Makefile"
|
|
|
|
cat >confcache <<\_ACEOF
|
|
# This file is a shell script that caches the results of configure
|
|
# tests run on this system so they can be shared between configure
|
|
# scripts and configure runs, see configure's option --config-cache.
|
|
# It is not useful on other systems. If it contains results you don't
|
|
# want to keep, you may remove or edit it.
|
|
#
|
|
# config.status only pays attention to the cache file if you give it
|
|
# the --recheck option to rerun configure.
|
|
#
|
|
# `ac_cv_env_foo' variables (set or unset) will be overriden when
|
|
# loading this file, other *unset* `ac_cv_foo' will be assigned the
|
|
# following values.
|
|
|
|
_ACEOF
|
|
|
|
# The following way of writing the cache mishandles newlines in values,
|
|
# but we know of no workaround that is simple, portable, and efficient.
|
|
# So, don't put newlines in cache variables' values.
|
|
# Ultrix sh set writes to stderr and can't be redirected directly,
|
|
# and sets the high bit in the cache file unless we assign to the vars.
|
|
{
|
|
(set) 2>&1 |
|
|
case `(ac_space=' '; set | grep ac_space) 2>&1` in
|
|
*ac_space=\ *)
|
|
# `set' does not quote correctly, so add quotes (double-quote
|
|
# substitution turns \\\\ into \\, and sed turns \\ into \).
|
|
sed -n \
|
|
"s/'/'\\\\''/g;
|
|
s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
|
|
;;
|
|
*)
|
|
# `set' quotes correctly as required by POSIX, so do not add quotes.
|
|
sed -n \
|
|
"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
|
|
;;
|
|
esac;
|
|
} |
|
|
sed '
|
|
t clear
|
|
: clear
|
|
s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
|
|
t end
|
|
/^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
|
|
: end' >>confcache
|
|
if cmp -s $cache_file confcache; then :; else
|
|
if test -w $cache_file; then
|
|
test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
|
|
cat confcache >$cache_file
|
|
else
|
|
echo "not updating unwritable cache $cache_file"
|
|
fi
|
|
fi
|
|
rm -f confcache
|
|
|
|
test "x$prefix" = xNONE && prefix=$ac_default_prefix
|
|
# Let make expand exec_prefix.
|
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
|
|
|
# VPATH may cause trouble with some makes, so we remove $(srcdir),
|
|
# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
|
|
# trailing colons and then remove the whole line if VPATH becomes empty
|
|
# (actually we leave an empty line to preserve line numbers).
|
|
if test "x$srcdir" = x.; then
|
|
ac_vpsub='/^[ ]*VPATH[ ]*=/{
|
|
s/:*\$(srcdir):*/:/;
|
|
s/:*\${srcdir}:*/:/;
|
|
s/:*@srcdir@:*/:/;
|
|
s/^\([^=]*=[ ]*\):*/\1/;
|
|
s/:*$//;
|
|
s/^[^=]*=[ ]*$//;
|
|
}'
|
|
fi
|
|
|
|
DEFS=-DHAVE_CONFIG_H
|
|
|
|
: ${CONFIG_STATUS=./config.status}
|
|
ac_clean_files_save=$ac_clean_files
|
|
ac_clean_files="$ac_clean_files $CONFIG_STATUS"
|
|
{ echo "$as_me:24120: creating $CONFIG_STATUS" >&5
|
|
echo "$as_me: creating $CONFIG_STATUS" >&6;}
|
|
cat >$CONFIG_STATUS <<_ACEOF
|
|
#! $SHELL
|
|
# Generated automatically by configure.
|
|
# Run this file to recreate the current configuration.
|
|
# Compiler output produced by configure, useful for debugging
|
|
# configure, is in config.log if it exists.
|
|
|
|
debug=false
|
|
SHELL=\${CONFIG_SHELL-$SHELL}
|
|
ac_cs_invocation="\$0 \$@"
|
|
|
|
_ACEOF
|
|
|
|
cat >>$CONFIG_STATUS <<\_ACEOF
|
|
# Be Bourne compatible
|
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
|
emulate sh
|
|
NULLCMD=:
|
|
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
|
set -o posix
|
|
fi
|
|
|
|
# Name of the executable.
|
|
as_me=`echo "$0" |sed 's,.*[\\/],,'`
|
|
|
|
if expr a : '\(a\)' >/dev/null 2>&1; then
|
|
as_expr=expr
|
|
else
|
|
as_expr=false
|
|
fi
|
|
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
|
echo >conf$$.file
|
|
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
|
# We could just check for DJGPP; but this test a) works b) is more generic
|
|
# and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
|
|
if test -f conf$$.exe; then
|
|
# Don't use ln at all; we don't have any links
|
|
as_ln_s='cp -p'
|
|
else
|
|
as_ln_s='ln -s'
|
|
fi
|
|
elif ln conf$$.file conf$$ 2>/dev/null; then
|
|
as_ln_s=ln
|
|
else
|
|
as_ln_s='cp -p'
|
|
fi
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
|
|
|
as_executable_p="test -f"
|
|
|
|
# Support unset when possible.
|
|
if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
|
|
as_unset=unset
|
|
else
|
|
as_unset=false
|
|
fi
|
|
|
|
# NLS nuisances.
|
|
$as_unset LANG || test "${LANG+set}" != set || { LANG=C; export LANG; }
|
|
$as_unset LC_ALL || test "${LC_ALL+set}" != set || { LC_ALL=C; export LC_ALL; }
|
|
$as_unset LC_TIME || test "${LC_TIME+set}" != set || { LC_TIME=C; export LC_TIME; }
|
|
$as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set || { LC_CTYPE=C; export LC_CTYPE; }
|
|
$as_unset LANGUAGE || test "${LANGUAGE+set}" != set || { LANGUAGE=C; export LANGUAGE; }
|
|
$as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set || { LC_COLLATE=C; export LC_COLLATE; }
|
|
$as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set || { LC_NUMERIC=C; export LC_NUMERIC; }
|
|
$as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set || { LC_MESSAGES=C; export LC_MESSAGES; }
|
|
|
|
# IFS
|
|
# We need space, tab and new line, in precisely that order.
|
|
as_nl='
|
|
'
|
|
IFS=" $as_nl"
|
|
|
|
# CDPATH.
|
|
$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }
|
|
|
|
exec 6>&1
|
|
|
|
_ACEOF
|
|
|
|
# Files that config.status was made for.
|
|
if test -n "$ac_config_files"; then
|
|
echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
|
|
fi
|
|
|
|
if test -n "$ac_config_headers"; then
|
|
echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
|
|
fi
|
|
|
|
if test -n "$ac_config_links"; then
|
|
echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
|
|
fi
|
|
|
|
if test -n "$ac_config_commands"; then
|
|
echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
|
|
fi
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
|
|
ac_cs_usage="\
|
|
\`$as_me' instantiates files from templates according to the
|
|
current configuration.
|
|
|
|
Usage: $0 [OPTIONS] [FILE]...
|
|
|
|
-h, --help print this help, then exit
|
|
-V, --version print version number, then exit
|
|
-d, --debug don't remove temporary files
|
|
--recheck update $as_me by reconfiguring in the same conditions
|
|
--file=FILE[:TEMPLATE]
|
|
instantiate the configuration file FILE
|
|
--header=FILE[:TEMPLATE]
|
|
instantiate the configuration header FILE
|
|
|
|
Configuration files:
|
|
$config_files
|
|
|
|
Configuration headers:
|
|
$config_headers
|
|
|
|
Configuration commands:
|
|
$config_commands
|
|
|
|
Report bugs to <bug-autoconf@gnu.org>."
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<EOF
|
|
ac_cs_version="\\
|
|
heimdal config.status 0.4e
|
|
configured by $0, generated by GNU Autoconf 2.52,
|
|
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
|
|
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
|
Free Software Foundation, Inc.
|
|
This config.status script is free software; the Free Software Foundation
|
|
gives unlimited permission to copy, distribute and modify it."
|
|
srcdir=$srcdir
|
|
INSTALL="$INSTALL"
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
# If no file are specified by the user, then we need to provide default
|
|
# value. By we need to know if files were specified by the user.
|
|
ac_need_defaults=:
|
|
while test $# != 0
|
|
do
|
|
case $1 in
|
|
--*=*)
|
|
ac_option=`expr "x$1" : 'x\([^=]*\)='`
|
|
ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
|
|
shift
|
|
set dummy "$ac_option" "$ac_optarg" ${1+"$@"}
|
|
shift
|
|
;;
|
|
-*);;
|
|
*) # This is not an option, so the user has probably given explicit
|
|
# arguments.
|
|
ac_need_defaults=false;;
|
|
esac
|
|
|
|
case $1 in
|
|
# Handling of the options.
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<EOF
|
|
-recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
|
|
echo "running $SHELL $0 " $ac_configure_args " --no-create --no-recursion"
|
|
exec $SHELL $0 $ac_configure_args --no-create --no-recursion ;;
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
--version | --vers* | -V )
|
|
echo "$ac_cs_version"; exit 0 ;;
|
|
--he | --h)
|
|
# Conflict between --help and --header
|
|
{ { echo "$as_me:24296: error: ambiguous option: $1
|
|
Try \`$0 --help' for more information." >&5
|
|
echo "$as_me: error: ambiguous option: $1
|
|
Try \`$0 --help' for more information." >&2;}
|
|
{ (exit 1); exit 1; }; };;
|
|
--help | --hel | -h )
|
|
echo "$ac_cs_usage"; exit 0 ;;
|
|
--debug | --d* | -d )
|
|
debug=: ;;
|
|
--file | --fil | --fi | --f )
|
|
shift
|
|
CONFIG_FILES="$CONFIG_FILES $1"
|
|
ac_need_defaults=false;;
|
|
--header | --heade | --head | --hea )
|
|
shift
|
|
CONFIG_HEADERS="$CONFIG_HEADERS $1"
|
|
ac_need_defaults=false;;
|
|
|
|
# This is an error.
|
|
-*) { { echo "$as_me:24315: error: unrecognized option: $1
|
|
Try \`$0 --help' for more information." >&5
|
|
echo "$as_me: error: unrecognized option: $1
|
|
Try \`$0 --help' for more information." >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
|
|
*) ac_config_targets="$ac_config_targets $1" ;;
|
|
|
|
esac
|
|
shift
|
|
done
|
|
|
|
exec 5>>config.log
|
|
cat >&5 << _ACEOF
|
|
|
|
## ----------------------- ##
|
|
## Running config.status. ##
|
|
## ----------------------- ##
|
|
|
|
This file was extended by $as_me (heimdal 0.4e) 2.52, executed with
|
|
CONFIG_FILES = $CONFIG_FILES
|
|
CONFIG_HEADERS = $CONFIG_HEADERS
|
|
CONFIG_LINKS = $CONFIG_LINKS
|
|
CONFIG_COMMANDS = $CONFIG_COMMANDS
|
|
> $ac_cs_invocation
|
|
on `(hostname || uname -n) 2>/dev/null | sed 1q`
|
|
|
|
_ACEOF
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<EOF
|
|
#
|
|
# INIT-COMMANDS section.
|
|
#
|
|
|
|
AMDEP_TRUE="$AMDEP_TRUE"
|
|
ac_aux_dir="$ac_aux_dir"
|
|
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
for ac_config_target in $ac_config_targets
|
|
do
|
|
case "$ac_config_target" in
|
|
# Handling of arguments.
|
|
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
|
"include/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/Makefile" ;;
|
|
"include/kadm5/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/kadm5/Makefile" ;;
|
|
"lib/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
|
|
"lib/45/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/45/Makefile" ;;
|
|
"lib/auth/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/auth/Makefile" ;;
|
|
"lib/auth/afskauthlib/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/auth/afskauthlib/Makefile" ;;
|
|
"lib/auth/pam/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/auth/pam/Makefile" ;;
|
|
"lib/auth/sia/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/auth/sia/Makefile" ;;
|
|
"lib/asn1/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/asn1/Makefile" ;;
|
|
"lib/com_err/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/com_err/Makefile" ;;
|
|
"lib/des/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/des/Makefile" ;;
|
|
"lib/editline/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/editline/Makefile" ;;
|
|
"lib/gssapi/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/gssapi/Makefile" ;;
|
|
"lib/hdb/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/hdb/Makefile" ;;
|
|
"lib/kadm5/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/kadm5/Makefile" ;;
|
|
"lib/kafs/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/kafs/Makefile" ;;
|
|
"lib/kdfs/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/kdfs/Makefile" ;;
|
|
"lib/krb5/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/krb5/Makefile" ;;
|
|
"lib/otp/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/otp/Makefile" ;;
|
|
"lib/roken/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/roken/Makefile" ;;
|
|
"lib/sl/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/sl/Makefile" ;;
|
|
"lib/vers/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/vers/Makefile" ;;
|
|
"kuser/Makefile" ) CONFIG_FILES="$CONFIG_FILES kuser/Makefile" ;;
|
|
"kpasswd/Makefile" ) CONFIG_FILES="$CONFIG_FILES kpasswd/Makefile" ;;
|
|
"kadmin/Makefile" ) CONFIG_FILES="$CONFIG_FILES kadmin/Makefile" ;;
|
|
"admin/Makefile" ) CONFIG_FILES="$CONFIG_FILES admin/Makefile" ;;
|
|
"kdc/Makefile" ) CONFIG_FILES="$CONFIG_FILES kdc/Makefile" ;;
|
|
"appl/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/Makefile" ;;
|
|
"appl/afsutil/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/afsutil/Makefile" ;;
|
|
"appl/ftp/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/ftp/Makefile" ;;
|
|
"appl/ftp/common/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/ftp/common/Makefile" ;;
|
|
"appl/ftp/ftp/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/ftp/ftp/Makefile" ;;
|
|
"appl/ftp/ftpd/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/ftp/ftpd/Makefile" ;;
|
|
"appl/kx/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/kx/Makefile" ;;
|
|
"appl/login/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/login/Makefile" ;;
|
|
"appl/otp/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/otp/Makefile" ;;
|
|
"appl/popper/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/popper/Makefile" ;;
|
|
"appl/push/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/push/Makefile" ;;
|
|
"appl/rsh/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/rsh/Makefile" ;;
|
|
"appl/rcp/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/rcp/Makefile" ;;
|
|
"appl/su/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/su/Makefile" ;;
|
|
"appl/xnlock/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/xnlock/Makefile" ;;
|
|
"appl/telnet/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/telnet/Makefile" ;;
|
|
"appl/telnet/libtelnet/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/telnet/libtelnet/Makefile" ;;
|
|
"appl/telnet/telnet/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/telnet/telnet/Makefile" ;;
|
|
"appl/telnet/telnetd/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/telnet/telnetd/Makefile" ;;
|
|
"appl/test/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/test/Makefile" ;;
|
|
"appl/kf/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/kf/Makefile" ;;
|
|
"appl/dceutils/Makefile" ) CONFIG_FILES="$CONFIG_FILES appl/dceutils/Makefile" ;;
|
|
"doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
|
|
"tools/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;;
|
|
"default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
|
|
"include/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS include/config.h" ;;
|
|
*) { { echo "$as_me:24414: error: invalid argument: $ac_config_target" >&5
|
|
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
|
{ (exit 1); exit 1; }; };;
|
|
esac
|
|
done
|
|
|
|
# If the user did not use the arguments to specify the items to instantiate,
|
|
# then the envvar interface is used. Set only those that are not.
|
|
# We use the long form for the default assignment because of an extremely
|
|
# bizarre bug on SunOS 4.1.3.
|
|
if $ac_need_defaults; then
|
|
test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
|
|
test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
|
|
test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
|
|
fi
|
|
|
|
# Create a temporary directory, and hook for its removal unless debugging.
|
|
$debug ||
|
|
{
|
|
trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
|
|
trap '{ (exit 1); exit 1; }' 1 2 13 15
|
|
}
|
|
|
|
# Create a (secure) tmp directory for tmp files.
|
|
: ${TMPDIR=/tmp}
|
|
{
|
|
tmp=`(umask 077 && mktemp -d -q "$TMPDIR/csXXXXXX") 2>/dev/null` &&
|
|
test -n "$tmp" && test -d "$tmp"
|
|
} ||
|
|
{
|
|
tmp=$TMPDIR/cs$$-$RANDOM
|
|
(umask 077 && mkdir $tmp)
|
|
} ||
|
|
{
|
|
echo "$me: cannot create a temporary directory in $TMPDIR" >&2
|
|
{ (exit 1); exit 1; }
|
|
}
|
|
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<EOF
|
|
|
|
#
|
|
# CONFIG_FILES section.
|
|
#
|
|
|
|
# No need to generate the scripts if there are no CONFIG_FILES.
|
|
# This happens for instance when ./config.status config.h
|
|
if test -n "\$CONFIG_FILES"; then
|
|
# Protect against being on the right side of a sed subst in config.status.
|
|
sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
|
|
s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
|
|
s,@SHELL@,$SHELL,;t t
|
|
s,@exec_prefix@,$exec_prefix,;t t
|
|
s,@prefix@,$prefix,;t t
|
|
s,@program_transform_name@,$program_transform_name,;t t
|
|
s,@bindir@,$bindir,;t t
|
|
s,@sbindir@,$sbindir,;t t
|
|
s,@libexecdir@,$libexecdir,;t t
|
|
s,@datadir@,$datadir,;t t
|
|
s,@sysconfdir@,$sysconfdir,;t t
|
|
s,@sharedstatedir@,$sharedstatedir,;t t
|
|
s,@localstatedir@,$localstatedir,;t t
|
|
s,@libdir@,$libdir,;t t
|
|
s,@includedir@,$includedir,;t t
|
|
s,@oldincludedir@,$oldincludedir,;t t
|
|
s,@infodir@,$infodir,;t t
|
|
s,@mandir@,$mandir,;t t
|
|
s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
|
|
s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
|
|
s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
|
|
s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
|
|
s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
|
|
s,@build_alias@,$build_alias,;t t
|
|
s,@host_alias@,$host_alias,;t t
|
|
s,@target_alias@,$target_alias,;t t
|
|
s,@ECHO_C@,$ECHO_C,;t t
|
|
s,@ECHO_N@,$ECHO_N,;t t
|
|
s,@ECHO_T@,$ECHO_T,;t t
|
|
s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
|
|
s,@DEFS@,$DEFS,;t t
|
|
s,@LIBS@,$LIBS,;t t
|
|
s,@CC@,$CC,;t t
|
|
s,@CFLAGS@,$CFLAGS,;t t
|
|
s,@LDFLAGS@,$LDFLAGS,;t t
|
|
s,@CPPFLAGS@,$CPPFLAGS,;t t
|
|
s,@ac_ct_CC@,$ac_ct_CC,;t t
|
|
s,@EXEEXT@,$EXEEXT,;t t
|
|
s,@OBJEXT@,$OBJEXT,;t t
|
|
s,@CPP@,$CPP,;t t
|
|
s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
|
|
s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
|
|
s,@INSTALL_DATA@,$INSTALL_DATA,;t t
|
|
s,@PACKAGE@,$PACKAGE,;t t
|
|
s,@VERSION@,$VERSION,;t t
|
|
s,@ACLOCAL@,$ACLOCAL,;t t
|
|
s,@AUTOCONF@,$AUTOCONF,;t t
|
|
s,@AUTOMAKE@,$AUTOMAKE,;t t
|
|
s,@AUTOHEADER@,$AUTOHEADER,;t t
|
|
s,@MAKEINFO@,$MAKEINFO,;t t
|
|
s,@AMTAR@,$AMTAR,;t t
|
|
s,@install_sh@,$install_sh,;t t
|
|
s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
|
|
s,@AWK@,$AWK,;t t
|
|
s,@SET_MAKE@,$SET_MAKE,;t t
|
|
s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t
|
|
s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t
|
|
s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
|
|
s,@DEPDIR@,$DEPDIR,;t t
|
|
s,@am__include@,$am__include,;t t
|
|
s,@am__quote@,$am__quote,;t t
|
|
s,@CCDEPMODE@,$CCDEPMODE,;t t
|
|
s,@build@,$build,;t t
|
|
s,@build_cpu@,$build_cpu,;t t
|
|
s,@build_vendor@,$build_vendor,;t t
|
|
s,@build_os@,$build_os,;t t
|
|
s,@host@,$host,;t t
|
|
s,@host_cpu@,$host_cpu,;t t
|
|
s,@host_vendor@,$host_vendor,;t t
|
|
s,@host_os@,$host_os,;t t
|
|
s,@CANONICAL_HOST@,$CANONICAL_HOST,;t t
|
|
s,@YACC@,$YACC,;t t
|
|
s,@LEX@,$LEX,;t t
|
|
s,@LEXLIB@,$LEXLIB,;t t
|
|
s,@LEX_OUTPUT_ROOT@,$LEX_OUTPUT_ROOT,;t t
|
|
s,@RANLIB@,$RANLIB,;t t
|
|
s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
|
|
s,@LN_S@,$LN_S,;t t
|
|
s,@LIBTOOL@,$LIBTOOL,;t t
|
|
s,@WFLAGS@,$WFLAGS,;t t
|
|
s,@WFLAGS_NOUNUSED@,$WFLAGS_NOUNUSED,;t t
|
|
s,@WFLAGS_NOIMPLICITINT@,$WFLAGS_NOIMPLICITINT,;t t
|
|
s,@LIB_db_create@,$LIB_db_create,;t t
|
|
s,@LIB_dbopen@,$LIB_dbopen,;t t
|
|
s,@LIB_dbm_firstkey@,$LIB_dbm_firstkey,;t t
|
|
s,@DBLIB@,$DBLIB,;t t
|
|
s,@LIB_NDBM@,$LIB_NDBM,;t t
|
|
s,@VOID_RETSIGTYPE@,$VOID_RETSIGTYPE,;t t
|
|
s,@have_err_h_TRUE@,$have_err_h_TRUE,;t t
|
|
s,@have_err_h_FALSE@,$have_err_h_FALSE,;t t
|
|
s,@have_fnmatch_h_TRUE@,$have_fnmatch_h_TRUE,;t t
|
|
s,@have_fnmatch_h_FALSE@,$have_fnmatch_h_FALSE,;t t
|
|
s,@have_ifaddrs_h_TRUE@,$have_ifaddrs_h_TRUE,;t t
|
|
s,@have_ifaddrs_h_FALSE@,$have_ifaddrs_h_FALSE,;t t
|
|
s,@have_vis_h_TRUE@,$have_vis_h_TRUE,;t t
|
|
s,@have_vis_h_FALSE@,$have_vis_h_FALSE,;t t
|
|
s,@LIB_socket@,$LIB_socket,;t t
|
|
s,@LIB_gethostbyname@,$LIB_gethostbyname,;t t
|
|
s,@LIB_syslog@,$LIB_syslog,;t t
|
|
s,@LIB_gethostbyname2@,$LIB_gethostbyname2,;t t
|
|
s,@LIB_res_search@,$LIB_res_search,;t t
|
|
s,@LIB_dn_expand@,$LIB_dn_expand,;t t
|
|
s,@have_glob_h_TRUE@,$have_glob_h_TRUE,;t t
|
|
s,@have_glob_h_FALSE@,$have_glob_h_FALSE,;t t
|
|
s,@LIB_getsockopt@,$LIB_getsockopt,;t t
|
|
s,@LIB_setsockopt@,$LIB_setsockopt,;t t
|
|
s,@LIB_hstrerror@,$LIB_hstrerror,;t t
|
|
s,@LIBOBJS@,$LIBOBJS,;t t
|
|
s,@LIB_bswap16@,$LIB_bswap16,;t t
|
|
s,@LIB_bswap32@,$LIB_bswap32,;t t
|
|
s,@LIB_pidfile@,$LIB_pidfile,;t t
|
|
s,@LIB_getaddrinfo@,$LIB_getaddrinfo,;t t
|
|
s,@LIB_getnameinfo@,$LIB_getnameinfo,;t t
|
|
s,@LIB_freeaddrinfo@,$LIB_freeaddrinfo,;t t
|
|
s,@LIB_gai_strerror@,$LIB_gai_strerror,;t t
|
|
s,@LIB_crypt@,$LIB_crypt,;t t
|
|
s,@DIR_roken@,$DIR_roken,;t t
|
|
s,@LIB_roken@,$LIB_roken,;t t
|
|
s,@INCLUDES_roken@,$INCLUDES_roken,;t t
|
|
s,@INCLUDE_openldap@,$INCLUDE_openldap,;t t
|
|
s,@LIB_openldap@,$LIB_openldap,;t t
|
|
s,@INCLUDE_krb4@,$INCLUDE_krb4,;t t
|
|
s,@LIB_krb4@,$LIB_krb4,;t t
|
|
s,@EXTRA_LIB45@,$EXTRA_LIB45,;t t
|
|
s,@LIB_krb_enable_debug@,$LIB_krb_enable_debug,;t t
|
|
s,@LIB_krb_disable_debug@,$LIB_krb_disable_debug,;t t
|
|
s,@LIB_krb_get_our_ip_for_realm@,$LIB_krb_get_our_ip_for_realm,;t t
|
|
s,@KRB4_TRUE@,$KRB4_TRUE,;t t
|
|
s,@KRB4_FALSE@,$KRB4_FALSE,;t t
|
|
s,@KRB5_TRUE@,$KRB5_TRUE,;t t
|
|
s,@KRB5_FALSE@,$KRB5_FALSE,;t t
|
|
s,@do_roken_rename_TRUE@,$do_roken_rename_TRUE,;t t
|
|
s,@do_roken_rename_FALSE@,$do_roken_rename_FALSE,;t t
|
|
s,@LIB_kdb@,$LIB_kdb,;t t
|
|
s,@DCE_TRUE@,$DCE_TRUE,;t t
|
|
s,@DCE_FALSE@,$DCE_FALSE,;t t
|
|
s,@dpagaix_CFLAGS@,$dpagaix_CFLAGS,;t t
|
|
s,@dpagaix_LDADD@,$dpagaix_LDADD,;t t
|
|
s,@LIB_otp@,$LIB_otp,;t t
|
|
s,@OTP_TRUE@,$OTP_TRUE,;t t
|
|
s,@OTP_FALSE@,$OTP_FALSE,;t t
|
|
s,@LIB_security@,$LIB_security,;t t
|
|
s,@NROFF@,$NROFF,;t t
|
|
s,@GROFF@,$GROFF,;t t
|
|
s,@CATMAN@,$CATMAN,;t t
|
|
s,@CATMAN_TRUE@,$CATMAN_TRUE,;t t
|
|
s,@CATMAN_FALSE@,$CATMAN_FALSE,;t t
|
|
s,@CATMANEXT@,$CATMANEXT,;t t
|
|
s,@INCLUDE_readline@,$INCLUDE_readline,;t t
|
|
s,@LIB_readline@,$LIB_readline,;t t
|
|
s,@INCLUDE_hesiod@,$INCLUDE_hesiod,;t t
|
|
s,@LIB_hesiod@,$LIB_hesiod,;t t
|
|
s,@AIX_TRUE@,$AIX_TRUE,;t t
|
|
s,@AIX_FALSE@,$AIX_FALSE,;t t
|
|
s,@AIX4_TRUE@,$AIX4_TRUE,;t t
|
|
s,@AIX4_FALSE@,$AIX4_FALSE,;t t
|
|
s,@AIX_DYNAMIC_AFS_TRUE@,$AIX_DYNAMIC_AFS_TRUE,;t t
|
|
s,@AIX_DYNAMIC_AFS_FALSE@,$AIX_DYNAMIC_AFS_FALSE,;t t
|
|
s,@LIB_dlopen@,$LIB_dlopen,;t t
|
|
s,@HAVE_DLOPEN_TRUE@,$HAVE_DLOPEN_TRUE,;t t
|
|
s,@HAVE_DLOPEN_FALSE@,$HAVE_DLOPEN_FALSE,;t t
|
|
s,@AIX_EXTRA_KAFS@,$AIX_EXTRA_KAFS,;t t
|
|
s,@IRIX_TRUE@,$IRIX_TRUE,;t t
|
|
s,@IRIX_FALSE@,$IRIX_FALSE,;t t
|
|
s,@X_CFLAGS@,$X_CFLAGS,;t t
|
|
s,@X_PRE_LIBS@,$X_PRE_LIBS,;t t
|
|
s,@X_LIBS@,$X_LIBS,;t t
|
|
s,@X_EXTRA_LIBS@,$X_EXTRA_LIBS,;t t
|
|
s,@HAVE_X_TRUE@,$HAVE_X_TRUE,;t t
|
|
s,@HAVE_X_FALSE@,$HAVE_X_FALSE,;t t
|
|
s,@LIB_XauWriteAuth@,$LIB_XauWriteAuth,;t t
|
|
s,@LIB_XauReadAuth@,$LIB_XauReadAuth,;t t
|
|
s,@LIB_XauFileName@,$LIB_XauFileName,;t t
|
|
s,@NEED_WRITEAUTH_TRUE@,$NEED_WRITEAUTH_TRUE,;t t
|
|
s,@NEED_WRITEAUTH_FALSE@,$NEED_WRITEAUTH_FALSE,;t t
|
|
s,@LIB_logwtmp@,$LIB_logwtmp,;t t
|
|
s,@LIB_logout@,$LIB_logout,;t t
|
|
s,@LIB_openpty@,$LIB_openpty,;t t
|
|
s,@LIB_tgetent@,$LIB_tgetent,;t t
|
|
s,@LIB_getpwnam_r@,$LIB_getpwnam_r,;t t
|
|
s,@DIR_des@,$DIR_des,;t t
|
|
s,@INCLUDE_des@,$INCLUDE_des,;t t
|
|
s,@LIB_des@,$LIB_des,;t t
|
|
s,@LIB_des_a@,$LIB_des_a,;t t
|
|
s,@LIB_des_so@,$LIB_des_so,;t t
|
|
s,@LIB_des_appl@,$LIB_des_appl,;t t
|
|
s,@LIB_el_init@,$LIB_el_init,;t t
|
|
s,@el_compat_TRUE@,$el_compat_TRUE,;t t
|
|
s,@el_compat_FALSE@,$el_compat_FALSE,;t t
|
|
s,@COMPILE_ET@,$COMPILE_ET,;t t
|
|
s,@DIR_com_err@,$DIR_com_err,;t t
|
|
s,@LIB_com_err@,$LIB_com_err,;t t
|
|
s,@LIB_com_err_a@,$LIB_com_err_a,;t t
|
|
s,@LIB_com_err_so@,$LIB_com_err_so,;t t
|
|
s,@LIB_AUTH_SUBDIRS@,$LIB_AUTH_SUBDIRS,;t t
|
|
s,@LTLIBOBJS@,$LTLIBOBJS,;t t
|
|
CEOF
|
|
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
# Split the substitutions into bite-sized pieces for seds with
|
|
# small command number limits, like on Digital OSF/1 and HP-UX.
|
|
ac_max_sed_lines=48
|
|
ac_sed_frag=1 # Number of current file.
|
|
ac_beg=1 # First line for current file.
|
|
ac_end=$ac_max_sed_lines # Line after last line for current file.
|
|
ac_more_lines=:
|
|
ac_sed_cmds=
|
|
while $ac_more_lines; do
|
|
if test $ac_beg -gt 1; then
|
|
sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
|
|
else
|
|
sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
|
|
fi
|
|
if test ! -s $tmp/subs.frag; then
|
|
ac_more_lines=false
|
|
else
|
|
# The purpose of the label and of the branching condition is to
|
|
# speed up the sed processing (if there are no `@' at all, there
|
|
# is no need to browse any of the substitutions).
|
|
# These are the two extra sed commands mentioned above.
|
|
(echo ':t
|
|
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
|
|
if test -z "$ac_sed_cmds"; then
|
|
ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
|
|
else
|
|
ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
|
|
fi
|
|
ac_sed_frag=`expr $ac_sed_frag + 1`
|
|
ac_beg=$ac_end
|
|
ac_end=`expr $ac_end + $ac_max_sed_lines`
|
|
fi
|
|
done
|
|
if test -z "$ac_sed_cmds"; then
|
|
ac_sed_cmds=cat
|
|
fi
|
|
fi # test -n "$CONFIG_FILES"
|
|
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
|
|
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
|
|
case $ac_file in
|
|
- | *:- | *:-:* ) # input from stdin
|
|
cat >$tmp/stdin
|
|
ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
|
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
|
* ) ac_file_in=$ac_file.in ;;
|
|
esac
|
|
|
|
# Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
|
|
ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
X"$ac_file" : 'X\(//\)[^/]' \| \
|
|
X"$ac_file" : 'X\(//\)$' \| \
|
|
X"$ac_file" : 'X\(/\)' \| \
|
|
. : '\(.\)' 2>/dev/null ||
|
|
echo X"$ac_file" |
|
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
|
/^X\(\/\).*/{ s//\1/; q; }
|
|
s/.*/./; q'`
|
|
if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
|
|
{ case "$ac_dir" in
|
|
[\\/]* | ?:[\\/]* ) as_incr_dir=;;
|
|
*) as_incr_dir=.;;
|
|
esac
|
|
as_dummy="$ac_dir"
|
|
for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
|
|
case $as_mkdir_dir in
|
|
# Skip DOS drivespec
|
|
?:) as_incr_dir=$as_mkdir_dir ;;
|
|
*)
|
|
as_incr_dir=$as_incr_dir/$as_mkdir_dir
|
|
test -d "$as_incr_dir" || mkdir "$as_incr_dir"
|
|
;;
|
|
esac
|
|
done; }
|
|
|
|
ac_dir_suffix="/`echo $ac_dir|sed 's,^\./,,'`"
|
|
# A "../" for each directory in $ac_dir_suffix.
|
|
ac_dots=`echo "$ac_dir_suffix" | sed 's,/[^/]*,../,g'`
|
|
else
|
|
ac_dir_suffix= ac_dots=
|
|
fi
|
|
|
|
case $srcdir in
|
|
.) ac_srcdir=.
|
|
if test -z "$ac_dots"; then
|
|
ac_top_srcdir=.
|
|
else
|
|
ac_top_srcdir=`echo $ac_dots | sed 's,/$,,'`
|
|
fi ;;
|
|
[\\/]* | ?:[\\/]* )
|
|
ac_srcdir=$srcdir$ac_dir_suffix;
|
|
ac_top_srcdir=$srcdir ;;
|
|
*) # Relative path.
|
|
ac_srcdir=$ac_dots$srcdir$ac_dir_suffix
|
|
ac_top_srcdir=$ac_dots$srcdir ;;
|
|
esac
|
|
|
|
case $INSTALL in
|
|
[\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
|
|
*) ac_INSTALL=$ac_dots$INSTALL ;;
|
|
esac
|
|
|
|
if test x"$ac_file" != x-; then
|
|
{ echo "$as_me:24774: creating $ac_file" >&5
|
|
echo "$as_me: creating $ac_file" >&6;}
|
|
rm -f "$ac_file"
|
|
fi
|
|
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
|
# use $as_me), people would be surprised to read:
|
|
# /* config.h. Generated automatically by config.status. */
|
|
configure_input="Generated automatically from `echo $ac_file_in |
|
|
sed 's,.*/,,'` by configure."
|
|
|
|
# First look for the input files in the build tree, otherwise in the
|
|
# src tree.
|
|
ac_file_inputs=`IFS=:
|
|
for f in $ac_file_in; do
|
|
case $f in
|
|
-) echo $tmp/stdin ;;
|
|
[\\/$]*)
|
|
# Absolute (can't be DOS-style, as IFS=:)
|
|
test -f "$f" || { { echo "$as_me:24792: error: cannot find input file: $f" >&5
|
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
echo $f;;
|
|
*) # Relative
|
|
if test -f "$f"; then
|
|
# Build tree
|
|
echo $f
|
|
elif test -f "$srcdir/$f"; then
|
|
# Source tree
|
|
echo $srcdir/$f
|
|
else
|
|
# /dev/null tree
|
|
{ { echo "$as_me:24805: error: cannot find input file: $f" >&5
|
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi;;
|
|
esac
|
|
done` || { (exit 1); exit 1; }
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<EOF
|
|
sed "$ac_vpsub
|
|
$extrasub
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
:t
|
|
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
|
|
s,@configure_input@,$configure_input,;t t
|
|
s,@srcdir@,$ac_srcdir,;t t
|
|
s,@top_srcdir@,$ac_top_srcdir,;t t
|
|
s,@INSTALL@,$ac_INSTALL,;t t
|
|
" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
|
|
rm -f $tmp/stdin
|
|
if test x"$ac_file" != x-; then
|
|
mv $tmp/out $ac_file
|
|
else
|
|
cat $tmp/out
|
|
rm -f $tmp/out
|
|
fi
|
|
|
|
done
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
|
|
#
|
|
# CONFIG_HEADER section.
|
|
#
|
|
|
|
# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
|
|
# NAME is the cpp macro being defined and VALUE is the value it is being given.
|
|
#
|
|
# ac_d sets the value in "#define NAME VALUE" lines.
|
|
ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
|
|
ac_dB='[ ].*$,\1#\2'
|
|
ac_dC=' '
|
|
ac_dD=',;t'
|
|
# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
|
|
ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
|
|
ac_uB='$,\1#\2define\3'
|
|
ac_uC=' '
|
|
ac_uD=',;t'
|
|
|
|
for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
|
|
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
|
|
case $ac_file in
|
|
- | *:- | *:-:* ) # input from stdin
|
|
cat >$tmp/stdin
|
|
ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
|
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
|
* ) ac_file_in=$ac_file.in ;;
|
|
esac
|
|
|
|
test x"$ac_file" != x- && { echo "$as_me:24866: creating $ac_file" >&5
|
|
echo "$as_me: creating $ac_file" >&6;}
|
|
|
|
# First look for the input files in the build tree, otherwise in the
|
|
# src tree.
|
|
ac_file_inputs=`IFS=:
|
|
for f in $ac_file_in; do
|
|
case $f in
|
|
-) echo $tmp/stdin ;;
|
|
[\\/$]*)
|
|
# Absolute (can't be DOS-style, as IFS=:)
|
|
test -f "$f" || { { echo "$as_me:24877: error: cannot find input file: $f" >&5
|
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
echo $f;;
|
|
*) # Relative
|
|
if test -f "$f"; then
|
|
# Build tree
|
|
echo $f
|
|
elif test -f "$srcdir/$f"; then
|
|
# Source tree
|
|
echo $srcdir/$f
|
|
else
|
|
# /dev/null tree
|
|
{ { echo "$as_me:24890: error: cannot find input file: $f" >&5
|
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi;;
|
|
esac
|
|
done` || { (exit 1); exit 1; }
|
|
# Remove the trailing spaces.
|
|
sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
|
|
|
|
EOF
|
|
|
|
# Transform confdefs.h into two sed scripts, `conftest.defines' and
|
|
# `conftest.undefs', that substitutes the proper values into
|
|
# config.h.in to produce config.h. The first handles `#define'
|
|
# templates, and the second `#undef' templates.
|
|
# 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.
|
|
rm -f conftest.defines conftest.undefs
|
|
# Using a here document instead of a string reduces the quoting nightmare.
|
|
# Putting comments in sed scripts is not portable.
|
|
#
|
|
# `end' is used to avoid that the second main sed command (meant for
|
|
# 0-ary CPP macros) applies to n-ary macro definitions.
|
|
# See the Autoconf documentation for `clear'.
|
|
cat >confdef2sed.sed <<\EOF
|
|
s/[\\&,]/\\&/g
|
|
s,[\\$`],\\&,g
|
|
t clear
|
|
: clear
|
|
s,^[ ]*#[ ]*define[ ][ ]*\(\([^ (][^ (]*\)([^)]*)\)[ ]*\(.*\)$,${ac_dA}\2${ac_dB}\1${ac_dC}\3${ac_dD},gp
|
|
t end
|
|
s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
|
|
: end
|
|
EOF
|
|
# If some macros were called several times there might be several times
|
|
# the same #defines, which is useless. Nevertheless, we may not want to
|
|
# sort them, since we want the *last* AC-DEFINE to be honored.
|
|
uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
|
|
sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
|
|
rm -f confdef2sed.sed
|
|
|
|
# This sed command replaces #undef with comments. This is necessary, for
|
|
# example, in the case of _POSIX_SOURCE, which is predefined and required
|
|
# on some systems where configure will not decide to define it.
|
|
cat >>conftest.undefs <<\EOF
|
|
s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
|
|
EOF
|
|
|
|
# Break up conftest.defines because some shells have a limit on the size
|
|
# of here documents, and old seds have small limits too (100 cmds).
|
|
echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
|
|
echo ' if egrep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
|
|
echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
|
|
echo ' :' >>$CONFIG_STATUS
|
|
rm -f conftest.tail
|
|
while grep . conftest.defines >/dev/null
|
|
do
|
|
# Write a limited-size here document to $tmp/defines.sed.
|
|
echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
|
|
# Speed up: don't consider the non `#define' lines.
|
|
echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
|
|
# Work around the forget-to-reset-the-flag bug.
|
|
echo 't clr' >>$CONFIG_STATUS
|
|
echo ': clr' >>$CONFIG_STATUS
|
|
sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
|
|
echo 'CEOF
|
|
sed -f $tmp/defines.sed $tmp/in >$tmp/out
|
|
rm -f $tmp/in
|
|
mv $tmp/out $tmp/in
|
|
' >>$CONFIG_STATUS
|
|
sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
|
|
rm -f conftest.defines
|
|
mv conftest.tail conftest.defines
|
|
done
|
|
rm -f conftest.defines
|
|
echo ' fi # egrep' >>$CONFIG_STATUS
|
|
echo >>$CONFIG_STATUS
|
|
|
|
# Break up conftest.undefs because some shells have a limit on the size
|
|
# of here documents, and old seds have small limits too (100 cmds).
|
|
echo ' # Handle all the #undef templates' >>$CONFIG_STATUS
|
|
rm -f conftest.tail
|
|
while grep . conftest.undefs >/dev/null
|
|
do
|
|
# Write a limited-size here document to $tmp/undefs.sed.
|
|
echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
|
|
# Speed up: don't consider the non `#undef'
|
|
echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
|
|
# Work around the forget-to-reset-the-flag bug.
|
|
echo 't clr' >>$CONFIG_STATUS
|
|
echo ': clr' >>$CONFIG_STATUS
|
|
sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
|
|
echo 'CEOF
|
|
sed -f $tmp/undefs.sed $tmp/in >$tmp/out
|
|
rm -f $tmp/in
|
|
mv $tmp/out $tmp/in
|
|
' >>$CONFIG_STATUS
|
|
sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
|
|
rm -f conftest.undefs
|
|
mv conftest.tail conftest.undefs
|
|
done
|
|
rm -f conftest.undefs
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
|
# use $as_me), people would be surprised to read:
|
|
# /* config.h. Generated automatically by config.status. */
|
|
if test x"$ac_file" = x-; then
|
|
echo "/* Generated automatically by configure. */" >$tmp/config.h
|
|
else
|
|
echo "/* $ac_file. Generated automatically by configure. */" >$tmp/config.h
|
|
fi
|
|
cat $tmp/in >>$tmp/config.h
|
|
rm -f $tmp/in
|
|
if test x"$ac_file" != x-; then
|
|
if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
|
|
{ echo "$as_me:25007: $ac_file is unchanged" >&5
|
|
echo "$as_me: $ac_file is unchanged" >&6;}
|
|
else
|
|
ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
X"$ac_file" : 'X\(//\)[^/]' \| \
|
|
X"$ac_file" : 'X\(//\)$' \| \
|
|
X"$ac_file" : 'X\(/\)' \| \
|
|
. : '\(.\)' 2>/dev/null ||
|
|
echo X"$ac_file" |
|
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
|
/^X\(\/\).*/{ s//\1/; q; }
|
|
s/.*/./; q'`
|
|
if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
|
|
{ case "$ac_dir" in
|
|
[\\/]* | ?:[\\/]* ) as_incr_dir=;;
|
|
*) as_incr_dir=.;;
|
|
esac
|
|
as_dummy="$ac_dir"
|
|
for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
|
|
case $as_mkdir_dir in
|
|
# Skip DOS drivespec
|
|
?:) as_incr_dir=$as_mkdir_dir ;;
|
|
*)
|
|
as_incr_dir=$as_incr_dir/$as_mkdir_dir
|
|
test -d "$as_incr_dir" || mkdir "$as_incr_dir"
|
|
;;
|
|
esac
|
|
done; }
|
|
|
|
fi
|
|
rm -f $ac_file
|
|
mv $tmp/config.h $ac_file
|
|
fi
|
|
else
|
|
cat $tmp/config.h
|
|
rm -f $tmp/config.h
|
|
fi
|
|
# Run the commands associated with the file.
|
|
case $ac_file in
|
|
include/config.h ) # update the timestamp
|
|
echo timestamp >"include/stamp-h1"
|
|
;;
|
|
esac
|
|
done
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
|
|
#
|
|
# CONFIG_COMMANDS section.
|
|
#
|
|
for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
|
|
ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
|
|
ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
|
|
|
case $ac_dest in
|
|
default-1 )
|
|
test x"$AMDEP_TRUE" != x"" ||
|
|
for mf in $CONFIG_FILES; do
|
|
case "$mf" in
|
|
Makefile) dirpart=.;;
|
|
*/Makefile) dirpart=`echo "$mf" | sed -e 's|/[^/]*$||'`;;
|
|
*) continue;;
|
|
esac
|
|
grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue
|
|
# Extract the definition of DEP_FILES from the Makefile without
|
|
# running `make'.
|
|
DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
|
|
test -z "$DEPDIR" && continue
|
|
# When using ansi2knr, U may be empty or an underscore; expand it
|
|
U=`sed -n -e '/^U = / s///p' < "$mf"`
|
|
test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
|
|
# We invoke sed twice because it is the simplest approach to
|
|
# changing $(DEPDIR) to its actual value in the expansion.
|
|
for file in `sed -n -e '
|
|
/^DEP_FILES = .*\\\\$/ {
|
|
s/^DEP_FILES = //
|
|
:loop
|
|
s/\\\\$//
|
|
p
|
|
n
|
|
/\\\\$/ b loop
|
|
p
|
|
}
|
|
/^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
|
|
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
|
|
# Make sure the directory exists.
|
|
test -f "$dirpart/$file" && continue
|
|
fdir=`echo "$file" | sed -e 's|/[^/]*$||'`
|
|
$ac_aux_dir/mkinstalldirs "$dirpart/$fdir" > /dev/null 2>&1
|
|
# echo "creating $dirpart/$file"
|
|
echo '# dummy' > "$dirpart/$file"
|
|
done
|
|
done
|
|
;;
|
|
esac
|
|
done
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
|
|
{ (exit 0); exit 0; }
|
|
EOF
|
|
chmod +x $CONFIG_STATUS
|
|
ac_clean_files=$ac_clean_files_save
|
|
|
|
# configure is writing to config.log, and then calls config.status.
|
|
# config.status does its own redirection, appending to config.log.
|
|
# Unfortunately, on DOS this fails, as config.log is still kept open
|
|
# by configure, so config.status won't be able to write to it; its
|
|
# output is simply discarded. So we exec the FD to /dev/null,
|
|
# effectively closing config.log, so it can be properly (re)opened and
|
|
# appended to by config.status. When coming back to configure, we
|
|
# need to make the FD available again.
|
|
if test "$no_create" != yes; then
|
|
ac_cs_success=:
|
|
exec 5>/dev/null
|
|
$SHELL $CONFIG_STATUS || ac_cs_success=false
|
|
exec 5>>config.log
|
|
# Use ||, not &&, to avoid exiting from the if with $? = 1, which
|
|
# would make configure fail if this is the last instruction.
|
|
$ac_cs_success || { (exit 1); exit 1; }
|
|
fi
|
|
|
|
HEIMDALVERSION="$PACKAGE-$VERSION"
|
|
|
|
cat > include/newversion.h.in <<EOF
|
|
const char *heimdal_long_version = "@(#)\$Version: $HEIMDALVERSION by @USER@ on @HOST@ ($host) @DATE@ \$";
|
|
const char *heimdal_version = "$HEIMDALVERSION";
|
|
EOF
|
|
|
|
if test -f include/version.h && cmp -s include/newversion.h.in include/version.h.in; then
|
|
echo "include/version.h is unchanged"
|
|
rm -f include/newversion.h.in
|
|
else
|
|
echo "creating include/version.h"
|
|
User=${USER-${LOGNAME}}
|
|
Host=`(hostname || uname -n || echo unknown) 2>/dev/null | sed 1q`
|
|
Date=`date`
|
|
mv -f include/newversion.h.in include/version.h.in
|
|
sed -e "s/@USER@/$User/" -e "s/@HOST@/$Host/" -e "s/@DATE@/$Date/" include/version.h.in > include/version.h
|
|
fi
|