freebsd-dev/contrib/ntp/configure

15763 lines
407 KiB
Plaintext
Raw Normal View History

1999-12-09 13:01:21 +00:00
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
2002-10-29 19:58:12 +00:00
# Generated by Autoconf 2.52.
1999-12-09 13:01:21 +00:00
#
2001-08-29 14:35:15 +00:00
# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
# Free Software Foundation, Inc.
1999-12-09 13:01:21 +00:00
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
2002-10-29 19:58:12 +00:00
# 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"
2001-08-29 14:35:15 +00:00
# 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.
#
1999-12-09 13:01:21 +00:00
ac_default_prefix=/usr/local
2001-08-29 14:35:15 +00:00
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_unique_file="ntpd/ntp_refclock.c"
# Factoring default headers for most tests.
ac_includes_default="\
#include <stdio.h>
2002-10-29 19:58:12 +00:00
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
2001-08-29 14:35:15 +00:00
#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>
2002-10-29 19:58:12 +00:00
#endif
#if HAVE_STRINGS_H
# include <strings.h>
2001-08-29 14:35:15 +00:00
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
2002-10-29 19:58:12 +00:00
#else
# if HAVE_STDINT_H
# include <stdint.h>
# endif
2001-08-29 14:35:15 +00:00
#endif
#if HAVE_UNISTD_H
# include <unistd.h>
#endif"
1999-12-09 13:01:21 +00:00
# Initialize some variables set by options.
2001-08-29 14:35:15 +00:00
ac_init_help=
ac_init_version=false
1999-12-09 13:01:21 +00:00
# The variables have the same names as the options, with
# dashes changed to underlines.
2001-08-29 14:35:15 +00:00
cache_file=/dev/null
1999-12-09 13:01:21 +00:00
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
2001-08-29 14:35:15 +00:00
# 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.
1999-12-09 13:01:21 +00:00
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'
2001-08-29 14:35:15 +00:00
# Identity of this package.
PACKAGE_NAME=
PACKAGE_TARNAME=
PACKAGE_VERSION=
PACKAGE_STRING=
PACKAGE_BUGREPORT=
1999-12-09 13:01:21 +00:00
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
2001-08-29 14:35:15 +00:00
ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
1999-12-09 13:01:21 +00:00
# Accept the important Cygnus configure options, so we can diagnose typos.
2001-08-29 14:35:15 +00:00
case $ac_option in
1999-12-09 13:01:21 +00:00
-bindir | --bindir | --bindi | --bind | --bin | --bi)
ac_prev=bindir ;;
-bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
2001-08-29 14:35:15 +00:00
bindir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-build | --build | --buil | --bui | --bu)
2001-08-29 14:35:15 +00:00
ac_prev=build_alias ;;
1999-12-09 13:01:21 +00:00
-build=* | --build=* | --buil=* | --bui=* | --bu=*)
2001-08-29 14:35:15 +00:00
build_alias=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-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=*)
2001-08-29 14:35:15 +00:00
cache_file=$ac_optarg ;;
--config-cache | -C)
cache_file=config.cache ;;
1999-12-09 13:01:21 +00:00
-datadir | --datadir | --datadi | --datad | --data | --dat | --da)
ac_prev=datadir ;;
-datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
| --da=*)
2001-08-29 14:35:15 +00:00
datadir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-disable-* | --disable-*)
2001-08-29 14:35:15 +00:00
ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
1999-12-09 13:01:21 +00:00
# Reject names that are not valid shell variable names.
2002-10-29 19:58:12 +00:00
expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
2001-08-29 14:35:15 +00:00
{ 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" ;;
1999-12-09 13:01:21 +00:00
-enable-* | --enable-*)
2001-08-29 14:35:15 +00:00
ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
1999-12-09 13:01:21 +00:00
# Reject names that are not valid shell variable names.
2002-10-29 19:58:12 +00:00
expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
2001-08-29 14:35:15 +00:00
{ 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"`;;
1999-12-09 13:01:21 +00:00
*) ac_optarg=yes ;;
esac
2001-08-29 14:35:15 +00:00
eval "enable_$ac_feature='$ac_optarg'" ;;
1999-12-09 13:01:21 +00:00
-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=*)
2001-08-29 14:35:15 +00:00
exec_prefix=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-gas | --gas | --ga | --g)
# Obsolete; use --with-gas.
with_gas=yes ;;
2001-08-29 14:35:15 +00:00
-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 ;;
1999-12-09 13:01:21 +00:00
-host | --host | --hos | --ho)
2001-08-29 14:35:15 +00:00
ac_prev=host_alias ;;
1999-12-09 13:01:21 +00:00
-host=* | --host=* | --hos=* | --ho=*)
2001-08-29 14:35:15 +00:00
host_alias=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-includedir | --includedir | --includedi | --included | --include \
| --includ | --inclu | --incl | --inc)
ac_prev=includedir ;;
-includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
| --includ=* | --inclu=* | --incl=* | --inc=*)
2001-08-29 14:35:15 +00:00
includedir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-infodir | --infodir | --infodi | --infod | --info | --inf)
ac_prev=infodir ;;
-infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
2001-08-29 14:35:15 +00:00
infodir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-libdir | --libdir | --libdi | --libd)
ac_prev=libdir ;;
-libdir=* | --libdir=* | --libdi=* | --libd=*)
2001-08-29 14:35:15 +00:00
libdir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
| --libexe | --libex | --libe)
ac_prev=libexecdir ;;
-libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
| --libexe=* | --libex=* | --libe=*)
2001-08-29 14:35:15 +00:00
libexecdir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-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=*)
2001-08-29 14:35:15 +00:00
localstatedir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-mandir | --mandir | --mandi | --mand | --man | --ma | --m)
ac_prev=mandir ;;
-mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
2001-08-29 14:35:15 +00:00
mandir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-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=*)
2001-08-29 14:35:15 +00:00
oldincludedir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
ac_prev=prefix ;;
-prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
2001-08-29 14:35:15 +00:00
prefix=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-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=*)
2001-08-29 14:35:15 +00:00
program_prefix=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-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=*)
2001-08-29 14:35:15 +00:00
program_suffix=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-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=*)
2001-08-29 14:35:15 +00:00
program_transform_name=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-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=*)
2001-08-29 14:35:15 +00:00
sbindir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-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=*)
2001-08-29 14:35:15 +00:00
sharedstatedir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-site | --site | --sit)
ac_prev=site ;;
-site=* | --site=* | --sit=*)
2001-08-29 14:35:15 +00:00
site=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
ac_prev=srcdir ;;
-srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
2001-08-29 14:35:15 +00:00
srcdir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
| --syscon | --sysco | --sysc | --sys | --sy)
ac_prev=sysconfdir ;;
-sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
| --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
2001-08-29 14:35:15 +00:00
sysconfdir=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-target | --target | --targe | --targ | --tar | --ta | --t)
2001-08-29 14:35:15 +00:00
ac_prev=target_alias ;;
1999-12-09 13:01:21 +00:00
-target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
2001-08-29 14:35:15 +00:00
target_alias=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-v | -verbose | --verbose | --verbos | --verbo | --verb)
verbose=yes ;;
2001-08-29 14:35:15 +00:00
-version | --version | --versio | --versi | --vers | -V)
ac_init_version=: ;;
1999-12-09 13:01:21 +00:00
-with-* | --with-*)
2001-08-29 14:35:15 +00:00
ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1999-12-09 13:01:21 +00:00
# Reject names that are not valid shell variable names.
2002-10-29 19:58:12 +00:00
expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
2001-08-29 14:35:15 +00:00
{ echo "$as_me: error: invalid package name: $ac_package" >&2
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
ac_package=`echo $ac_package| sed 's/-/_/g'`
2001-08-29 14:35:15 +00:00
case $ac_option in
*=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
1999-12-09 13:01:21 +00:00
*) ac_optarg=yes ;;
esac
2001-08-29 14:35:15 +00:00
eval "with_$ac_package='$ac_optarg'" ;;
1999-12-09 13:01:21 +00:00
-without-* | --without-*)
2001-08-29 14:35:15 +00:00
ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1999-12-09 13:01:21 +00:00
# Reject names that are not valid shell variable names.
2002-10-29 19:58:12 +00:00
expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
2001-08-29 14:35:15 +00:00
{ 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" ;;
1999-12-09 13:01:21 +00:00
--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=*)
2001-08-29 14:35:15 +00:00
x_includes=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
-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=*)
2001-08-29 14:35:15 +00:00
x_libraries=$ac_optarg ;;
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
-*) { echo "$as_me: error: unrecognized option: $ac_option
Try \`$0 --help' for more information." >&2
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
2001-08-29 14:35:15 +00:00
*=*)
ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
# Reject names that are not valid shell variable names.
2002-10-29 19:58:12 +00:00
expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
2001-08-29 14:35:15 +00:00
{ 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 ;;
1999-12-09 13:01:21 +00:00
*)
2001-08-29 14:35:15 +00:00
# FIXME: should be removed in autoconf 3.0.
echo "$as_me: WARNING: you should use --build, --host, --target" >&2
2002-10-29 19:58:12 +00:00
expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: invalid host type: $ac_option" >&2
: ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
1999-12-09 13:01:21 +00:00
;;
esac
done
if test -n "$ac_prev"; then
2001-08-29 14:35:15 +00:00
ac_option=--`echo $ac_prev | sed 's/_/-/g'`
{ echo "$as_me: error: missing argument to $ac_option" >&2
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
# 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
2001-08-29 14:35:15 +00:00
# Be sure to have absolute paths.
for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
2002-10-29 19:58:12 +00:00
localstatedir libdir includedir oldincludedir infodir mandir
1999-12-09 13:01:21 +00:00
do
2001-08-29 14:35:15 +00:00
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; }; };;
1999-12-09 13:01:21 +00:00
esac
done
2001-08-29 14:35:15 +00:00
# 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
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
ac_tool_prefix=
test -n "$host_alias" && ac_tool_prefix=$host_alias-
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
test "$silent" = yes && exec 6>/dev/null
1999-12-09 13:01:21 +00:00
# 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
2001-08-29 14:35:15 +00:00
ac_confdir=`echo "$ac_prog" | sed 's%[\\/][^\\/][^\\/]*$%%'`
1999-12-09 13:01:21 +00:00
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
2001-08-29 14:35:15 +00:00
{ echo "$as_me: error: cannot find sources in $ac_confdir or .." >&2
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
{ echo "$as_me: error: cannot find sources in $srcdir" >&2
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
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 this package 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
System types:
--build=BUILD configure for building on BUILD [guessed]
--host=HOST build programs to run on HOST [BUILD]
--target=TARGET configure for building compilers for TARGET [HOST]
EOF
fi
if test -n "$ac_init_help"; then
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-debugging + include debugging code
--enable-dst-minutes=60 + minutes per DST adjustment
--enable-HOPFSERIAL + hopf serial clock device
--enable-HOPFPCI + hopf 6039 PCI board
--enable-BANCOMM - Datum/Bancomm bc635/VME interface
--enable-GPSVME - TrueTime GPS receiver/VME interface
--enable-SHM - SHM clock attached thru shared memory
--enable-all-clocks + include all suitable non-PARSE clocks:
--enable-ACTS + ACTS modem service
--enable-ARBITER + Arbiter 1088A/B GPS receiver
--enable-ARCRON-MSF + Arcron MSF receiver
--enable-ATOM s ATOM PPS interface
--enable-AS2201 + Austron 2200A/2201A GPS receiver
--enable-CHU - CHU modem/decoder
--enable-AUDIO-CHU s CHU audio/decoder
--enable-DATUM s Datum Programmable Time System
--enable-FG + Forum Graphic GPS
--enable-HEATH s Heath GC-1000 WWV/WWVH receiver
--enable-HPGPS + HP 58503A GPS receiver
--enable-IRIG s Sun IRIG audio decoder
2002-10-29 19:58:12 +00:00
--enable-JJY + JJY receiver
2001-08-29 14:35:15 +00:00
--enable-LEITCH + Leitch CSD 5300 Master Clock System Driver
--enable-LOCAL-CLOCK + local clock reference
--enable-MSFEES + EES M201 MSF receiver
--enable-MX4200 s Magnavox MX4200 GPS receiver
--enable-NMEA + NMEA GPS receiver
--enable-ONCORE s Motorola VP/UT Oncore GPS receiver
--enable-PALISADE + Palisade clock
--enable-PST + PST/Traconex 1020 WWV/WWVH receiver
--enable-JUPITER s Rockwell Jupiter GPS receiver
--enable-PTBACTS s PTB modem service
--enable-TPRO s KSI/Odetics TPRO/S GPS receiver/IRIG interface
--enable-TRAK + TRAK 8810 GPS receiver
--enable-CHRONOLOG + Chrono-log K-series WWVB receiver
--enable-DUMBCLOCK + Dumb generic hh:mm:ss local clock
--enable-PCF + Conrad parallel port radio clock
--enable-SPECTRACOM + Spectracom 8170/Netclock/2 WWVB receiver
--enable-TRUETIME s Kinemetrics/TrueTime receivers
2002-10-29 19:58:12 +00:00
--enable-TT650 - TrueTime 560 IRIG-B decoder
2001-08-29 14:35:15 +00:00
--enable-ULINK + Ultralink WWVB receiver
--enable-WWV + WWV Audio receiver
--enable-USNO s USNO modem service
2002-10-29 19:58:12 +00:00
--enable-ZYFER + Zyfer GPStarplus receiver
2001-08-29 14:35:15 +00:00
--enable-parse-clocks - include all suitable PARSE clocks:
--enable-COMPUTIME s Diem Computime Radio Clock
--enable-DCF7000 s ELV/DCF7000 clock
--enable-HOPF6021 s HOPF 6021 clock
--enable-MEINBERG s Meinberg clocks
--enable-RAWDCF s DCF77 raw time code
--enable-RCC8000 s RCC 8000 clock
--enable-SCHMID s Schmid DCF77 clock
--enable-TRIMTAIP s Trimble GPS receiver/TAIP protocol
--enable-TRIMTSIP s Trimble GPS receiver/TSIP protocol
--enable-WHARTON s WHARTON 400A Series clock
--enable-VARITEXT s VARITEXT clock
--enable-kmem s read /dev/kmem for tick and/or tickadj
--enable-accurate-adjtime
s the adjtime() call is accurate
--enable-tick=VALUE s force a value for 'tick'
--enable-tickadj=VALUE s force a value for 'tickadj'
--enable-udp-wildcard s use UDP wildcard delivery
--enable-slew-always s always slew the time
--enable-step-slew s step and slew the time
--enable-ntpdate-step s if ntpdate should step the time
--enable-hourly-todr-sync
s if we should sync TODR hourly
--enable-kernel-fll-bug s if we should avoid a kernel FLL bug
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-openssl-libdir + =/something/reasonable
--with-openssl-incdir + =/something/reasonable
--with-crypto + ={autokey,rsaref}
--with-electricfence - compile with ElectricFence malloc debugger
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.
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
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\EOF
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 $as_me, which was
2002-10-29 19:58:12 +00:00
generated by GNU Autoconf 2.52. Invocation command line was
2001-08-29 14:35:15 +00:00
$ $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;
2002-10-29 19:58:12 +00:00
s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
2001-08-29 14:35:15 +00:00
;;
*)
sed -n \
2002-10-29 19:58:12 +00:00
"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
2001-08-29 14:35:15 +00:00
;;
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
2002-10-29 19:58:12 +00:00
trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
2001-08-29 14:35:15 +00:00
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.
1999-12-09 13:01:21 +00:00
# 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
2002-10-29 19:58:12 +00:00
{ echo "$as_me:946: loading site script $ac_site_file" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: loading site script $ac_site_file" >&6;}
cat "$ac_site_file" >&5
1999-12-09 13:01:21 +00:00
. "$ac_site_file"
fi
done
if test -r "$cache_file"; then
2001-08-29 14:35:15 +00:00
# Some versions of bash will fail to source /dev/null (special
# files actually), so we avoid doing that.
if test -f "$cache_file"; then
2002-10-29 19:58:12 +00:00
{ echo "$as_me:957: loading cache $cache_file" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: loading cache $cache_file" >&6;}
case $cache_file in
[\\/]* | ?:[\\/]* ) . $cache_file;;
*) . ./$cache_file;;
esac
fi
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
{ echo "$as_me:965: creating cache $cache_file" >&5
2001-08-29 14:35:15 +00:00
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.
2002-10-29 19:58:12 +00:00
ac_cache_corrupted=false
2001-08-29 14:35:15 +00:00
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,)
2002-10-29 19:58:12 +00:00
{ echo "$as_me:981: 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=: ;;
2001-08-29 14:35:15 +00:00
,set)
2002-10-29 19:58:12 +00:00
{ echo "$as_me:985: 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=: ;;
2001-08-29 14:35:15 +00:00
,);;
*)
if test "x$ac_old_val" != "x$ac_new_val"; then
2002-10-29 19:58:12 +00:00
{ echo "$as_me:991: 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:993: former value: $ac_old_val" >&5
echo "$as_me: former value: $ac_old_val" >&2;}
{ echo "$as_me:995: current value: $ac_new_val" >&5
echo "$as_me: current value: $ac_new_val" >&2;}
ac_cache_corrupted=:
2001-08-29 14:35:15 +00:00
fi;;
esac
2002-10-29 19:58:12 +00:00
# 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
2001-08-29 14:35:15 +00:00
done
2002-10-29 19:58:12 +00:00
if $ac_cache_corrupted; then
{ echo "$as_me:1014: 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:1016: 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; }; }
1999-12-09 13:01:21 +00:00
fi
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
if { (echo "$as_me:1036: PATH=\".;.\"; conftest.sh") >&5
2001-08-29 14:35:15 +00:00
(PATH=".;."; conftest.sh) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:1039: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; then
ac_path_separator=';'
else
ac_path_separator=:
fi
PATH_SEPARATOR="$ac_path_separator"
rm -f conftest.sh
1999-12-09 13:01:21 +00:00
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
2001-08-29 14:35:15 +00:00
elif test -f $ac_dir/shtool; then
ac_aux_dir=$ac_dir
ac_install_sh="$ac_aux_dir/shtool install -c"
break
1999-12-09 13:01:21 +00:00
fi
done
if test -z "$ac_aux_dir"; then
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1065: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
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.
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
# Make sure we can run config.sub.
$ac_config_sub sun4 >/dev/null 2>&1 ||
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1075: error: cannot run $ac_config_sub" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot run $ac_config_sub" >&2;}
{ (exit 1); exit 1; }; }
2002-10-29 19:58:12 +00:00
echo "$as_me:1079: checking build system type" >&5
2001-08-29 14:35:15 +00:00
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" &&
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1088: error: cannot guess build type; you must specify one" >&5
2001-08-29 14:35:15 +00:00
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` ||
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1092: error: $ac_config_sub $ac_cv_build_alias failed." >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
{ (exit 1); exit 1; }; }
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:1097: result: $ac_cv_build" >&5
2001-08-29 14:35:15 +00:00
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/'`
2002-10-29 19:58:12 +00:00
echo "$as_me:1104: checking host system type" >&5
2001-08-29 14:35:15 +00:00
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` ||
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1113: error: $ac_config_sub $ac_cv_host_alias failed" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
{ (exit 1); exit 1; }; }
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:1118: result: $ac_cv_host" >&5
2001-08-29 14:35:15 +00:00
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/'`
2002-10-29 19:58:12 +00:00
echo "$as_me:1125: checking target system type" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking target system type... $ECHO_C" >&6
if test "${ac_cv_target+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_cv_target_alias=$target_alias
test "x$ac_cv_target_alias" = "x" &&
ac_cv_target_alias=$ac_cv_host_alias
ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1134: error: $ac_config_sub $ac_cv_target_alias failed" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
{ (exit 1); exit 1; }; }
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:1139: result: $ac_cv_target" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_target" >&6
target=$ac_cv_target
target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
1999-12-09 13:01:21 +00:00
# The aliases save the names the user supplied, while $host etc.
# will get canonicalized.
2001-08-29 14:35:15 +00:00
test -n "$target_alias" &&
1999-12-09 13:01:21 +00:00
test "$program_prefix$program_suffix$program_transform_name" = \
NONENONEs,x,x, &&
program_prefix=${target_alias}-
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define STR_SYSTEM "$target"
EOF
2002-10-29 19:58:12 +00:00
ac_config_headers="$ac_config_headers config.h"
1999-12-09 13:01:21 +00:00
test "$program_prefix" != NONE &&
2002-10-29 19:58:12 +00:00
program_transform_name="s,^,$program_prefix,;$program_transform_name"
1999-12-09 13:01:21 +00:00
# Use a double $ so make ignores it.
test "$program_suffix" != NONE &&
2002-10-29 19:58:12 +00:00
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
1999-12-09 13:01:21 +00:00
# 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
2001-08-29 14:35:15 +00:00
# AmigaOS /C/install, which installs bootblocks on floppy discs
1999-12-09 13:01:21 +00:00
# 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.
2002-10-29 19:58:12 +00:00
echo "$as_me:1183: checking for a BSD compatible install" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
if test -z "$INSTALL"; then
2001-08-29 14:35:15 +00:00
if test "${ac_cv_path_install+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_save_IFS=$IFS; IFS=$ac_path_separator
1999-12-09 13:01:21 +00:00
for ac_dir in $PATH; do
2001-08-29 14:35:15 +00:00
IFS=$ac_save_IFS
1999-12-09 13:01:21 +00:00
# Account for people who put trailing slashes in PATH elements.
2001-08-29 14:35:15 +00:00
case $ac_dir/ in
/ | ./ | .// | /cC/* \
| /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* \
| /usr/ucb/* ) ;;
1999-12-09 13:01:21 +00:00
*)
# 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
2001-08-29 14:35:15 +00:00
if $as_executable_p "$ac_dir/$ac_prog"; then
1999-12-09 13:01:21 +00:00
if test $ac_prog = install &&
2001-08-29 14:35:15 +00:00
grep dspmsg "$ac_dir/$ac_prog" >/dev/null 2>&1; then
1999-12-09 13:01:21 +00:00
# AIX install. It has an incompatible calling convention.
:
2001-08-29 14:35:15 +00:00
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.
:
1999-12-09 13:01:21 +00:00
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
2001-08-29 14:35:15 +00:00
INSTALL=$ac_cv_path_install
1999-12-09 13:01:21 +00:00
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.
2001-08-29 14:35:15 +00:00
INSTALL=$ac_install_sh
1999-12-09 13:01:21 +00:00
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:1232: result: $INSTALL" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$INSTALL" >&6
1999-12-09 13:01:21 +00:00
# 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}'
2001-08-29 14:35:15 +00:00
test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
1999-12-09 13:01:21 +00:00
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2002-10-29 19:58:12 +00:00
echo "$as_me:1243: checking whether build environment is sane" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Just in case
sleep 1
2001-08-29 14:35:15 +00:00
echo timestamp > conftest.file
1999-12-09 13:01:21 +00:00
# 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 (
2001-08-29 14:35:15 +00:00
set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
1999-12-09 13:01:21 +00:00
if test "$*" = "X"; then
# -L didn't work.
2001-08-29 14:35:15 +00:00
set X `ls -t $srcdir/configure conftest.file`
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f conftest.file
2001-08-29 14:35:15 +00:00
if test "$*" != "X $srcdir/configure conftest.file" \
&& test "$*" != "X conftest.file $srcdir/configure"; then
1999-12-09 13:01:21 +00:00
# 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".
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1267: error: ls -t appears to fail. Make sure there is not a broken
2001-08-29 14:35:15 +00:00
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; }; }
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
test "$2" = conftest.file
1999-12-09 13:01:21 +00:00
)
then
# Ok.
:
else
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1280: error: newly created file is older than distributed files!
2001-08-29 14:35:15 +00:00
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; }; }
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:1286: result: yes" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}yes" >&6
2002-10-29 19:58:12 +00:00
# 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"
2001-08-29 14:35:15 +00:00
# Use eval to expand $SHELL
2002-10-29 19:58:12 +00:00
if eval "$MISSING --run true"; then
2000-01-28 14:55:50 +00:00
am_missing_run="$MISSING --run "
else
am_missing_run=
2001-08-29 14:35:15 +00:00
am_backtick='`'
2002-10-29 19:58:12 +00:00
{ echo "$as_me:1299: WARNING: ${am_backtick}missing' script is too old or missing" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: ${am_backtick}missing' script is too old or missing" >&2;}
2000-01-28 14:55:50 +00:00
fi
for ac_prog in mawk gawk nawk awk
do
2001-08-29 14:35:15 +00:00
# Extract the first word of "$ac_prog", so it can be a program name with args.
2000-01-28 14:55:50 +00:00
set dummy $ac_prog; ac_word=$2
2002-10-29 19:58:12 +00:00
echo "$as_me:1307: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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
2000-01-28 14:55:50 +00:00
else
if test -n "$AWK"; then
ac_cv_prog_AWK="$AWK" # Let the user override the test.
else
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:1322: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
done
2000-01-28 14:55:50 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
AWK=$ac_cv_prog_AWK
2000-01-28 14:55:50 +00:00
if test -n "$AWK"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:1330: result: $AWK" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$AWK" >&6
2000-01-28 14:55:50 +00:00
else
2002-10-29 19:58:12 +00:00
echo "$as_me:1333: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
2000-01-28 14:55:50 +00:00
fi
2001-08-29 14:35:15 +00:00
test -n "$AWK" && break
2000-01-28 14:55:50 +00:00
done
2002-10-29 19:58:12 +00:00
echo "$as_me:1340: checking whether ${MAKE-make} sets \${MAKE}" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.make <<\EOF
1999-12-09 13:01:21 +00:00
all:
@echo 'ac_maketemp="${MAKE}"'
EOF
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
2001-08-29 14:35:15 +00:00
eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
1999-12-09 13:01:21 +00:00
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
2001-08-29 14:35:15 +00:00
rm -f conftest.make
1999-12-09 13:01:21 +00:00
fi
if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:1360: result: yes" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}yes" >&6
1999-12-09 13:01:21 +00:00
SET_MAKE=
else
2002-10-29 19:58:12 +00:00
echo "$as_me:1364: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
1999-12-09 13:01:21 +00:00
SET_MAKE="MAKE=${MAKE-make}"
fi
2000-01-28 14:55:50 +00:00
# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
if test "${enable_dependency_tracking+set}" = set; then
enableval="$enable_dependency_tracking"
2001-08-29 14:35:15 +00:00
fi;
2002-10-29 19:58:12 +00:00
if test "x$enable_dependency_tracking" != xno; then
2000-01-28 14:55:50 +00:00
am_depcomp="$ac_aux_dir/depcomp"
2002-10-29 19:58:12 +00:00
AMDEPBACKSLASH='\'
2000-01-28 14:55:50 +00:00
fi
2002-10-29 19:58:12 +00:00
if test "x$enable_dependency_tracking" != xno; then
AMDEP_TRUE=
AMDEP_FALSE='#'
2000-01-28 14:55:50 +00:00
else
2002-10-29 19:58:12 +00:00
AMDEP_TRUE='#'
AMDEP_FALSE=
2000-01-28 14:55:50 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f .deps 2>/dev/null
mkdir .deps 2>/dev/null
if test -d .deps; then
2000-01-28 14:55:50 +00:00
DEPDIR=.deps
else
2002-10-29 19:58:12 +00:00
# MS-DOS does not allow filenames that begin with a dot.
2000-01-28 14:55:50 +00:00
DEPDIR=_deps
fi
2002-10-29 19:58:12 +00:00
rmdir .deps 2>/dev/null
2000-01-28 14:55:50 +00:00
2001-08-29 14:35:15 +00:00
# test to see if srcdir already configured
if test "`CDPATH=:; cd $srcdir && pwd`" != "`pwd`" &&
test -f $srcdir/config.status; then
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1400: error: source directory already configured; run \"make distclean\" there first" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
{ (exit 1); exit 1; }; }
fi
2000-01-28 14:55:50 +00:00
2001-08-29 14:35:15 +00:00
# Define the identity of the package.
1999-12-09 13:01:21 +00:00
PACKAGE=ntp
2002-10-29 19:58:12 +00:00
VERSION=4.1.1a
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define PACKAGE "$PACKAGE"
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define VERSION "$VERSION"
EOF
2001-08-29 14:35:15 +00:00
# Autoconf 2.50 wants to disallow AM_ names. We explicitly allow
# the ones we care about.
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
# 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}
2001-08-29 14:35:15 +00:00
# Some tools Automake needs.
1999-12-09 13:01:21 +00:00
2000-01-28 14:55:50 +00:00
ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal"}
1999-12-09 13:01:21 +00:00
2000-01-28 14:55:50 +00:00
AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
1999-12-09 13:01:21 +00:00
2000-01-28 14:55:50 +00:00
AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake"}
AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
AMTAR=${AMTAR-"${am_missing_run}tar"}
2002-10-29 19:58:12 +00:00
install_sh=${install_sh-"$am_aux_dir/install-sh"}
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
2001-08-29 14:35:15 +00:00
# We need awk for the "check" target. The system "awk" is bad on
# some platforms.
2000-01-28 14:55:50 +00:00
1999-12-09 13:01:21 +00:00
ac_cv_var_oncore_ok=no
2001-08-29 14:35:15 +00:00
ac_cv_var_atom_ok=no
1999-12-09 13:01:21 +00:00
iCFLAGS="$CFLAGS"
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:1462: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
if test -n "$CC"; then
ac_cv_prog_CC="$CC" # Let the user override the test.
else
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:1477: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
done
1999-12-09 13:01:21 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
CC=$ac_cv_prog_CC
1999-12-09 13:01:21 +00:00
if test -n "$CC"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:1485: result: $CC" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$CC" >&6
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
echo "$as_me:1488: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:1497: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:1512: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
done
fi
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:1520: result: $ac_ct_CC" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_ct_CC" >&6
else
2002-10-29 19:58:12 +00:00
echo "$as_me:1523: result: no" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:1536: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:1551: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
done
fi
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:1559: result: $CC" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$CC" >&6
else
2002-10-29 19:58:12 +00:00
echo "$as_me:1562: result: no" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:1571: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:1586: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
done
fi
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:1594: result: $ac_ct_CC" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_ct_CC" >&6
else
2002-10-29 19:58:12 +00:00
echo "$as_me:1597: result: no" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:1610: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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.
1999-12-09 13:01:21 +00:00
else
ac_prog_rejected=no
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:1630: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
done
1999-12-09 13:01:21 +00:00
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
2001-08-29 14:35:15 +00:00
if test $# != 0; then
1999-12-09 13:01:21 +00:00
# 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
2001-08-29 14:35:15 +00:00
set dummy "$ac_dir/$ac_word" ${1+"$@"}
1999-12-09 13:01:21 +00:00
shift
ac_cv_prog_CC="$@"
fi
fi
fi
fi
2001-08-29 14:35:15 +00:00
CC=$ac_cv_prog_CC
1999-12-09 13:01:21 +00:00
if test -n "$CC"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:1652: result: $CC" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$CC" >&6
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
echo "$as_me:1655: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:1666: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
if test -n "$CC"; then
ac_cv_prog_CC="$CC" # Let the user override the test.
else
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:1681: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
done
1999-12-09 13:01:21 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
CC=$ac_cv_prog_CC
1999-12-09 13:01:21 +00:00
if test -n "$CC"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:1689: result: $CC" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$CC" >&6
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
echo "$as_me:1692: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:1705: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:1720: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
done
fi
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:1728: result: $ac_ct_CC" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_ct_CC" >&6
else
2002-10-29 19:58:12 +00:00
echo "$as_me:1731: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
test -n "$ac_ct_CC" && break
done
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
CC=$ac_ct_CC
fi
fi
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
test -z "$CC" && { { echo "$as_me:1743: error: no acceptable cc found in \$PATH" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
# Provide some information about the compiler.
echo "$as_me:1748:" \
"checking for C compiler version" >&5
ac_compiler=`set X $ac_compile; echo $2`
{ (eval echo "$as_me:1751: \"$ac_compiler --version </dev/null >&5\"") >&5
(eval $ac_compiler --version </dev/null >&5) 2>&5
ac_status=$?
echo "$as_me:1754: \$? = $ac_status" >&5
(exit $ac_status); }
{ (eval echo "$as_me:1756: \"$ac_compiler -v </dev/null >&5\"") >&5
(eval $ac_compiler -v </dev/null >&5) 2>&5
ac_status=$?
echo "$as_me:1759: \$? = $ac_status" >&5
(exit $ac_status); }
{ (eval echo "$as_me:1761: \"$ac_compiler -V </dev/null >&5\"") >&5
(eval $ac_compiler -V </dev/null >&5) 2>&5
ac_status=$?
echo "$as_me:1764: \$? = $ac_status" >&5
(exit $ac_status); }
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 1768 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
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.
2002-10-29 19:58:12 +00:00
# It will help us diagnose broken compilers, and finding out an intuition
2001-08-29 14:35:15 +00:00
# of exeext.
2002-10-29 19:58:12 +00:00
echo "$as_me:1784: checking for C compiler default output" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:1787: \"$ac_link_default\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link_default) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:1790: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; then
2002-10-29 19:58:12 +00:00
# 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
2001-08-29 14:35:15 +00:00
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" : '[^.]*\(\..*\)'`
2002-10-29 19:58:12 +00:00
# FIXME: I believe we export ac_cv_exeext for Libtool --akim.
2001-08-29 14:35:15 +00:00
export ac_cv_exeext
break;;
* ) break;;
esac
done
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1813: error: C compiler cannot create executables" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: C compiler cannot create executables" >&2;}
{ (exit 77); exit 77; }; }
fi
ac_exeext=$ac_cv_exeext
2002-10-29 19:58:12 +00:00
echo "$as_me:1819: result: $ac_file" >&5
2001-08-29 14:35:15 +00:00
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.
2002-10-29 19:58:12 +00:00
echo "$as_me:1824: checking whether the C compiler works" >&5
2001-08-29 14:35:15 +00:00
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'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:1830: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:1833: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
cross_compiling=no
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
if test "$cross_compiling" = maybe; then
cross_compiling=yes
else
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1840: error: cannot run C compiled programs.
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:1848: result: yes" >&5
2001-08-29 14:35:15 +00:00
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.
2002-10-29 19:58:12 +00:00
echo "$as_me:1855: checking whether we are cross compiling" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:1857: result: $cross_compiling" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$cross_compiling" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:1860: checking for executable suffix" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:1862: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:1865: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1881: error: cannot compute EXEEXT: cannot compile and link" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest$ac_cv_exeext
2002-10-29 19:58:12 +00:00
echo "$as_me:1887: result: $ac_cv_exeext" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_exeext" >&6
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_ext
EXEEXT=$ac_cv_exeext
ac_exeext=$EXEEXT
2002-10-29 19:58:12 +00:00
echo "$as_me:1893: checking for object suffix" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
#line 1899 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
int
main ()
{
;
return 0;
}
_ACEOF
rm -f conftest.o conftest.obj
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:1911: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:1914: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:1926: error: cannot compute OBJEXT: cannot compile" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_cv_objext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:1933: result: $ac_cv_objext" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_objext" >&6
OBJEXT=$ac_cv_objext
ac_objext=$OBJEXT
2002-10-29 19:58:12 +00:00
echo "$as_me:1937: checking whether we are using the GNU C compiler" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 1943 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
int
main ()
{
#ifndef __GNUC__
choke me
#endif
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:1958: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:1961: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:1964: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:1967: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:1979: result: $ac_cv_c_compiler_gnu" >&5
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:1985: checking whether $CC accepts -g" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
#line 1991 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
int
main ()
{
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:2003: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:2006: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:2009: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:2012: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_prog_cc_g=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_prog_cc_g=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:2022: result: $ac_cv_prog_cc_g" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
1999-12-09 13:01:21 +00:00
if test "$ac_test_CFLAGS" = set; then
2001-08-29 14:35:15 +00:00
CFLAGS=$ac_save_CFLAGS
1999-12-09 13:01:21 +00:00
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
2001-08-29 14:35:15 +00:00
# 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
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:2049: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:2052: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:2055: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:2058: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
#line 2070 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <stdlib.h>
$ac_declaration
int
main ()
{
exit (42);
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:2083: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:2086: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:2089: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:2092: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
#line 2102 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_declaration
int
main ()
{
exit (42);
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:2114: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:2117: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:2120: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:2123: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
rm -f conftest*
if test -n "$ac_declaration"; then
echo '#ifdef __cplusplus' >>confdefs.h
echo $ac_declaration >>confdefs.h
echo '#endif' >>confdefs.h
fi
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
ac_config_commands="$ac_config_commands default-1"
2001-08-29 14:35:15 +00:00
am_make=${MAKE-make}
cat > confinc << 'END'
doit:
@echo done
END
# If we don't find an include directive, just comment out the code.
2002-10-29 19:58:12 +00:00
echo "$as_me:2158: checking for style of include used by $am_make" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
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
2001-08-29 14:35:15 +00:00
fi
2002-10-29 19:58:12 +00:00
fi
2000-01-28 14:55:50 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:2185: result: $_am_result" >&5
echo "${ECHO_T}$_am_result" >&6
2001-08-29 14:35:15 +00:00
rm -f confinc confmf
2000-01-28 14:55:50 +00:00
2002-10-29 19:58:12 +00:00
depcc="$CC" am_compiler_list=
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:2191: checking dependency style of $depcc" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
2001-08-29 14:35:15 +00:00
# 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'.
2002-10-29 19:58:12 +00:00
mkdir conftest.dir
2001-08-29 14:35:15 +00:00
# Copy depcomp to subdir because otherwise we won't find it if we're
# using a relative directory.
2002-10-29 19:58:12 +00:00
cp "$am_depcomp" conftest.dir
cd conftest.dir
2000-01-28 14:55:50 +00:00
am_cv_CC_dependencies_compiler_type=none
2002-10-29 19:58:12 +00:00
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
2001-08-29 14:35:15 +00:00
# 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
2002-10-29 19:58:12 +00:00
echo "${am__include} ${am__quote}conftest.Po${am__quote}" > confmf
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
case $depmode in
2000-01-28 14:55:50 +00:00
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
2001-08-29 14:35:15 +00:00
# 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.
2002-10-29 19:58:12 +00:00
if depmode=$depmode \
2000-01-28 14:55:50 +00:00
source=conftest.c object=conftest.o \
depfile=conftest.Po tmpdepfile=conftest.TPo \
2001-08-29 14:35:15 +00:00
$SHELL ./depcomp $depcc -c conftest.c -o conftest.o >/dev/null 2>&1 &&
2002-10-29 19:58:12 +00:00
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
2000-01-28 14:55:50 +00:00
break
fi
done
2001-08-29 14:35:15 +00:00
cd ..
2002-10-29 19:58:12 +00:00
rm -rf conftest.dir
2000-01-28 14:55:50 +00:00
else
am_cv_CC_dependencies_compiler_type=none
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:2253: result: $am_cv_CC_dependencies_compiler_type" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
2000-01-28 14:55:50 +00:00
CCDEPMODE="depmode=$am_cv_CC_dependencies_compiler_type"
2002-10-29 19:58:12 +00:00
echo "$as_me:2257: checking for $CC option to accept ANSI C" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
#line 2265 "configure"
2001-08-29 14:35:15 +00:00
#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
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:2314: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:2317: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:2320: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:2323: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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)
2002-10-29 19:58:12 +00:00
echo "$as_me:2340: result: none needed" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}none needed" >&6 ;;
*)
2002-10-29 19:58:12 +00:00
echo "$as_me:2343: result: $ac_cv_prog_cc_stdc" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
CC="$CC $ac_cv_prog_cc_stdc" ;;
esac
2000-01-28 14:55:50 +00:00
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:2353: checking how to run the C preprocessor" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# On Suns, sometimes $CPP names a directory.
if test -n "$CPP" && test -d "$CPP"; then
CPP=
fi
if test -z "$CPP"; then
2001-08-29 14:35:15 +00:00
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.
1999-12-09 13:01:21 +00:00
# On the NeXT, cc -E runs the code through the compiler's parser,
2001-08-29 14:35:15 +00:00
# not just through cpp. "Syntax error" is here to catch this case.
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 2374 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <assert.h>
2001-08-29 14:35:15 +00:00
Syntax error
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:2379: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:2385: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
1999-12-09 13:01:21 +00:00
:
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2001-08-29 14:35:15 +00:00
# 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
2002-10-29 19:58:12 +00:00
#line 2408 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <ac_nonexistent.h>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:2412: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:2418: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2001-08-29 14:35:15 +00:00
# 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
2002-10-29 19:58:12 +00:00
break
2001-08-29 14:35:15 +00:00
fi
done
ac_cv_prog_CPP=$CPP
fi
CPP=$ac_cv_prog_CPP
else
ac_cv_prog_CPP=$CPP
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:2455: result: $CPP" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
#line 2465 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <assert.h>
2001-08-29 14:35:15 +00:00
Syntax error
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:2470: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:2476: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
1999-12-09 13:01:21 +00:00
:
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2001-08-29 14:35:15 +00:00
# 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
2002-10-29 19:58:12 +00:00
#line 2499 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <ac_nonexistent.h>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:2503: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:2509: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
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
:
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:2537: error: C preprocessor \"$CPP\" fails sanity check" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
case "$target" in
*-pc-cygwin*)
CFLAGS="$CFLAGS -DSYS_CYGWIN32"
;;
i386-sequent-sysv4)
case "$CC" in
cc)
2002-10-29 19:58:12 +00:00
CFLAGS="$CFLAGS -Wc,+abi-socket"
1999-12-09 13:01:21 +00:00
;;
esac
2000-01-28 14:55:50 +00:00
;;
alpha*-dec-osf*)
case "$CC" in
cc)
CFLAGS="$CFLAGS -std1"
;;
esac
;;
2002-10-29 19:58:12 +00:00
*-*-mpeix*)
CPPFLAGS="$CPPFLAGS -DMPE -D_POSIX_SOURCE -D_SOCKET_SOURCE -I/SYSLOG/PUB"
LDFLAGS="$LDFLAGS -L/SYSLOG/PUB"
LIBS="$LIBS -lcurses"
;;
1999-12-09 13:01:21 +00:00
esac
case "$host" in
$target)
;;
*) case "$target" in
*-*-vxworks*)
# Quick and dirty sanity check
case "$VX_KERNEL" in
2002-10-29 19:58:12 +00:00
'') { { echo "$as_me:2580: error: Please follow the directions in html/vxworks.html!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: Please follow the directions in html/vxworks.html!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
CFLAGS="$CFLAGS -DSYS_VXWORKS"
;;
esac
;;
esac
for ac_prog in mawk gawk nawk awk
do
2001-08-29 14:35:15 +00:00
# Extract the first word of "$ac_prog", so it can be a program name with args.
1999-12-09 13:01:21 +00:00
set dummy $ac_prog; ac_word=$2
2002-10-29 19:58:12 +00:00
echo "$as_me:2595: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
if test -n "$AWK"; then
ac_cv_prog_AWK="$AWK" # Let the user override the test.
else
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:2610: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
done
1999-12-09 13:01:21 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
AWK=$ac_cv_prog_AWK
1999-12-09 13:01:21 +00:00
if test -n "$AWK"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:2618: result: $AWK" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$AWK" >&6
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
echo "$as_me:2621: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
test -n "$AWK" && break
1999-12-09 13:01:21 +00:00
done
2002-10-29 19:58:12 +00:00
echo "$as_me:2628: checking whether ${MAKE-make} sets \${MAKE}" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.make <<\EOF
1999-12-09 13:01:21 +00:00
all:
@echo 'ac_maketemp="${MAKE}"'
EOF
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
2001-08-29 14:35:15 +00:00
eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
1999-12-09 13:01:21 +00:00
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
2001-08-29 14:35:15 +00:00
rm -f conftest.make
1999-12-09 13:01:21 +00:00
fi
if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:2648: result: yes" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}yes" >&6
1999-12-09 13:01:21 +00:00
SET_MAKE=
else
2002-10-29 19:58:12 +00:00
echo "$as_me:2652: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
1999-12-09 13:01:21 +00:00
SET_MAKE="MAKE=${MAKE-make}"
fi
rm -f conftest*
case "$GCC" in
yes)
CFLAGS="$CFLAGS -Wall"
# CFLAGS="$CFLAGS -Wcast-align"
2001-08-29 14:35:15 +00:00
CFLAGS="$CFLAGS -Wcast-qual"
# CFLAGS="$CFLAGS -Wconversion"
# CFLAGS="$CFLAGS -Werror"
CFLAGS="$CFLAGS -Wmissing-prototypes"
CFLAGS="$CFLAGS -Wpointer-arith"
CFLAGS="$CFLAGS -Wshadow"
1999-12-09 13:01:21 +00:00
CFLAGS="$CFLAGS -Wstrict-prototypes"
2001-08-29 14:35:15 +00:00
# CFLAGS="$CFLAGS -Wtraditional"
# CFLAGS="$CFLAGS -Wwrite-strings"
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:2673: checking whether ${CC-cc} -pipe works" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking whether ${CC-cc} -pipe works... $ECHO_C" >&6
if test "${ac_cv_prog_cc_pipe+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
echo 'void f(){}' > conftest.c
if test -z "`${CC-cc} -pipe -c conftest.c 2>&1`" -a -s conftest.o; then
ac_cv_prog_cc_pipe=yes
else
ac_cv_prog_cc_pipe=no
fi
rm -f conftest*
2001-08-29 14:35:15 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:2687: result: $ac_cv_prog_cc_pipe" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_prog_cc_pipe" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_prog_cc_pipe" in
yes)
CFLAGS="$CFLAGS -pipe"
;;
esac
;;
esac
ac_busted_vpath_in_make=no
case "$target" in
2001-08-29 14:35:15 +00:00
*-next-nextstep3)
CFLAGS="$CFLAGS -posix"
;;
1999-12-09 13:01:21 +00:00
*-*-irix6.1*) # 64 bit only
2001-08-29 14:35:15 +00:00
# busted vpath?
1999-12-09 13:01:21 +00:00
;;
*-*-irix6*) # 6.2 (and later?)
ac_busted_vpath_in_make=yes
# don't pass -n32 to gcc, it cannot handle and doesn't need it
if test "$GCC" != yes; then
case "$CFLAGS" in
*-n32*) ;;
*-n64*) ;;
*) case "$iCFLAGS" in
'') CFLAGS="-O2 -g3 -n32" ;;
*) CFLAGS="$CFLAGS -n32" ;;
esac
;;
esac
case "$LDFLAGS" in
*-n32*) ;;
*-n64*) ;;
*) LDFLAGS="$LDFLAGS -n32" ;;
esac
fi
;;
*-*-solaris2.5.1)
ac_busted_vpath_in_make=yes
;;
esac
case "$ac_busted_vpath_in_make$srcdir" in
no*) ;;
yes.) ;;
*) case "`${MAKE-make} -v -f /dev/null 2>/dev/null | sed -e 's/GNU Make version \(1-9.]*\).*/\1/' -e q`" in
'')
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:2737: error: building outside of the main directory requires GNU make" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: building outside of the main directory requires GNU make" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
*) ;;
esac
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:2746: checking whether ln -s works" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
LN_S=$as_ln_s
if test "$LN_S" = "ln -s"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:2750: result: yes" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}yes" >&6
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
echo "$as_me:2753: result: no, using $LN_S" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no, using $LN_S" >&6
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
if test $ac_cv_c_compiler_gnu = yes; then
2002-10-29 19:58:12 +00:00
echo "$as_me:2758: checking whether $CC needs -traditional" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6
if test "${ac_cv_prog_gcc_traditional+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ac_pattern="Autoconf.*'x'"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 2765 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sgtty.h>
Autoconf TIOCGETP
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "$ac_pattern" >/dev/null 2>&1; then
ac_cv_prog_gcc_traditional=yes
else
ac_cv_prog_gcc_traditional=no
fi
rm -f conftest*
if test $ac_cv_prog_gcc_traditional = no; then
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 2780 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <termio.h>
Autoconf TCGETA
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "$ac_pattern" >/dev/null 2>&1; then
ac_cv_prog_gcc_traditional=yes
fi
rm -f conftest*
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:2793: result: $ac_cv_prog_gcc_traditional" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_prog_gcc_traditional = yes; then
CC="$CC -traditional"
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:2800: checking for AIX" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for AIX... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 2803 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#ifdef _AIX
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
2002-10-29 19:58:12 +00:00
echo "$as_me:2812: result: yes" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}yes" >&6
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define _ALL_SOURCE 1
EOF
else
2002-10-29 19:58:12 +00:00
echo "$as_me:2819: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
1999-12-09 13:01:21 +00:00
fi
rm -f conftest*
2002-10-29 19:58:12 +00:00
echo "$as_me:2824: checking for minix/config.h" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for minix/config.h... $ECHO_C" >&6
if test "${ac_cv_header_minix_config_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 2830 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <minix/config.h>
2001-08-29 14:35:15 +00:00
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:2834: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:2840: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_cpp_err=yes
fi
if test -z "$ac_cpp_err"; then
ac_cv_header_minix_config_h=yes
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2001-08-29 14:35:15 +00:00
ac_cv_header_minix_config_h=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:2859: result: $ac_cv_header_minix_config_h" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_header_minix_config_h" >&6
if test $ac_cv_header_minix_config_h = yes; then
1999-12-09 13:01:21 +00:00
MINIX=yes
else
2001-08-29 14:35:15 +00:00
MINIX=
1999-12-09 13:01:21 +00:00
fi
if test "$MINIX" = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define _POSIX_SOURCE 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define _POSIX_1_SOURCE 2
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define _MINIX 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:2883: checking for POSIXized ISC" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
if test -d /etc/conf/kconfig.d &&
2001-08-29 14:35:15 +00:00
grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
1999-12-09 13:01:21 +00:00
then
2002-10-29 19:58:12 +00:00
echo "$as_me:2888: result: yes" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}yes" >&6
1999-12-09 13:01:21 +00:00
ISC=yes # If later tests want to check for ISC.
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define _POSIX_SOURCE 1
EOF
if test "$GCC" = yes; then
CC="$CC -posix"
else
CC="$CC -Xp"
fi
else
2002-10-29 19:58:12 +00:00
echo "$as_me:2902: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
1999-12-09 13:01:21 +00:00
ISC=
fi
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:2910: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
if test -n "$RANLIB"; then
ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
else
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:2925: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
done
1999-12-09 13:01:21 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
RANLIB=$ac_cv_prog_RANLIB
1999-12-09 13:01:21 +00:00
if test -n "$RANLIB"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:2933: result: $RANLIB" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$RANLIB" >&6
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
echo "$as_me:2936: result: no" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:2945: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
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"
2002-10-29 19:58:12 +00:00
echo "$as_me:2960: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:2969: result: $ac_ct_RANLIB" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_ct_RANLIB" >&6
else
2002-10-29 19:58:12 +00:00
echo "$as_me:2972: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
fi
RANLIB=$ac_ct_RANLIB
else
RANLIB="$ac_cv_prog_RANLIB"
1999-12-09 13:01:21 +00:00
fi
# Extract the first word of "sh", so it can be a program name with args.
set dummy sh; ac_word=$2
2002-10-29 19:58:12 +00:00
echo "$as_me:2983: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_path_PATH_SH+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
case $PATH_SH in
[\\/]* | ?:[\\/]*)
1999-12-09 13:01:21 +00:00
ac_cv_path_PATH_SH="$PATH_SH" # Let the user override the test with a path.
;;
*)
2001-08-29 14:35:15 +00:00
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_PATH_SH="$ac_dir/$ac_word"
2002-10-29 19:58:12 +00:00
echo "$as_me:3000: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
fi
done
1999-12-09 13:01:21 +00:00
;;
esac
fi
2001-08-29 14:35:15 +00:00
PATH_SH=$ac_cv_path_PATH_SH
1999-12-09 13:01:21 +00:00
if test -n "$PATH_SH"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:3011: result: $PATH_SH" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$PATH_SH" >&6
else
2002-10-29 19:58:12 +00:00
echo "$as_me:3014: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
fi
# Extract the first word of "perl", so it can be a program name with args.
set dummy perl; ac_word=$2
2002-10-29 19:58:12 +00:00
echo "$as_me:3020: checking for $ac_word" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_path_PATH_PERL+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
case $PATH_PERL in
[\\/]* | ?:[\\/]*)
ac_cv_path_PATH_PERL="$PATH_PERL" # 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_PATH_PERL="$ac_dir/$ac_word"
2002-10-29 19:58:12 +00:00
echo "$as_me:3037: found $ac_dir/$ac_word" >&5
2001-08-29 14:35:15 +00:00
break
fi
done
;;
esac
fi
PATH_PERL=$ac_cv_path_PATH_PERL
if test -n "$PATH_PERL"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:3048: result: $PATH_PERL" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$PATH_PERL" >&6
else
2002-10-29 19:58:12 +00:00
echo "$as_me:3051: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
fi
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3056 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#define ACAT(a,b)a ## b
ACAT(Cir,cus)
_ACEOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "Circus" >/dev/null 2>&1; then
cat >>confdefs.h <<\EOF
#define ULONG_CONST(a) a ## UL
EOF
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3070 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#define RCAT(a,b)a/**/b
RCAT(Rei,ser)
_ACEOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "Reiser" >/dev/null 2>&1; then
cat >>confdefs.h <<\EOF
#define ULONG_CONST(a) a/**/L
EOF
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:3083: error: How do we create an unsigned long constant?" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: How do we create an unsigned long constant?" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest*
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
fi
rm -f conftest*
1999-12-09 13:01:21 +00:00
case "$target" in
*-*-vxworks*)
ac_link="$ac_link $VX_KERNEL"
;;
esac
# 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
2001-08-29 14:35:15 +00:00
# AmigaOS /C/install, which installs bootblocks on floppy discs
1999-12-09 13:01:21 +00:00
# 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.
2002-10-29 19:58:12 +00:00
echo "$as_me:3110: checking for a BSD compatible install" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
if test -z "$INSTALL"; then
2001-08-29 14:35:15 +00:00
if test "${ac_cv_path_install+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_save_IFS=$IFS; IFS=$ac_path_separator
1999-12-09 13:01:21 +00:00
for ac_dir in $PATH; do
2001-08-29 14:35:15 +00:00
IFS=$ac_save_IFS
1999-12-09 13:01:21 +00:00
# Account for people who put trailing slashes in PATH elements.
2001-08-29 14:35:15 +00:00
case $ac_dir/ in
/ | ./ | .// | /cC/* \
| /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* \
| /usr/ucb/* ) ;;
1999-12-09 13:01:21 +00:00
*)
# 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
2001-08-29 14:35:15 +00:00
if $as_executable_p "$ac_dir/$ac_prog"; then
1999-12-09 13:01:21 +00:00
if test $ac_prog = install &&
2001-08-29 14:35:15 +00:00
grep dspmsg "$ac_dir/$ac_prog" >/dev/null 2>&1; then
1999-12-09 13:01:21 +00:00
# AIX install. It has an incompatible calling convention.
:
2001-08-29 14:35:15 +00:00
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.
:
1999-12-09 13:01:21 +00:00
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
2001-08-29 14:35:15 +00:00
INSTALL=$ac_cv_path_install
1999-12-09 13:01:21 +00:00
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.
2001-08-29 14:35:15 +00:00
INSTALL=$ac_install_sh
1999-12-09 13:01:21 +00:00
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3159: result: $INSTALL" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$INSTALL" >&6
1999-12-09 13:01:21 +00:00
# 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}'
2001-08-29 14:35:15 +00:00
test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
1999-12-09 13:01:21 +00:00
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
case "$target" in
*-pc-cygwin*)
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:3173: checking for main in -ladvapi32" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for main in -ladvapi32... $ECHO_C" >&6
if test "${ac_cv_lib_advapi32_main+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-12-09 13:01:21 +00:00
LIBS="-ladvapi32 $LIBS"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3181 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
int
main ()
{
main ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3193: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3196: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3199: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3202: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_advapi32_main=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_advapi32_main=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3213: result: $ac_cv_lib_advapi32_main" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_advapi32_main" >&6
if test $ac_cv_lib_advapi32_main = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBADVAPI32 1
1999-12-09 13:01:21 +00:00
EOF
LIBS="-ladvapi32 $LIBS"
fi
;;
esac
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:3227: checking for nlist in -lelf" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for nlist in -lelf... $ECHO_C" >&6
if test "${ac_cv_lib_elf_nlist+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-12-09 13:01:21 +00:00
LIBS="-lelf $LIBS"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3235 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char nlist ();
int
main ()
{
nlist ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3254: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3257: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3260: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3263: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_elf_nlist=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_elf_nlist=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3274: result: $ac_cv_lib_elf_nlist" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_elf_nlist" >&6
if test $ac_cv_lib_elf_nlist = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBELF 1
1999-12-09 13:01:21 +00:00
EOF
LIBS="-lelf $LIBS"
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3285: checking for main in -lkvm" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for main in -lkvm... $ECHO_C" >&6
if test "${ac_cv_lib_kvm_main+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-12-09 13:01:21 +00:00
LIBS="-lkvm $LIBS"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3293 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
int
main ()
{
main ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3305: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3308: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3311: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3314: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_kvm_main=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_kvm_main=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3325: result: $ac_cv_lib_kvm_main" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_kvm_main" >&6
if test $ac_cv_lib_kvm_main = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBKVM 1
1999-12-09 13:01:21 +00:00
EOF
LIBS="-lkvm $LIBS"
fi
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:3336: checking for nlist in -lld" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for nlist in -lld... $ECHO_C" >&6
if test "${ac_cv_lib_ld_nlist+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-12-09 13:01:21 +00:00
LIBS="-lld $LIBS"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3344 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char nlist ();
int
main ()
{
nlist ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3363: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3366: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3369: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3372: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_ld_nlist=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_ld_nlist=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3383: result: $ac_cv_lib_ld_nlist" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_ld_nlist" >&6
if test $ac_cv_lib_ld_nlist = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBLD 1
1999-12-09 13:01:21 +00:00
EOF
LIBS="-lld $LIBS"
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3394: checking for nlist in -lmld" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for nlist in -lmld... $ECHO_C" >&6
if test "${ac_cv_lib_mld_nlist+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-12-09 13:01:21 +00:00
LIBS="-lmld $LIBS"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3402 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
/* 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 nlist ();
int
main ()
{
nlist ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3421: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3424: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3427: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3430: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_mld_nlist=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_mld_nlist=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3441: result: $ac_cv_lib_mld_nlist" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_mld_nlist" >&6
if test $ac_cv_lib_mld_nlist = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBMLD 1
1999-12-09 13:01:21 +00:00
EOF
LIBS="-lmld $LIBS"
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3452: checking for gethostent" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for gethostent... $ECHO_C" >&6
if test "${ac_cv_func_gethostent+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3458 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char gethostent (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char gethostent ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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_gethostent) || defined (__stub___gethostent)
choke me
#else
2001-08-29 14:35:15 +00:00
f = gethostent;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3489: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3492: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3495: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3498: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_func_gethostent=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_gethostent=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3508: result: $ac_cv_func_gethostent" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_func_gethostent" >&6
if test $ac_cv_func_gethostent = yes; then
1999-12-09 13:01:21 +00:00
:
else
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:3514: checking for gethostent in -lnsl" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for gethostent in -lnsl... $ECHO_C" >&6
if test "${ac_cv_lib_nsl_gethostent+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-12-09 13:01:21 +00:00
LIBS="-lnsl -lsocket $LIBS"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3522 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char gethostent ();
int
main ()
{
gethostent ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3541: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3544: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3547: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3550: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_nsl_gethostent=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_nsl_gethostent=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3561: result: $ac_cv_lib_nsl_gethostent" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_nsl_gethostent" >&6
if test $ac_cv_lib_nsl_gethostent = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBNSL 1
1999-12-09 13:01:21 +00:00
EOF
LIBS="-lnsl $LIBS"
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3574: checking for openlog" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for openlog... $ECHO_C" >&6
if test "${ac_cv_func_openlog+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3580 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char openlog (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char openlog ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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_openlog) || defined (__stub___openlog)
choke me
#else
2001-08-29 14:35:15 +00:00
f = openlog;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3611: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3614: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3617: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3620: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_func_openlog=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_openlog=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3630: result: $ac_cv_func_openlog" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_func_openlog" >&6
if test $ac_cv_func_openlog = yes; then
1999-12-09 13:01:21 +00:00
:
else
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:3636: checking for openlog in -lgen" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for openlog in -lgen... $ECHO_C" >&6
if test "${ac_cv_lib_gen_openlog+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-12-09 13:01:21 +00:00
LIBS="-lgen $LIBS"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3644 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char openlog ();
int
main ()
{
openlog ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3663: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3666: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3669: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3672: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_gen_openlog=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_gen_openlog=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3683: result: $ac_cv_lib_gen_openlog" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_gen_openlog" >&6
if test $ac_cv_lib_gen_openlog = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBGEN 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
LIBS="-lgen $LIBS"
2002-10-29 19:58:12 +00:00
else
echo "$as_me:3694: checking for openlog in -lsyslog" >&5
echo $ECHO_N "checking for openlog in -lsyslog... $ECHO_C" >&6
if test "${ac_cv_lib_syslog_openlog+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lsyslog -lsocket $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#line 3702 "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 openlog ();
int
main ()
{
openlog ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:3721: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:3724: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:3727: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:3730: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_syslog_openlog=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_syslog_openlog=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:3741: result: $ac_cv_lib_syslog_openlog" >&5
echo "${ECHO_T}$ac_cv_lib_syslog_openlog" >&6
if test $ac_cv_lib_syslog_openlog = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBSYSLOG 1
EOF
LIBS="-lsyslog $LIBS"
fi
1999-12-09 13:01:21 +00:00
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3756: checking for readline in -lreadline" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for readline in -lreadline... $ECHO_C" >&6
if test "${ac_cv_lib_readline_readline+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lreadline $LIBS"
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3764 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
/* 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 readline ();
int
main ()
{
readline ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3783: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3786: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3789: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3792: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_readline_readline=yes
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_readline_readline=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3803: result: $ac_cv_lib_readline_readline" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_readline_readline" >&6
if test $ac_cv_lib_readline_readline = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBREADLINE 1
EOF
LIBS="-lreadline $LIBS"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
case "$target" in
*-*-linux*) ;;
*)
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:3818: checking for sched_setscheduler in -lrt" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for sched_setscheduler in -lrt... $ECHO_C" >&6
if test "${ac_cv_lib_rt_sched_setscheduler+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-12-09 13:01:21 +00:00
LIBS="-lrt $LIBS"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3826 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char sched_setscheduler ();
int
main ()
{
sched_setscheduler ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3845: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3848: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3851: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3854: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_rt_sched_setscheduler=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_rt_sched_setscheduler=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3865: result: $ac_cv_lib_rt_sched_setscheduler" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_rt_sched_setscheduler" >&6
if test $ac_cv_lib_rt_sched_setscheduler = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBRT 1
1999-12-09 13:01:21 +00:00
EOF
LIBS="-lrt $LIBS"
else
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:3876: checking for sched_setscheduler in -lposix4" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for sched_setscheduler in -lposix4... $ECHO_C" >&6
if test "${ac_cv_lib_posix4_sched_setscheduler+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-12-09 13:01:21 +00:00
LIBS="-lposix4 $LIBS"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3884 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char sched_setscheduler ();
int
main ()
{
sched_setscheduler ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3903: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3906: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3909: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3912: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_posix4_sched_setscheduler=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_posix4_sched_setscheduler=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3923: result: $ac_cv_lib_posix4_sched_setscheduler" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_posix4_sched_setscheduler" >&6
if test $ac_cv_lib_posix4_sched_setscheduler = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBPOSIX4 1
1999-12-09 13:01:21 +00:00
EOF
LIBS="-lposix4 $LIBS"
fi
fi
2001-08-29 14:35:15 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:3939: checking for setsockopt" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for setsockopt... $ECHO_C" >&6
if test "${ac_cv_func_setsockopt+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 3945 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char setsockopt (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char setsockopt ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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_setsockopt) || defined (__stub___setsockopt)
choke me
#else
2001-08-29 14:35:15 +00:00
f = setsockopt;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:3976: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3979: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:3982: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:3985: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_func_setsockopt=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_setsockopt=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:3995: result: $ac_cv_func_setsockopt" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_func_setsockopt" >&6
if test $ac_cv_func_setsockopt = yes; then
1999-12-09 13:01:21 +00:00
:
else
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:4001: checking for setsockopt in -lsocket" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for setsockopt in -lsocket... $ECHO_C" >&6
if test "${ac_cv_lib_socket_setsockopt+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-12-09 13:01:21 +00:00
LIBS="-lsocket $LIBS"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4009 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char setsockopt ();
int
main ()
{
setsockopt ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4028: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:4031: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:4034: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:4037: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_lib_socket_setsockopt=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_socket_setsockopt=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4048: result: $ac_cv_lib_socket_setsockopt" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_lib_socket_setsockopt" >&6
if test $ac_cv_lib_socket_setsockopt = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBSOCKET 1
1999-12-09 13:01:21 +00:00
EOF
LIBS="-lsocket $LIBS"
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4061: checking for ANSI C header files" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4067 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <float.h>
2001-08-29 14:35:15 +00:00
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4075: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4081: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
1999-12-09 13:01:21 +00:00
ac_cv_header_stdc=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
ac_cv_header_stdc=no
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
if test $ac_cv_header_stdc = yes; then
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4103 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <string.h>
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
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.
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4121 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <stdlib.h>
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
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.
2001-08-29 14:35:15 +00:00
if test "$cross_compiling" = yes; then
1999-12-09 13:01:21 +00:00
:
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4142 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <ctype.h>
2001-08-29 14:35:15 +00:00
#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
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
#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
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4168: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:4171: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:4173: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:4176: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
:
else
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4189: result: $ac_cv_header_stdc" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_header_stdc" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_header_stdc = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define STDC_HEADERS 1
EOF
fi
2001-08-29 14:35:15 +00:00
for ac_header in bstring.h errno.h fcntl.h ieeefp.h math.h memory.h netdb.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4202: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4208 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4212: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4218: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4237: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
2001-08-29 14:35:15 +00:00
for ac_header in poll.h resolv.h sched.h sgtty.h stdlib.h string.h termio.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4250: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4256 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4260: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4266: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4285: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
2001-08-29 14:35:15 +00:00
for ac_header in termios.h timepps.h timex.h unistd.h utmp.h utmpx.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4298: 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 4304 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:4308: \"$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:4314: \$? = $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:4333: 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 arpa/nameser.h net/if.h netinet/in_system.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4346: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4352 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4356: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4362: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4381: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
2002-10-29 19:58:12 +00:00
for ac_header in netinet/in_systm.h netinet/in.h netinet/ip.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4394: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4400 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4404: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4410: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4429: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
2001-08-29 14:35:15 +00:00
for ac_header in netinfo/ni.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4442: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4448 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4452: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4458: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4477: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_NETINFO 1
EOF
fi
done
2001-08-29 14:35:15 +00:00
for ac_header in sun/audioio.h sys/audioio.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4493: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4499 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4503: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4509: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4528: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
2001-08-29 14:35:15 +00:00
for ac_header in sys/clkdefs.h sys/file.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4541: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4547 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4551: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4557: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4576: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
case "$target" in
*-*-sunos4*) ;;
2001-08-29 14:35:15 +00:00
*)
for ac_header in sys/ioctl.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4592: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4598 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4602: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4608: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4627: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
;;
esac
2001-08-29 14:35:15 +00:00
for ac_header in sys/lock.h sys/mman.h sys/modem.h sys/param.h sys/ppsclock.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4643: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4649 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4653: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4659: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4678: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
2001-08-29 14:35:15 +00:00
for ac_header in sys/ppstime.h sys/proc.h sys/resource.h sys/sched.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4691: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4697 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4701: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4707: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4726: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
case "$target" in
*-*-sco*)
2001-08-29 14:35:15 +00:00
for ac_header in sys/sio.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4742: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4748 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4752: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4758: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4777: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
;;
2000-01-28 14:55:50 +00:00
esac
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
for ac_header in sys/select.h sys/signal.h sys/sockio.h sys/stat.h sys/stream.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4793: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4799 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4803: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4809: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4828: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
2001-08-29 14:35:15 +00:00
for ac_header in sys/stropts.h sys/sysctl.h sys/syssgi.h sys/termios.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4841: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4847 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4851: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4857: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4876: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
2001-08-29 14:35:15 +00:00
for ac_header in sys/time.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4889: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4895 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4899: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4905: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4924: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4935 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/timepps.h>
#ifdef PPS_API_VERS_1
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
2001-08-29 14:35:15 +00:00
for ac_header in sys/timepps.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:4949: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 4955 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:4959: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:4965: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:4984: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
fi
rm -f conftest*
2001-08-29 14:35:15 +00:00
for ac_header in sys/timers.h sys/timex.h sys/tpro.h sys/types.h sys/wait.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:5000: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5006 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5010: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:5016: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5035: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
2002-10-29 19:58:12 +00:00
echo "$as_me:5045: checking whether time.h and sys/time.h may both be included" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5051 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <sys/time.h>
#include <time.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
2002-10-29 19:58:12 +00:00
if ((struct tm *) 0)
return 0;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5067: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5070: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5073: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5076: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_header_time=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_header_time=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5086: result: $ac_cv_header_time" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_header_time" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_header_time = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define TIME_WITH_SYS_TIME 1
EOF
fi
case "$target" in
*-convex-*)
2001-08-29 14:35:15 +00:00
for ac_header in /sys/sync/queue.h /sys/sync/sema.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:5102: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5108 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5112: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:5118: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5137: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
;;
*-*-bsdi*)
2001-08-29 14:35:15 +00:00
for ac_header in machine/inline.h sys/pcl720.h sys/i8253.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:5153: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5159 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5163: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:5169: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5188: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
fi
done
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:5201: checking for nlist.h" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for nlist.h... $ECHO_C" >&6
if test "${ac_cv_header_nlist_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5207 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <nlist.h>
2001-08-29 14:35:15 +00:00
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5211: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:5217: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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_nlist_h=yes
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2001-08-29 14:35:15 +00:00
ac_cv_header_nlist_h=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5236: result: $ac_cv_header_nlist_h" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_header_nlist_h" >&6
if test $ac_cv_header_nlist_h = yes; then
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NLIST_STRUCT 1
EOF
2002-10-29 19:58:12 +00:00
echo "$as_me:5243: checking for n_un in struct nlist" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for n_un in struct nlist... $ECHO_C" >&6
if test "${ac_cv_struct_nlist_n_un+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5249 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <nlist.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
struct nlist n; n.n_un.n_name = 0;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5261: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5264: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5267: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5270: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_struct_nlist_n_un=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_struct_nlist_n_un=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5280: result: $ac_cv_struct_nlist_n_un" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_struct_nlist_n_un" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_struct_nlist_n_un = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NLIST_NAME_UNION 1
EOF
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5291: checking for basic volatile support" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for basic volatile support... $ECHO_C" >&6
if test "${ac_cv_c_volatile+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5297 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
volatile int x;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5310: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5313: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5316: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5319: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_c_volatile=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_c_volatile=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5330: result: $ac_cv_c_volatile" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_c_volatile" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_c_volatile" in
yes)
;;
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<\EOF
#define volatile
1999-12-09 13:01:21 +00:00
EOF
;;
esac
case "$target" in
sparc-*-solaris2*)
# Assume that solaris2 is Ansi C...
;;
*)
2002-10-29 19:58:12 +00:00
echo "$as_me:5348: checking for ${CC-cc} option to accept ANSI C" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6
if test "${am_cv_prog_cc_stdc+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
am_cv_prog_cc_stdc=no
ac_save_CC="$CC"
# 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"
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5366 "configure"
1999-12-09 13:01:21 +00:00
#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;
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5408: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5411: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5414: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5417: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
am_cv_prog_cc_stdc="$ac_arg"; break
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
done
CC="$ac_save_CC"
fi
if test -z "$am_cv_prog_cc_stdc"; then
2002-10-29 19:58:12 +00:00
echo "$as_me:5431: result: none needed" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}none needed" >&6
1999-12-09 13:01:21 +00:00
else
2002-10-29 19:58:12 +00:00
echo "$as_me:5434: result: $am_cv_prog_cc_stdc" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$am_cv_prog_cc_stdc" >&6
1999-12-09 13:01:21 +00:00
fi
case "x$am_cv_prog_cc_stdc" in
x|xno) ;;
*) CC="$CC $am_cv_prog_cc_stdc" ;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:5442: checking for function prototypes" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for function prototypes... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
if test "$am_cv_prog_cc_stdc" != no; then
2002-10-29 19:58:12 +00:00
echo "$as_me:5445: result: yes" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}yes" >&6
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define PROTOTYPES 1
EOF
U= ANSI2KNR=
else
2002-10-29 19:58:12 +00:00
echo "$as_me:5454: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
1999-12-09 13:01:21 +00:00
U=_ ANSI2KNR=./ansi2knr
2001-08-29 14:35:15 +00:00
fi
# Ensure some checks needed by ansi2knr itself.
2002-10-29 19:58:12 +00:00
echo "$as_me:5459: checking for ANSI C header files" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5465 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <float.h>
2001-08-29 14:35:15 +00:00
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5473: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:5479: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
1999-12-09 13:01:21 +00:00
ac_cv_header_stdc=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
ac_cv_header_stdc=no
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
if test $ac_cv_header_stdc = yes; then
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5501 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <string.h>
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
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.
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5519 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <stdlib.h>
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
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.
2001-08-29 14:35:15 +00:00
if test "$cross_compiling" = yes; then
1999-12-09 13:01:21 +00:00
:
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5540 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <ctype.h>
2001-08-29 14:35:15 +00:00
#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
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
#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
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5566: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5569: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5571: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5574: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
:
else
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5587: result: $ac_cv_header_stdc" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_header_stdc" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_header_stdc = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define STDC_HEADERS 1
EOF
fi
2001-08-29 14:35:15 +00:00
for ac_header in string.h
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:5600: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5606 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5610: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:5616: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
1999-12-09 13:01:21 +00:00
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_Header=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5635: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
2001-08-29 14:35:15 +00:00
done
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:5647: checking if C compiler permits function prototypes" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if C compiler permits function prototypes... $ECHO_C" >&6
if test "${ac_cv_have_prototypes+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5653 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
extern int foo (short);
int foo(short i) { return i; }
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
int i;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5668: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5671: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5674: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5677: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_have_prototypes=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_have_prototypes=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5688: result: $ac_cv_have_prototypes" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_have_prototypes" >&6
1999-12-09 13:01:21 +00:00
if test "$ac_cv_have_prototypes" = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_PROTOTYPES 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5697: checking for an ANSI C-conforming const" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5703 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
;
return 0;
1999-12-09 13:01:21 +00:00
}
2001-08-29 14:35:15 +00:00
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5761: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5764: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5767: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5770: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_c_const=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_c_const=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5780: result: $ac_cv_c_const" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_c_const" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_c_const = no; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
#define const
1999-12-09 13:01:21 +00:00
EOF
fi
case "$host" in
$target)
2002-10-29 19:58:12 +00:00
echo "$as_me:5792: checking whether byte ordering is bigendian" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6
if test "${ac_cv_c_bigendian+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ac_cv_c_bigendian=unknown
# See if sys/param.h defines the BYTE_ORDER macro.
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5800 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <sys/param.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
#if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
bogus endian macros
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5817: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5820: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5823: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5826: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
# It does; now see whether it defined to BIG_ENDIAN or not.
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5830 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <sys/param.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
#if BYTE_ORDER != BIG_ENDIAN
not big endian
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5847: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5850: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5853: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5856: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_c_bigendian=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_c_bigendian=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
if test $ac_cv_c_bigendian = unknown; then
if test "$cross_compiling" = yes; then
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:5872: error: cannot run test program while cross compiling" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5877 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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);
}
2001-08-29 14:35:15 +00:00
_ACEOF
rm -f conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5893: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5896: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5898: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5901: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_c_bigendian=no
else
2001-08-29 14:35:15 +00:00
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_c_bigendian=yes
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5914: result: $ac_cv_c_bigendian" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_c_bigendian" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_c_bigendian = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define WORDS_BIGENDIAN 1
EOF
fi
;;
*) case "$target" in
i*86-*-vxworks*)
# LITTLEENDIAN
;;
*-*-vxworks*)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define WORDS_BIGENDIAN 1
EOF
;;
2002-10-29 19:58:12 +00:00
*) { { echo "$as_me:5935: error: Cross-compiling needs explicit byte order" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: Cross-compiling needs explicit byte order" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:5942: checking return type of signal handlers" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 5948 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <signal.h>
#ifdef signal
2001-08-29 14:35:15 +00:00
# undef signal
1999-12-09 13:01:21 +00:00
#endif
#ifdef __cplusplus
extern "C" void (*signal (int, void (*)(int)))(int);
#else
void (*signal ()) ();
#endif
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
int i;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:5970: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5973: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:5976: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:5979: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_type_signal=void
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_signal=int
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:5989: result: $ac_cv_type_signal" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_signal" >&6
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define RETSIGTYPE $ac_cv_type_signal
EOF
2002-10-29 19:58:12 +00:00
# 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
2001-08-29 14:35:15 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:6002: checking for $ac_header" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_Header+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6008 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
2002-10-29 19:58:12 +00:00
$ac_includes_default
2001-08-29 14:35:15 +00:00
#include <$ac_header>
_ACEOF
2002-10-29 19:58:12 +00:00
rm -f conftest.$ac_objext
if { (eval echo "$as_me:6014: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
2001-08-29 14:35:15 +00:00
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6017: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:6020: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6023: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_Header=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
2002-10-29 19:58:12 +00:00
cat conftest.$ac_ext >&5
eval "$as_ac_Header=no"
2001-08-29 14:35:15 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2001-08-29 14:35:15 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6033: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
2001-08-29 14:35:15 +00:00
EOF
fi
done
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:6043: checking for off_t" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6049 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$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
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6064: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6067: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6070: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6073: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2000-01-28 14:55:50 +00:00
ac_cv_type_off_t=yes
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_off_t=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6083: result: $ac_cv_type_off_t" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_off_t" >&6
if test $ac_cv_type_off_t = yes; then
:
else
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define off_t long
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6095: checking for size_t" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6101 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$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
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6116: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6119: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6122: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6125: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2000-01-28 14:55:50 +00:00
ac_cv_type_size_t=yes
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_size_t=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6135: result: $ac_cv_type_size_t" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_size_t" >&6
if test $ac_cv_type_size_t = yes; then
:
else
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define size_t unsigned
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6147: checking for time_t" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for time_t... $ECHO_C" >&6
if test "${ac_cv_type_time_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6153 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$ac_includes_default
int
main ()
{
if ((time_t *) 0)
return 0;
if (sizeof (time_t))
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6168: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6171: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6174: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6177: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2000-01-28 14:55:50 +00:00
ac_cv_type_time_t=yes
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_time_t=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6187: result: $ac_cv_type_time_t" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_time_t" >&6
if test $ac_cv_type_time_t = yes; then
:
else
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define time_t long
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6199: checking whether struct tm is in sys/time.h or time.h" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6205 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <time.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
struct tm *tp; tp->tm_sec;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6219: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6222: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6225: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6228: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_struct_tm=time.h
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_struct_tm=sys/time.h
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6238: result: $ac_cv_struct_tm" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_struct_tm" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_struct_tm = sys/time.h; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define TM_IN_SYS_TIME 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6248: checking for a fallback value for HZ" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for a fallback value for HZ... $ECHO_C" >&6
if test "${ac_cv_var_default_hz+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ac_cv_var_default_hz=100
case "$target" in
alpha*-dec-osf4*|alpha*-dec-osf5*)
ac_cv_var_default_hz=1024
;;
mips-dec-ultrix4*)
ac_cv_var_default_hz=256
;;
esac
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6263: result: $ac_cv_var_default_hz" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_default_hz" >&6
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define DEFAULT_HZ $ac_cv_var_default_hz
EOF
2002-10-29 19:58:12 +00:00
echo "$as_me:6269: checking if we need to override the system's value for HZ" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we need to override the system's value for HZ... $ECHO_C" >&6
if test "${ac_cv_var_override_hz+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ac_cv_var_override_hz=no
case "$target" in
alpha*-dec-osf4*|alpha*-dec-osf5*)
ac_cv_var_override_hz=yes
;;
mips-dec-ultrix4*)
ac_cv_var_override_hz=yes
;;
*-*-freebsd*)
ac_cv_var_override_hz=yes
;;
*-*-sunos4*)
ac_cv_var_override_hz=yes
;;
esac
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6290: result: $ac_cv_var_override_hz" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_override_hz" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_override_hz" in
yes)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define OVERRIDE_HZ 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:6301: checking struct sigaction for sa_sigaction" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking struct sigaction for sa_sigaction... $ECHO_C" >&6
if test "${ac_cv_struct_sigaction_has_sa_sigaction+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6308 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <signal.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
struct sigaction act; act.sa_sigaction = 0;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6320: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6323: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6326: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6329: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_struct_sigaction_has_sa_sigaction=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_struct_sigaction_has_sa_sigaction=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6341: result: $ac_cv_struct_sigaction_has_sa_sigaction" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_struct_sigaction_has_sa_sigaction" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_struct_sigaction_has_sa_sigaction = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_SA_SIGACTION_IN_STRUCT_SIGACTION 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6350: checking for struct ppsclockev" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for struct ppsclockev... $ECHO_C" >&6
if test "${ac_cv_struct_ppsclockev+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6356 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/types.h>
#ifdef HAVE_SYS_TERMIOS_H
# include <sys/termios.h>
#endif
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
#ifdef HAVE_SYS_PPSCLOCK_H
# include <sys/ppsclock.h>
#endif
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
extern struct ppsclockev *pce;
return pce->serial;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6380: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6383: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6386: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6389: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_struct_ppsclockev=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_struct_ppsclockev=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6400: result: $ac_cv_struct_ppsclockev" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_struct_ppsclockev" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_struct_ppsclockev = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_STRUCT_PPSCLOCKEV 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6409: checking struct sockaddr for sa_len" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking struct sockaddr for sa_len... $ECHO_C" >&6
if test "${ac_cv_struct_sockaddr_has_sa_len+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6415 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <sys/socket.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
extern struct sockaddr *ps;
return ps->sa_len;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6431: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6434: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6437: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6440: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_struct_sockaddr_has_sa_len=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_struct_sockaddr_has_sa_len=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6451: result: $ac_cv_struct_sockaddr_has_sa_len" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_struct_sockaddr_has_sa_len" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_struct_sockaddr_has_sa_len = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_SA_LEN_IN_STRUCT_SOCKADDR 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6460: checking struct clockinfo for hz" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking struct clockinfo for hz... $ECHO_C" >&6
if test "${ac_cv_struct_clockinfo_has_hz+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6466 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/time.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
extern struct clockinfo *pc;
return pc->hz;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6481: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6484: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6487: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6490: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_struct_clockinfo_has_hz=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_struct_clockinfo_has_hz=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6501: result: $ac_cv_struct_clockinfo_has_hz" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_struct_clockinfo_has_hz" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_struct_clockinfo_has_hz = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_HZ_IN_STRUCT_CLOCKINFO 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6510: checking struct clockinfo for tickadj" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking struct clockinfo for tickadj... $ECHO_C" >&6
if test "${ac_cv_struct_clockinfo_has_tickadj+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6516 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/time.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
extern struct clockinfo *pc;
return pc->tickadj;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6531: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6534: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6537: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6540: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_struct_clockinfo_has_tickadj=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_struct_clockinfo_has_tickadj=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6551: result: $ac_cv_struct_clockinfo_has_tickadj" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_struct_clockinfo_has_tickadj" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_struct_clockinfo_has_tickadj = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_TICKADJ_IN_STRUCT_CLOCKINFO 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6560: checking for struct timespec" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for struct timespec... $ECHO_C" >&6
if test "${ac_cv_struct_timespec+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6566 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <sys/time.h>
/* Under SunOS, timespec is in sys/timepps.h, which needs errno.h and FRAC */
#ifdef HAVE_ERRNO_H
# include <errno.h>
#endif
#ifdef HAVE_SYS_TIMEPPS_H
# define FRAC 4294967296
# include <sys/timepps.h>
#endif
int
main ()
{
struct timespec n;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6587: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6590: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6593: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6596: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_struct_timespec=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_struct_timespec=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6606: result: $ac_cv_struct_timespec" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_struct_timespec" >&6
if test $ac_cv_struct_timespec = yes; then
cat >>confdefs.h <<\EOF
#define HAVE_STRUCT_TIMESPEC 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6616: checking for struct ntptimeval" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for struct ntptimeval... $ECHO_C" >&6
if test "${ac_cv_struct_ntptimeval+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6622 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/time.h>
#include <sys/timex.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
struct ntptimeval n;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6636: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6639: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6642: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6645: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_struct_ntptimeval=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_struct_ntptimeval=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6655: result: $ac_cv_struct_ntptimeval" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_struct_ntptimeval" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_struct_ntptimeval = yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_STRUCT_NTPTIMEVAL 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6665: checking for struct ntptimeval.time.tv_nsec" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for struct ntptimeval.time.tv_nsec... $ECHO_C" >&6
if test "${ac_cv_member_struct_ntptimeval_time_tv_nsec+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6671 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else
# ifdef HAVE_TIME_H
# include <time.h>
# endif
#endif
#ifdef HAVE_SYS_TIMEX_H
#include <sys/timex.h>
#else
# ifdef HAVE_TIMEX_H
# include <timex.h>
# endif
#endif
2001-08-29 14:35:15 +00:00
int
main ()
{
2002-10-29 19:58:12 +00:00
static struct ntptimeval ac_aggr;
if (ac_aggr.time.tv_nsec)
return 0;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6699: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6702: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6705: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6708: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_member_struct_ntptimeval_time_tv_nsec=yes
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_member_struct_ntptimeval_time_tv_nsec=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6718: result: $ac_cv_member_struct_ntptimeval_time_tv_nsec" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_member_struct_ntptimeval_time_tv_nsec" >&6
if test $ac_cv_member_struct_ntptimeval_time_tv_nsec = yes; then
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
#define HAVE_STRUCT_NTPTIMEVAL_TIME_TV_NSEC 1
1999-12-09 13:01:21 +00:00
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6728: checking for inline" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
ac_cv_c_inline=no
for ac_kw in inline __inline__ __inline; do
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6736 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
#ifndef __cplusplus
static $ac_kw int static_foo () {return 0; }
$ac_kw int foo () {return 0; }
#endif
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6745: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6748: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6751: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6754: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_c_inline=$ac_kw; break
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
done
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6765: result: $ac_cv_c_inline" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_c_inline" >&6
case $ac_cv_c_inline in
1999-12-09 13:01:21 +00:00
inline | yes) ;;
2001-08-29 14:35:15 +00:00
no)
cat >>confdefs.h <<\EOF
#define inline
1999-12-09 13:01:21 +00:00
EOF
;;
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define inline $ac_cv_c_inline
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:6780: checking whether char is unsigned" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking whether char is unsigned... $ECHO_C" >&6
if test "${ac_cv_c_char_unsigned+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6786 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !(((char) -1) < 0)]
;
return 0;
1999-12-09 13:01:21 +00:00
}
2001-08-29 14:35:15 +00:00
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6798: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6801: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6804: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6807: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_c_char_unsigned=no
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_c_char_unsigned=yes
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6817: result: $ac_cv_c_char_unsigned" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_c_char_unsigned" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_c_char_unsigned = yes && test "$GCC" != yes; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define __CHAR_UNSIGNED__ 1
EOF
fi
case "$host" in
$target)
2002-10-29 19:58:12 +00:00
echo "$as_me:6827: checking for signed char" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for signed char... $ECHO_C" >&6
if test "${ac_cv_type_signed_char+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6833 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
if ((signed char *) 0)
return 0;
if (sizeof (signed char))
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6848: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6851: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6854: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6857: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_type_signed_char=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_signed_char=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:6867: result: $ac_cv_type_signed_char" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_signed_char" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:6870: checking size of signed char" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking size of signed char... $ECHO_C" >&6
if test "${ac_cv_sizeof_signed_char+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
if test "$ac_cv_type_signed_char" = yes; then
1999-12-09 13:01:21 +00:00
if test "$cross_compiling" = yes; then
2001-08-29 14:35:15 +00:00
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6879 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (signed char)) >= 0)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6891: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6894: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6897: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6900: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6905 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (signed char)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6917: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6920: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6923: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6926: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`; ac_mid=`expr 2 '*' $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6942 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$ac_includes_default
int
main ()
1999-12-09 13:01:21 +00:00
{
2001-08-29 14:35:15 +00:00
int _array_ [1 - 2 * !((sizeof (signed char)) >= $ac_mid)]
;
return 0;
1999-12-09 13:01:21 +00:00
}
2001-08-29 14:35:15 +00:00
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6954: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6957: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6960: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6963: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=`expr $ac_mid - 1`; ac_mid=`expr 2 '*' $ac_mid`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
fi
rm -f conftest.$ac_objext conftest.$ac_ext
# Binary search between lo and hi bounds.
while test "x$ac_lo" != "x$ac_hi"; do
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 6979 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (signed char)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:6991: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:6994: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:6997: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7000: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
ac_cv_sizeof_signed_char=$ac_lo
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
if test "$cross_compiling" = yes; then
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:7013: error: cannot run test program while cross compiling" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
{ (exit 1); exit 1; }; }
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7018 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
FILE *f = fopen ("conftest.val", "w");
if (!f)
exit (1);
fprintf (f, "%d", (sizeof (signed char)));
fclose (f);
;
return 0;
}
_ACEOF
rm -f conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7034: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7037: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7039: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7042: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_sizeof_signed_char=`cat conftest.val`
else
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.val
else
ac_cv_sizeof_signed_char=0
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:7058: result: $ac_cv_sizeof_signed_char" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define SIZEOF_SIGNED_CHAR $ac_cv_sizeof_signed_char
EOF
;;
*) case "$target" in
*-*-vxworks*)
2002-10-29 19:58:12 +00:00
echo "$as_me:7067: checking for signed char" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for signed char... $ECHO_C" >&6
if test "${ac_cv_type_signed_char+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7073 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
if ((signed char *) 0)
return 0;
if (sizeof (signed char))
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7088: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7091: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7094: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7097: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_type_signed_char=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_signed_char=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:7107: result: $ac_cv_type_signed_char" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_signed_char" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:7110: checking size of signed char" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking size of signed char... $ECHO_C" >&6
if test "${ac_cv_sizeof_signed_char+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
if test "$ac_cv_type_signed_char" = yes; then
1999-12-09 13:01:21 +00:00
if test "$cross_compiling" = yes; then
2001-08-29 14:35:15 +00:00
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7119 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (signed char)) >= 0)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7131: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7134: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7137: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7140: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7145 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (signed char)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7157: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7160: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7163: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7166: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`; ac_mid=`expr 2 '*' $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7182 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$ac_includes_default
int
main ()
1999-12-09 13:01:21 +00:00
{
2001-08-29 14:35:15 +00:00
int _array_ [1 - 2 * !((sizeof (signed char)) >= $ac_mid)]
;
return 0;
1999-12-09 13:01:21 +00:00
}
2001-08-29 14:35:15 +00:00
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7194: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7197: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7200: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7203: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=`expr $ac_mid - 1`; ac_mid=`expr 2 '*' $ac_mid`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
fi
rm -f conftest.$ac_objext conftest.$ac_ext
# Binary search between lo and hi bounds.
while test "x$ac_lo" != "x$ac_hi"; do
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7219 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (signed char)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7231: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7234: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7237: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7240: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
ac_cv_sizeof_signed_char=$ac_lo
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
if test "$cross_compiling" = yes; then
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:7253: error: cannot run test program while cross compiling" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
{ (exit 1); exit 1; }; }
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7258 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
FILE *f = fopen ("conftest.val", "w");
if (!f)
exit (1);
fprintf (f, "%d", (sizeof (signed char)));
fclose (f);
;
return 0;
}
_ACEOF
rm -f conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7274: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7277: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7279: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7282: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_sizeof_signed_char=`cat conftest.val`
else
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.val
else
ac_cv_sizeof_signed_char=0
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:7298: result: $ac_cv_sizeof_signed_char" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define SIZEOF_SIGNED_CHAR $ac_cv_sizeof_signed_char
EOF
;;
2002-10-29 19:58:12 +00:00
*) { { echo "$as_me:7305: error: Cross-compiling needs explicit SIZEOF_SIGNED_LONG" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: Cross-compiling needs explicit SIZEOF_SIGNED_LONG" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
;;
esac
case "$host" in
$target)
2002-10-29 19:58:12 +00:00
echo "$as_me:7315: checking for int" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for int... $ECHO_C" >&6
if test "${ac_cv_type_int+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7321 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
if ((int *) 0)
return 0;
if (sizeof (int))
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7336: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7339: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7342: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7345: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_type_int=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_int=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:7355: result: $ac_cv_type_int" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_int" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:7358: checking size of int" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking size of int... $ECHO_C" >&6
if test "${ac_cv_sizeof_int+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
if test "$ac_cv_type_int" = yes; then
1999-12-09 13:01:21 +00:00
if test "$cross_compiling" = yes; then
2001-08-29 14:35:15 +00:00
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7367 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (int)) >= 0)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7379: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7382: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7385: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7388: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7393 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7405: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7408: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7411: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7414: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`; ac_mid=`expr 2 '*' $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7430 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$ac_includes_default
int
main ()
1999-12-09 13:01:21 +00:00
{
2001-08-29 14:35:15 +00:00
int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)]
;
return 0;
1999-12-09 13:01:21 +00:00
}
2001-08-29 14:35:15 +00:00
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7442: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7445: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7448: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7451: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=`expr $ac_mid - 1`; ac_mid=`expr 2 '*' $ac_mid`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
fi
rm -f conftest.$ac_objext conftest.$ac_ext
# Binary search between lo and hi bounds.
while test "x$ac_lo" != "x$ac_hi"; do
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7467 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7479: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7482: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7485: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7488: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
ac_cv_sizeof_int=$ac_lo
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
if test "$cross_compiling" = yes; then
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:7501: error: cannot run test program while cross compiling" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
{ (exit 1); exit 1; }; }
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7506 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
FILE *f = fopen ("conftest.val", "w");
if (!f)
exit (1);
fprintf (f, "%d", (sizeof (int)));
fclose (f);
;
return 0;
}
_ACEOF
rm -f conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7522: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7525: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7527: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7530: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_sizeof_int=`cat conftest.val`
else
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.val
else
ac_cv_sizeof_int=0
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:7546: result: $ac_cv_sizeof_int" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_sizeof_int" >&6
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define SIZEOF_INT $ac_cv_sizeof_int
EOF
;;
*) case "$target" in
*-*-vxworks*)
2002-10-29 19:58:12 +00:00
echo "$as_me:7555: checking for int" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for int... $ECHO_C" >&6
if test "${ac_cv_type_int+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7561 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
if ((int *) 0)
return 0;
if (sizeof (int))
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7576: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7579: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7582: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7585: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_type_int=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_int=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:7595: result: $ac_cv_type_int" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_int" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:7598: checking size of int" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking size of int... $ECHO_C" >&6
if test "${ac_cv_sizeof_int+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
if test "$ac_cv_type_int" = yes; then
1999-12-09 13:01:21 +00:00
if test "$cross_compiling" = yes; then
2001-08-29 14:35:15 +00:00
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7607 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (int)) >= 0)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7619: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7622: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7625: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7628: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7633 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7645: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7648: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7651: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7654: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`; ac_mid=`expr 2 '*' $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7670 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$ac_includes_default
int
main ()
1999-12-09 13:01:21 +00:00
{
2001-08-29 14:35:15 +00:00
int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)]
;
return 0;
1999-12-09 13:01:21 +00:00
}
2001-08-29 14:35:15 +00:00
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7682: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7685: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7688: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7691: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=`expr $ac_mid - 1`; ac_mid=`expr 2 '*' $ac_mid`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
fi
rm -f conftest.$ac_objext conftest.$ac_ext
# Binary search between lo and hi bounds.
while test "x$ac_lo" != "x$ac_hi"; do
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7707 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7719: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7722: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7725: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7728: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
ac_cv_sizeof_int=$ac_lo
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
if test "$cross_compiling" = yes; then
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:7741: error: cannot run test program while cross compiling" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
{ (exit 1); exit 1; }; }
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7746 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
FILE *f = fopen ("conftest.val", "w");
if (!f)
exit (1);
fprintf (f, "%d", (sizeof (int)));
fclose (f);
;
return 0;
}
_ACEOF
rm -f conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7762: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7765: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7767: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7770: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_sizeof_int=`cat conftest.val`
else
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.val
else
ac_cv_sizeof_int=0
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:7786: result: $ac_cv_sizeof_int" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_sizeof_int" >&6
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define SIZEOF_INT $ac_cv_sizeof_int
EOF
;;
2002-10-29 19:58:12 +00:00
*) { { echo "$as_me:7793: error: Cross-compiling needs explicit SIZEOF_INT" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: Cross-compiling needs explicit SIZEOF_INT" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
;;
esac
case "$host" in
$target)
2002-10-29 19:58:12 +00:00
echo "$as_me:7803: checking for long" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for long... $ECHO_C" >&6
if test "${ac_cv_type_long+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7809 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
if ((long *) 0)
return 0;
if (sizeof (long))
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7824: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7827: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7830: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7833: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_type_long=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_long=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:7843: result: $ac_cv_type_long" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_long" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:7846: checking size of long" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking size of long... $ECHO_C" >&6
if test "${ac_cv_sizeof_long+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
if test "$ac_cv_type_long" = yes; then
1999-12-09 13:01:21 +00:00
if test "$cross_compiling" = yes; then
2001-08-29 14:35:15 +00:00
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7855 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (long)) >= 0)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7867: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7870: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7873: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7876: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7881 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7893: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7896: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7899: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7902: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`; ac_mid=`expr 2 '*' $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7918 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$ac_includes_default
int
main ()
1999-12-09 13:01:21 +00:00
{
2001-08-29 14:35:15 +00:00
int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)]
;
return 0;
1999-12-09 13:01:21 +00:00
}
2001-08-29 14:35:15 +00:00
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7930: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7933: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7936: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7939: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=`expr $ac_mid - 1`; ac_mid=`expr 2 '*' $ac_mid`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
fi
rm -f conftest.$ac_objext conftest.$ac_ext
# Binary search between lo and hi bounds.
while test "x$ac_lo" != "x$ac_hi"; do
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7955 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:7967: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7970: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:7973: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:7976: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
ac_cv_sizeof_long=$ac_lo
else
if test "$cross_compiling" = yes; then
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:7989: error: cannot run test program while cross compiling" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
{ (exit 1); exit 1; }; }
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 7994 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
FILE *f = fopen ("conftest.val", "w");
if (!f)
exit (1);
fprintf (f, "%d", (sizeof (long)));
fclose (f);
;
return 0;
}
_ACEOF
rm -f conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8010: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8013: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8015: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8018: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_sizeof_long=`cat conftest.val`
else
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
fi
2002-10-29 19:58:12 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2001-08-29 14:35:15 +00:00
fi
fi
rm -f conftest.val
1999-12-09 13:01:21 +00:00
else
ac_cv_sizeof_long=0
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:8034: result: $ac_cv_sizeof_long" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_sizeof_long" >&6
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define SIZEOF_LONG $ac_cv_sizeof_long
EOF
;;
*) case "$target" in
*-*-vxworks*)
2002-10-29 19:58:12 +00:00
echo "$as_me:8043: checking for long" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for long... $ECHO_C" >&6
if test "${ac_cv_type_long+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8049 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
if ((long *) 0)
return 0;
if (sizeof (long))
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8064: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8067: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8070: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8073: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_type_long=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_long=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:8083: result: $ac_cv_type_long" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_long" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:8086: checking size of long" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking size of long... $ECHO_C" >&6
if test "${ac_cv_sizeof_long+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
if test "$ac_cv_type_long" = yes; then
1999-12-09 13:01:21 +00:00
if test "$cross_compiling" = yes; then
2001-08-29 14:35:15 +00:00
# Depending upon the size, compute the lo and hi bounds.
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8095 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (long)) >= 0)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8107: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8110: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8113: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8116: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=0 ac_mid=0
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8121 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8133: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8136: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8139: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8142: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`; ac_mid=`expr 2 '*' $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=-1 ac_mid=-1
while :; do
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8158 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$ac_includes_default
int
main ()
1999-12-09 13:01:21 +00:00
{
2001-08-29 14:35:15 +00:00
int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)]
;
return 0;
1999-12-09 13:01:21 +00:00
}
2001-08-29 14:35:15 +00:00
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8170: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8173: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8176: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8179: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_lo=$ac_mid; break
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_hi=`expr $ac_mid - 1`; ac_mid=`expr 2 '*' $ac_mid`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
fi
rm -f conftest.$ac_objext conftest.$ac_ext
# Binary search between lo and hi bounds.
while test "x$ac_lo" != "x$ac_hi"; do
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8195 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)]
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8207: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8210: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8213: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8216: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_hi=$ac_mid
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_lo=`expr $ac_mid + 1`
fi
rm -f conftest.$ac_objext conftest.$ac_ext
done
ac_cv_sizeof_long=$ac_lo
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
if test "$cross_compiling" = yes; then
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:8229: error: cannot run test program while cross compiling" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
{ (exit 1); exit 1; }; }
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8234 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
$ac_includes_default
int
main ()
{
FILE *f = fopen ("conftest.val", "w");
if (!f)
exit (1);
fprintf (f, "%d", (sizeof (long)));
fclose (f);
;
return 0;
}
_ACEOF
rm -f conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8250: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8253: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8255: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8258: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
ac_cv_sizeof_long=`cat conftest.val`
else
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.val
else
ac_cv_sizeof_long=0
fi
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:8274: result: $ac_cv_sizeof_long" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_sizeof_long" >&6
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define SIZEOF_LONG $ac_cv_sizeof_long
EOF
;;
2002-10-29 19:58:12 +00:00
*) { { echo "$as_me:8281: error: Cross-compiling needs explicit SIZEOF_LONG" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: Cross-compiling needs explicit SIZEOF_LONG" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:8289: checking for s_char" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for s_char... $ECHO_C" >&6
if test "${ac_cv_type_s_char+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8295 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
2001-08-29 14:35:15 +00:00
$ac_includes_default
int
main ()
{
if ((s_char *) 0)
return 0;
if (sizeof (s_char))
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8310: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8313: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8316: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8319: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2000-01-28 14:55:50 +00:00
ac_cv_type_s_char=yes
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_s_char=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:8329: result: $ac_cv_type_s_char" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_s_char" >&6
if test $ac_cv_type_s_char = yes; then
cat >>confdefs.h <<EOF
#define HAVE_S_CHAR 1
1999-12-09 13:01:21 +00:00
EOF
fi
case "$ac_cv_c_char_unsigned$ac_cv_sizeof_signed_char$ac_cv_type_s_char" in
*yes)
# We have a typedef for s_char. Might as well believe it...
;;
no0no)
# We have signed chars, can't say 'signed char', no s_char typedef.
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NEED_S_CHAR_TYPEDEF 1
EOF
;;
no1no)
# We have signed chars, can say 'signed char', no s_char typedef.
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NEED_S_CHAR_TYPEDEF 1
EOF
;;
yes0no)
# We have unsigned chars, can't say 'signed char', no s_char typedef.
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:8359: error: No way to specify a signed character!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: No way to specify a signed character!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
yes1no)
# We have unsigned chars, can say 'signed char', no s_char typedef.
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NEED_S_CHAR_TYPEDEF 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:8371: checking for uid_t in sys/types.h" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8377 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/types.h>
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
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
2002-10-29 19:58:12 +00:00
echo "$as_me:8391: result: $ac_cv_type_uid_t" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_type_uid_t" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_type_uid_t = no; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define uid_t int
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define gid_t int
EOF
fi
case "$target" in
*-*-linux*)
2001-08-29 14:35:15 +00:00
for ac_func in __adjtimex __ntp_gettime
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8411: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8417 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8448: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8451: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8454: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8457: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:8467: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
;;
esac
case "$target" in
*-*-aix4*)
# (prr) aix 4.1 doesn't have clock_settime, but in aix 4.3 it's a stub
# (returning ENOSYS). I didn't check 4.2. If, in the future,
# IBM pulls its thumbs out long enough to implement clock_settime,
# this conditional will need to change. Maybe use AC_TRY_RUN
# instead to try to set the time to itself and check errno.
;;
2001-08-29 14:35:15 +00:00
*)
2002-10-29 19:58:12 +00:00
for ac_func in clock_gettime clock_settime
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8492: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8498 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8529: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8532: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8535: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8538: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:8548: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
;;
esac
2001-08-29 14:35:15 +00:00
for ac_func in daemon
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8564: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8570 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8601: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8604: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8607: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8610: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:8620: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
2001-08-29 14:35:15 +00:00
for ac_func in finite
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8633: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8639 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8670: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8673: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8676: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8679: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:8689: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
for ac_func in isfinite
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8701: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8707 "configure"
2001-08-29 14:35:15 +00:00
#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
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8738: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8741: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8744: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8747: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:8757: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
2001-08-29 14:35:15 +00:00
EOF
else
2002-10-29 19:58:12 +00:00
echo "$as_me:8765: checking for isfinite with <math.h>" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for isfinite with <math.h>... $ECHO_C" >&6
_libs=$LIBS
LIBS="$LIBS -lm"
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8770 "configure"
2001-08-29 14:35:15 +00:00
#include "confdefs.h"
#include <math.h>
int
main ()
{
float f = 0.0; isfinite(f)
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8782: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8785: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8788: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8791: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
echo "$as_me:8793: result: yes" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}yes" >&6
cat >>confdefs.h <<\EOF
#define HAVE_ISFINITE 1
EOF
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
echo "$as_me:8802: result: no" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}no" >&6
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$_libs
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
done
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
done
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
for ac_func in getbootfile getclock getdtablesize getrusage
2001-08-29 14:35:15 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8816: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8822 "configure"
2001-08-29 14:35:15 +00:00
#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
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8853: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8856: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:8859: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8862: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:8872: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
2001-08-29 14:35:15 +00:00
EOF
1999-12-09 13:01:21 +00:00
fi
done
2002-10-29 19:58:12 +00:00
echo "$as_me:8882: checking for gettimeofday" >&5
echo $ECHO_N "checking for gettimeofday... $ECHO_C" >&6
if test "${ac_cv_func_gettimeofday+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#line 8888 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gettimeofday (); 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 gettimeofday ();
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_gettimeofday) || defined (__stub___gettimeofday)
choke me
#else
f = gettimeofday;
#endif
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8919: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8922: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8925: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8928: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_gettimeofday=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_gettimeofday=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
echo "$as_me:8938: result: $ac_cv_func_gettimeofday" >&5
echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6
if test $ac_cv_func_gettimeofday = yes; then
:
else
case "$target" in
*-*-mpeix*) ac_cv_func_gettimeofday=yes
;;
esac
fi
1999-12-09 13:01:21 +00:00
case "$target" in
*-pc-cygwin*)
;;
2001-08-29 14:35:15 +00:00
*)
for ac_func in getuid
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8957: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 8963 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:8994: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:8997: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9000: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9003: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9013: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
;;
esac
2001-08-29 14:35:15 +00:00
for ac_func in hstrerror K_open kvm_open memcpy memmove memset
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9029: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9035 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9066: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9069: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9072: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9075: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9085: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
case "$target" in
*-*-sco3.2v5.0.*)
# Just stubs. Idiots.
;;
2001-08-29 14:35:15 +00:00
*)
for ac_func in mkstemp
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9103: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9109 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9140: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9143: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9146: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9149: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9159: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
;;
esac
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
for ac_func in mktime
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9175: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9181 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9212: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9215: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9218: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9221: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9231: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
LIBOBJS="$LIBOBJS $ac_func.$ac_objext"
1999-12-09 13:01:21 +00:00
fi
done
case "$target" in
*-*-aix4*)
# Just a stub. Idiots.
;;
*-*-irix*)
# Just stubs in Irix. Idiots.
;;
*-*-sco3.2v5.0.*)
# Just stubs. Idiots.
;;
alpha*-dec-osf4*|alpha*-dec-osf5*)
# mlockall is there, as a #define calling memlk via <sys/mman.h>
# Not easy to test for - cheat.
2001-08-29 14:35:15 +00:00
for ac_func in memlk
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9260: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9266 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9297: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9300: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9303: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9306: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9316: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
ac_cv_func_mlockall='yes'
fi
done
2001-08-29 14:35:15 +00:00
for ac_func in mlockall
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9329: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9335 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9366: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9369: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9372: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9375: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9385: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
;;
2001-08-29 14:35:15 +00:00
*)
for ac_func in mlockall
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9400: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9406 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9437: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9440: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9443: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9446: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9456: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
;;
esac
2001-08-29 14:35:15 +00:00
for ac_func in mrand48 srand48 nice nlist
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9472: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9478 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9509: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9512: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9515: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9518: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9528: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
case "$target" in
*-*-solaris2.6)
# Broken...
;;
2001-08-29 14:35:15 +00:00
*)
for ac_func in ntp_adjtime ntp_gettime
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9547: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9553 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9584: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9587: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9590: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9593: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9603: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
;;
esac
2001-08-29 14:35:15 +00:00
for ac_func in plock pututline pututxline readlink rtprio
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9619: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9625 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9656: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9659: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9662: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9665: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9675: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
2001-08-29 14:35:15 +00:00
case "$ac_cv_func_mrand48" in
yes) ;;
*)
for ac_func in random
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9691: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9697 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9728: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9731: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9734: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9737: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9747: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
LIBOBJS="$LIBOBJS $ac_func.$ac_objext"
1999-12-09 13:01:21 +00:00
fi
done
2001-08-29 14:35:15 +00:00
;;
esac
1999-12-09 13:01:21 +00:00
case "$target" in
*-*-aix4*)
# Just a stub in AIX 4. Idiots.
;;
*-*-solaris2.5*)
# Just stubs in solaris2.5. Idiots.
;;
2001-08-29 14:35:15 +00:00
*)
for ac_func in sched_setscheduler
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9772: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9778 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9809: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9812: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9815: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9818: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9828: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
;;
esac
2001-08-29 14:35:15 +00:00
2002-10-29 19:58:12 +00:00
for ac_func in setlinebuf setpgid setpriority setsid
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9844: 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 9850 "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:9881: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:9884: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:9887: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9890: \$? = $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:9900: 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_func in settimeofday
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9913: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9919 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:9950: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9953: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:9956: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:9959: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:9969: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2002-10-29 19:58:12 +00:00
else
case "$target" in
*-*-mpeix*) ac_cv_func_settimeofday=yes
;;
esac
1999-12-09 13:01:21 +00:00
fi
done
2002-10-29 19:58:12 +00:00
for ac_func in setvbuf sigaction
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9988: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 9994 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10025: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10028: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10031: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10034: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10044: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
for ac_func in sigvec sigset sigsuspend stime strchr sysconf sysctl
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:10057: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10063 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10094: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10097: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10100: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10103: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10113: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
2001-08-29 14:35:15 +00:00
for ac_func in snprintf strdup strerror
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:10126: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10132 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10163: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10166: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10169: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10172: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10182: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
LIBOBJS="$LIBOBJS $ac_func.$ac_objext"
1999-12-09 13:01:21 +00:00
fi
done
case "$target" in
*-*-aix4*)
# Just stubs. Idiots.
;;
*-*-netbsd*)
# Just stubs. Idiots.
;;
*-*-openbsd*)
# Just stubs. Idiots.
;;
2001-08-29 14:35:15 +00:00
*)
for ac_func in timer_create timer_settime
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:10209: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10215 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10246: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10249: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10252: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10255: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10265: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
;;
esac
case "$target" in
*-pc-cygwin*)
# I have no idea...
;;
2001-08-29 14:35:15 +00:00
*)
for ac_func in umask
1999-12-09 13:01:21 +00:00
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:10285: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10291 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10322: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10325: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10328: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10331: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10341: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
;;
esac
2001-08-29 14:35:15 +00:00
1999-12-09 13:01:21 +00:00
for ac_func in uname updwtmp updwtmpx vsprintf
do
2002-10-29 19:58:12 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:10357: checking for $ac_func" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2002-10-29 19:58:12 +00:00
if eval "test \"\${$as_ac_var+set}\" = set"; then
2001-08-29 14:35:15 +00:00
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10363 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-08-29 14:35:15 +00:00
which can conflict with char $ac_func (); below. */
1999-12-09 13:01:21 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-08-29 14:35:15 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-12-09 13:01:21 +00:00
/* We use char because int might match the return type of a gcc2
2001-08-29 14:35:15 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
/* 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
2001-08-29 14:35:15 +00:00
f = $ac_func;
1999-12-09 13:01:21 +00:00
#endif
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10394: \"$ac_link\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_link) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10397: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10400: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10403: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=yes"
2001-08-29 14:35:15 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
2002-10-29 19:58:12 +00:00
eval "$as_ac_var=no"
2001-08-29 14:35:15 +00:00
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10413: 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
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<EOF
2002-10-29 19:58:12 +00:00
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
1999-12-09 13:01:21 +00:00
EOF
fi
done
2002-10-29 19:58:12 +00:00
echo "$as_me:10423: checking number of arguments to gettimeofday()" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking number of arguments to gettimeofday()... $ECHO_C" >&6
if test "${ac_cv_func_Xettimeofday_nargs+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10429 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/time.h>
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
gettimeofday((struct timeval*)0,(struct timezone*)0);
settimeofday((struct timeval*)0,(struct timezone*)0);
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10444: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10447: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10450: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10453: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_func_Xettimeofday_nargs=2
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_Xettimeofday_nargs=1
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10464: result: $ac_cv_func_Xettimeofday_nargs" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_func_Xettimeofday_nargs" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_func_Xettimeofday_nargs = 1; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define SYSV_TIMEOFDAY 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10473: checking number of arguments taken by setpgrp()" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking number of arguments taken by setpgrp()... $ECHO_C" >&6
if test "${ac_cv_func_setpgrp_nargs+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10479 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
setpgrp(0,0);
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10498: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10501: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10504: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10507: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_func_setpgrp_nargs=2
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_setpgrp_nargs=0
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10518: result: $ac_cv_func_setpgrp_nargs" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_func_setpgrp_nargs" >&6
1999-12-09 13:01:21 +00:00
if test $ac_cv_func_setpgrp_nargs = 0; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_SETPGRP_0 1
EOF
fi
save_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS -I$srcdir/include"
2002-10-29 19:58:12 +00:00
echo "$as_me:10530: checking argument pointer type of qsort()'s compare function and base" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking argument pointer type of qsort()'s compare function and base... $ECHO_C" >&6
if test "${ac_cv_func_qsort_argtype+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10536 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include "l_stdlib.h"
#ifdef HAVE_PROTOTYPES
#define P(x) x
#else
#define P(x) ()
#endif
extern void *base;
extern sortfunc P((const void *, const void *));
int sortfunc(a, b)
const void *a;
const void *b; { return 0; }
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
qsort(base, 2, sizeof(char *), sortfunc);
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10564: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10567: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10570: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10573: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_func_qsort_argtype=void
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_qsort_argtype=char
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10584: result: $ac_cv_func_qsort_argtype" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_func_qsort_argtype" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_func_qsort_argtype" in
void)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define QSORT_USES_VOID_P 1
EOF
;;
esac
CFLAGS=$save_CFLAGS
2002-10-29 19:58:12 +00:00
echo "$as_me:10597: checking if we need to declare 'errno'" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we need to declare 'errno'... $ECHO_C" >&6
if test "${ac_cv_decl_errno+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10603 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
errno = 0;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10617: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10620: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10623: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10626: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_decl_errno=no
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_decl_errno=yes
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10636: result: $ac_cv_decl_errno" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_decl_errno" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_decl_errno" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_ERRNO 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:10645: checking if we may declare 'h_errno'" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we may declare 'h_errno'... $ECHO_C" >&6
if test "${ac_cv_decl_h_errno+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10651 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/types.h>
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_ARPA_NAMESER_H
#include <arpa/nameser.h>
#endif
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
#ifdef HAVE_RESOLV_H
#include <resolv.h>
#endif
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
extern int h_errno;
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10675: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10678: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10681: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10684: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_decl_h_errno=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_decl_h_errno=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10694: result: $ac_cv_decl_h_errno" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_decl_h_errno" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_decl_h_errno" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_H_ERRNO 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:10703: checking if declaring 'char *sys_errlist[]' is ok" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if declaring 'char *sys_errlist[]' is ok... $ECHO_C" >&6
if test "${ac_cv_decl_sys_errlist+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10709 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <stdio.h>
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
2001-08-29 14:35:15 +00:00
int
main ()
{
extern char *sys_errlist[];
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10725: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10728: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10731: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10734: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_decl_sys_errlist=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_decl_sys_errlist=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10744: result: $ac_cv_decl_sys_errlist" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_decl_sys_errlist" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_decl_sys_errlist" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CHAR_SYS_ERRLIST 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:10753: checking if declaring 'syscall()' is ok" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if declaring 'syscall()' is ok... $ECHO_C" >&6
if test "${ac_cv_decl_syscall+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 10759 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_PROTOTYPES
#define P(x) x
#else
#define P(x) ()
#endif
2001-08-29 14:35:15 +00:00
int
main ()
{
1999-12-09 13:01:21 +00:00
extern int syscall P((int, ...));
2001-08-29 14:35:15 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:10783: \"$ac_compile\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_compile) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10786: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
2002-10-29 19:58:12 +00:00
{ (eval echo "$as_me:10789: \"$ac_try\"") >&5
2001-08-29 14:35:15 +00:00
(eval $ac_try) 2>&5
ac_status=$?
2002-10-29 19:58:12 +00:00
echo "$as_me:10792: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(exit $ac_status); }; }; then
1999-12-09 13:01:21 +00:00
ac_cv_decl_syscall=yes
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_decl_syscall=no
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:10802: result: $ac_cv_decl_syscall" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_decl_syscall" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_decl_syscall" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SYSCALL 1
EOF
;;
esac
case "$target" in
2001-08-29 14:35:15 +00:00
*-*-aix4.3.*)
cat >>confdefs.h <<\EOF
#define DECL_HSTRERROR_0 1
EOF
# Needed for XLC under AIX 4.3.2
;;
2002-10-29 19:58:12 +00:00
*-*-mpeix*)
cat >>confdefs.h <<\EOF
#define DECL_ADJTIME_0 1
EOF
cat >>confdefs.h <<\EOF
#define DECL_INET_NTOA_0 1
EOF
cat >>confdefs.h <<\EOF
#define DECL_MKTEMP_0 1
EOF
cat >>confdefs.h <<\EOF
#define DECL_MRAND48_0 1
EOF
cat >>confdefs.h <<\EOF
#define DECL_SELECT_0 1
EOF
cat >>confdefs.h <<\EOF
#define DECL_SETITIMER_0 1
EOF
cat >>confdefs.h <<\EOF
#define DECL_SRAND48_0 1
EOF
cat >>confdefs.h <<\EOF
#define DECL_SYSLOG_0 1
EOF
cat >>confdefs.h <<\EOF
#define DECL_TIMEOFDAY_0 1
EOF
;;
2000-01-28 14:55:50 +00:00
*-*-osf[45]*)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_PLOCK_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
2000-01-28 14:55:50 +00:00
#define DECL_STIME_1 1
1999-12-09 13:01:21 +00:00
EOF
;;
*-*-riscos4*)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_ADJTIME_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_BZERO_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_IOCTL_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_IPC_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_MEMMOVE_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_MKTEMP_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_RENAME_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SELECT_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SETITIMER_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SETPRIORITY_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_STDIO_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_STRTOL_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SYSLOG_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_TIME_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_TIMEOFDAY_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_TOLOWER_0 1
EOF
;;
*-*-solaris2*)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_MKSTEMP_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SETPRIORITY_1 1
EOF
case "$target" in
*-*-solaris2.4)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_TIMEOFDAY_0 1
EOF
;;
esac
;;
*-*-sunos4*)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_ADJTIME_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_BCOPY_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_BZERO_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_IOCTL_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_IPC_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_MEMMOVE_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_MKTEMP_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_MKSTEMP_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_MRAND48_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_RENAME_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SELECT_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SETITIMER_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SETPRIORITY_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SIGVEC_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SRAND48_0 1
EOF
case "`basename $ac_cv_prog_CC`" in
acc*) ;;
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_STDIO_0 1
EOF
;;
esac
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_STRTOL_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SYSLOG_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_TIME_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_TIMEOFDAY_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_TOLOWER_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_TOUPPER_0 1
2001-08-29 14:35:15 +00:00
EOF
cat >>confdefs.h <<\EOF
#define DECL_STRERROR_0 1
1999-12-09 13:01:21 +00:00
EOF
;;
*-*-ultrix4*)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_ADJTIME_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_BZERO_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_CFSETISPEED_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_IOCTL_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_IPC_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_MKTEMP_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_MRAND48_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_NLIST_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_PLOCK_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SELECT_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SETITIMER_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SETPRIORITY_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SRAND48_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_STIME_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_SYSLOG_0 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DECL_TIMEOFDAY_0 1
EOF
;;
esac
case "$target" in
*-*-sco3.2*)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define TERMIOS_NEEDS__SVID3 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11125: checking if we should use a streams device for ifconfig" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we should use a streams device for ifconfig... $ECHO_C" >&6
if test "${ac_cv_var_use_streams_device_for_ifconfig+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ac_cv_var_use_streams_device_for_ifconfig=no
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11132: result: $ac_cv_var_use_streams_device_for_ifconfig" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_use_streams_device_for_ifconfig" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:11135: checking if we need extra room for SO_RCVBUF" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we need extra room for SO_RCVBUF... $ECHO_C" >&6
if test "${ac_cv_var_rcvbuf_slop+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=no
case "$target" in
*-*-hpux[567]*)
ans=yes
;;
esac
ac_cv_var_rcvbuf_slop=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11148: result: $ac_cv_var_rcvbuf_slop" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_rcvbuf_slop" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_rcvbuf_slop" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NEED_RCVBUF_SLOP 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11157: checking if we will open the broadcast socket" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we will open the broadcast socket... $ECHO_C" >&6
if test "${ac_cv_var_open_bcast_socket+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=yes
case "$target" in
*-*-domainos)
ans=no
;;
*-*-linux*)
ans=no
;;
esac
ac_cv_var_open_bcast_socket=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11173: result: $ac_cv_var_open_bcast_socket" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_open_bcast_socket" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_open_bcast_socket" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define OPEN_BCAST_SOCKET 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11182: checking if we want the HPUX version of FindConfig()" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we want the HPUX version of FindConfig()... $ECHO_C" >&6
if test "${ac_cv_var_hpux_findconfig+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=no
case "$target" in
*-*-hpux*)
ans=yes
;;
esac
ac_cv_var_hpux_findconfig=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11195: result: $ac_cv_var_hpux_findconfig" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_hpux_findconfig" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_hpux_findconfig" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NEED_HPUX_FINDCONFIG 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11204: checking if process groups are set with -pid" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if process groups are set with -pid... $ECHO_C" >&6
if test "${ac_cv_arg_setpgrp_negpid+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
case "$target" in
*-*-hpux[567]*)
ans=no
;;
*-*-hpux*)
ans=yes
;;
*-*-linux*)
ans=yes
;;
*-*-sunos3*)
ans=yes
;;
*-*-ultrix2*)
ans=yes
;;
*)
ans=no
;;
esac
ac_cv_arg_setpgrp_negpid=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11231: result: $ac_cv_arg_setpgrp_negpid" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_arg_setpgrp_negpid" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_arg_setpgrp_negpid" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define UDP_BACKWARDS_SETOWN 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11240: checking if we need a ctty for F_SETOWN" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we need a ctty for F_SETOWN... $ECHO_C" >&6
if test "${ac_cv_func_ctty_for_f_setown+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
case "$target" in
2002-10-29 19:58:12 +00:00
*-*-bsdi[23]*)
1999-12-09 13:01:21 +00:00
ans=yes
;;
*-*-freebsd*)
ans=yes
;;
*-*-netbsd*)
ans=yes
;;
2001-08-29 14:35:15 +00:00
*-*-openbsd*)
ans=yes
;;
1999-12-09 13:01:21 +00:00
*-*-osf*)
ans=yes
;;
*) ans=no
;;
esac
ac_cv_func_ctty_for_f_setown=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11266: result: $ac_cv_func_ctty_for_f_setown" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_func_ctty_for_f_setown" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_func_ctty_for_f_setown" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define USE_FSETOWNCTTY 1
EOF
;;
esac
ntp_warning='GRONK'
2002-10-29 19:58:12 +00:00
echo "$as_me:11276: checking if we'll use clock_settime or settimeofday or stime" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we'll use clock_settime or settimeofday or stime... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_func_clock_settime$ac_cv_func_settimeofday$ac_cv_func_stime" in
yes*)
ntp_warning=''
ans='clock_settime()'
;;
noyes*)
ntp_warning='But clock_settime() would be better (if we had it)'
ans='settimeofday()'
;;
nonoyes)
ntp_warning='Which is the worst of the three'
ans='stime()'
;;
2001-08-29 14:35:15 +00:00
*)
1999-12-09 13:01:21 +00:00
case "$host" in
$target) ntp_warning='Which leaves us with nothing to use!'
ans=none
;;
esac
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11298: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_warning" in
'') ;;
2002-10-29 19:58:12 +00:00
*) { echo "$as_me:11302: WARNING: *** $ntp_warning ***" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: *** $ntp_warning ***" >&2;}
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11307: checking if we have a losing syscall()" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we have a losing syscall()... $ECHO_C" >&6
if test "${ac_cv_var_syscall_bug+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
case "$target" in
*-*-solaris2.4*)
ans=yes
;;
*) ans=no
;;
esac
ac_cv_var_syscall_bug=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11321: result: $ac_cv_var_syscall_bug" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_syscall_bug" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_syscall_bug" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define SYSCALL_BUG 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11330: checking for Streams/TLI" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for Streams/TLI... $ECHO_C" >&6
if test "${ac_cv_var_streams_tli+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
case "$ac_cv_header_sys_stropts_h" in
yes)
ans=no
# There must be a better way...
case "$target" in
*-*-ptx*)
ans=yes
;;
esac
;;
esac
ac_cv_var_streams_tli=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11348: result: $ac_cv_var_streams_tli" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_streams_tli" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_streams_tli" in
yes)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define STREAMS_TLI 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11359: checking for SIGIO" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for SIGIO... $ECHO_C" >&6
if test "${ac_cv_hdr_def_sigio+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 11365 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <signal.h>
#ifdef SIGIO
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ac_cv_hdr_def_sigio=yes
else
ac_cv_hdr_def_sigio=no
fi
rm -f conftest*
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11382: result: $ac_cv_hdr_def_sigio" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_hdr_def_sigio" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:11385: checking if we want to use signalled IO" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we want to use signalled IO... $ECHO_C" >&6
if test "${ac_cv_var_signalled_io+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=no
case "$ac_cv_hdr_def_sigio" in
yes)
ans=yes
case "$target" in
alpha*-dec-osf4*|alpha*-dec-osf5*)
ans=no
;;
*-convex-*)
ans=no
;;
*-dec-*)
ans=no
;;
*-pc-cygwin*)
ans=no
;;
*-sni-sysv*)
ans=no
;;
*-univel-sysv*)
ans=no
;;
*-*-irix6*)
ans=no
;;
*-*-freebsd*)
ans=no
;;
*-*-linux*)
ans=no
;;
esac
;;
esac
ac_cv_var_signalled_io=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11427: result: $ac_cv_var_signalled_io" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_signalled_io" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_signalled_io" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_SIGNALED_IO 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11436: checking for SIGPOLL" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for SIGPOLL... $ECHO_C" >&6
if test "${ac_cv_hdr_def_sigpoll+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 11442 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <signal.h>
#ifdef SIGPOLL
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ac_cv_hdr_def_sigpoll=yes
else
ac_cv_hdr_def_sigpoll=no
fi
rm -f conftest*
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11459: result: $ac_cv_hdr_def_sigpoll" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_hdr_def_sigpoll" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:11462: checking for SIGSYS" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for SIGSYS... $ECHO_C" >&6
if test "${ac_cv_hdr_def_sigsys+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 11468 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <signal.h>
#ifdef SIGSYS
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ac_cv_hdr_def_sigsys=yes
else
ac_cv_hdr_def_sigsys=no
fi
rm -f conftest*
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11485: result: $ac_cv_hdr_def_sigsys" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_hdr_def_sigsys" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:11488: checking if we can use SIGPOLL for UDP I/O" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we can use SIGPOLL for UDP I/O... $ECHO_C" >&6
if test "${ac_cv_var_use_udp_sigpoll+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=no
case "$ac_cv_hdr_def_sigpoll" in
yes)
2001-08-29 14:35:15 +00:00
case "$target" in
1999-12-09 13:01:21 +00:00
mips-sgi-irix*)
ans=no
;;
vax-dec-bsd)
ans=no
;;
*-pc-cygwin*)
ans=no
;;
*-sni-sysv*)
ans=no
;;
*-*-aix4*)
ans=no
;;
*-*-hpux*)
ans=no
;;
*-*-linux*)
ans=no
;;
*-*-osf*)
ans=no
;;
*-*-sunos*)
ans=no
;;
*-*-ultrix*)
ans=no
;;
*) ans=yes
;;
esac
2001-08-29 14:35:15 +00:00
;;
1999-12-09 13:01:21 +00:00
esac
ac_cv_var_use_udp_sigpoll=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11534: result: $ac_cv_var_use_udp_sigpoll" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_use_udp_sigpoll" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_use_udp_sigpoll" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define USE_UDP_SIGPOLL 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11543: checking if we can use SIGPOLL for TTY I/O" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we can use SIGPOLL for TTY I/O... $ECHO_C" >&6
if test "${ac_cv_var_use_tty_sigpoll+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=no
case "$ac_cv_hdr_def_sigpoll" in
yes)
case "$target" in
mips-sgi-irix*)
ans=no
;;
vax-dec-bsd)
ans=no
;;
*-pc-cygwin*)
ans=no
;;
*-sni-sysv*)
ans=no
;;
*-*-aix4*)
ans=no
;;
*-*-hpux*)
ans=no
;;
*-*-linux*)
ans=no
;;
*-*-osf*)
ans=no
;;
*-*-sunos*)
ans=no
;;
*-*-ultrix*)
ans=no
;;
*) ans=yes
;;
esac
;;
esac
ac_cv_var_use_tty_sigpoll=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11589: result: $ac_cv_var_use_tty_sigpoll" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_use_tty_sigpoll" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_use_tty_sigpoll" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define USE_TTY_SIGPOLL 1
EOF
;;
esac
case "$ac_cv_header_sys_sio_h" in
yes)
2002-10-29 19:58:12 +00:00
echo "$as_me:11600: checking sys/sio.h for TIOCDCDTIMESTAMP" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking sys/sio.h for TIOCDCDTIMESTAMP... $ECHO_C" >&6
if test "${ac_cv_hdr_def_tiocdcdtimestamp+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 11606 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/sio.h>
#ifdef TIOCDCDTIMESTAMP
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ac_cv_hdr_def_tiocdcdtimestamp=yes
else
ac_cv_hdr_def_tiocdcdtimestamp=no
fi
rm -f conftest*
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11623: result: $ac_cv_hdr_def_tiocdcdtimestamp" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_hdr_def_tiocdcdtimestamp" >&6
1999-12-09 13:01:21 +00:00
;;
esac
2000-01-28 14:55:50 +00:00
case "$ac_cv_hdr_def_tiocdcdtimestamp" in
yes)
ac_cv_var_oncore_ok=yes
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11634: checking if nlist() values might require extra indirection" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if nlist() values might require extra indirection... $ECHO_C" >&6
if test "${ac_cv_var_nlist_extra_indirection+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=no
case "$target" in
*-*-aix*)
ans=yes
;;
esac
ac_cv_var_nlist_extra_indirection=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11647: result: $ac_cv_var_nlist_extra_indirection" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_nlist_extra_indirection" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_nlist_extra_indirection" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NLIST_EXTRA_INDIRECTION 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11656: checking for a minimum recommended value of tickadj" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for a minimum recommended value of tickadj... $ECHO_C" >&6
if test "${ac_cv_var_min_rec_tickadj+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=no
case "$target" in
*-*-aix*)
ans=40
;;
esac
ac_cv_var_min_rec_tickadj=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11669: result: $ac_cv_var_min_rec_tickadj" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_min_rec_tickadj" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_min_rec_tickadj" in
''|no) ;;
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define MIN_REC_TICKADJ $ac_cv_var_min_rec_tickadj
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11679: checking if the TTY code permits PARENB and IGNPAR" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if the TTY code permits PARENB and IGNPAR... $ECHO_C" >&6
if test "${ac_cv_var_no_parenb_ignpar+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=no
case "$target" in
i?86-*-linux*)
ans=yes
;;
mips-sgi-irix*)
ans=yes
;;
2002-10-29 19:58:12 +00:00
i?86-*-freebsd[123].*)
;;
i?86-*-freebsd*)
ans=yes
;;
1999-12-09 13:01:21 +00:00
esac
ac_cv_var_no_parenb_ignpar=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11700: result: $ac_cv_var_no_parenb_ignpar" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_no_parenb_ignpar" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_no_parenb_ignpar" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NO_PARENB_IGNPAR 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11709: checking if we're including debugging code" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we're including debugging code... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-debugging or --disable-debugging was given.
if test "${enable_debugging+set}" = set; then
enableval="$enable_debugging"
ntp_ok=$enableval
else
ntp_ok=yes
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DEBUG 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11724: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:11727: checking for a the number of minutes in a DST adjustment" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for a the number of minutes in a DST adjustment... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-dst_minutes or --disable-dst_minutes was given.
if test "${enable_dst_minutes+set}" = set; then
enableval="$enable_dst_minutes"
ans=$enableval
else
ans=60
2001-08-29 14:35:15 +00:00
fi;
cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define DSTMINUTES $ans
EOF
2002-10-29 19:58:12 +00:00
echo "$as_me:11740: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:11743: checking if we have the tty_clk line discipline/streams module" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we have the tty_clk line discipline/streams module... $ECHO_C" >&6
if test "${ac_cv_var_tty_clk+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
case "$ac_cv_header_sys_clkdefs_h$ac_cv_hdr_def_tiocdcdtimestamp" in
*yes*) ac_cv_var_tty_clk=yes ;;
esac
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11752: result: $ac_cv_var_tty_clk" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_tty_clk" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_tty_clk" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define TTYCLK 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11761: checking for the ppsclock streams module" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for the ppsclock streams module... $ECHO_C" >&6
if test "${ac_cv_var_ppsclock+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ac_cv_var_ppsclock=$ac_cv_struct_ppsclockev
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11768: result: $ac_cv_var_ppsclock" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_ppsclock" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_ppsclock" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define PPS 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11777: checking for kernel multicast support" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for kernel multicast support... $ECHO_C" >&6
if test "${ac_cv_var_mcast+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ac_cv_var_mcast=no
case "$target" in
i386-sequent-sysv4) ;;
2001-08-29 14:35:15 +00:00
*) cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 11786 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <netinet/in.h>
#ifdef IP_ADD_MEMBERSHIP
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ac_cv_var_mcast=yes
fi
rm -f conftest*
;;
esac
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11802: result: $ac_cv_var_mcast" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_mcast" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_mcast" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define MCAST 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11811: checking availability of ntp_{adj,get}time()" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking availability of ntp_{adj,get}time()... $ECHO_C" >&6
if test "${ac_cv_var_ntp_syscalls+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ac_cv_var_ntp_syscalls=no
case "$ac_cv_func___adjtimex" in
yes)
ac_cv_var_ntp_syscalls=libc
;;
*) case "$ac_cv_func_ntp_adjtime$ac_cv_func_ntp_gettime" in
yesyes)
ac_cv_var_ntp_syscalls=libc
;;
2001-08-29 14:35:15 +00:00
*) cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 11826 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/syscall.h>
#if defined(SYS_ntp_gettime) && defined(SYS_ntp_adjtime)
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ac_cv_var_ntp_syscalls=kernel
fi
rm -f conftest*
;;
esac
;;
esac
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11845: result: $ac_cv_var_ntp_syscalls" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_ntp_syscalls" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_ntp_syscalls" in
libc)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NTP_SYSCALLS_LIBC 1
EOF
;;
kernel)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NTP_SYSCALLS_STD 1
EOF
;;
*)
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11864: checking if sys/timex.h has STA_FLL" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if sys/timex.h has STA_FLL... $ECHO_C" >&6
if test "${ac_cv_var_sta_fll+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 11870 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/timex.h>
#ifdef STA_FLL
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ac_cv_var_sta_fll=yes
else
ac_cv_var_sta_fll=no
fi
rm -f conftest*
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11887: result: $ac_cv_var_sta_fll" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_sta_fll" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:11890: checking if we have kernel PLL support" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we have kernel PLL support... $ECHO_C" >&6
if test "${ac_cv_var_kernel_pll+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
case "$ac_cv_header_sys_timex_h$ac_cv_struct_ntptimeval$ac_cv_var_sta_fll$ac_cv_var_ntp_syscalls" in
*no*)
ac_cv_var_kernel_pll=no
;;
*) ac_cv_var_kernel_pll=yes
;;
esac
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11903: result: $ac_cv_var_kernel_pll" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_kernel_pll" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_kernel_pll" in
yes)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define KERNEL_PLL 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:11914: checking if SIOCGIFCONF returns buffer size in the buffer" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if SIOCGIFCONF returns buffer size in the buffer... $ECHO_C" >&6
if test "${ac_cv_var_size_returned_in_buffer+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=no
case "$target" in
*-fujitsu-uxp*)
ans=yes
;;
*-ncr-sysv4*)
ans=yes
;;
*-univel-sysv*)
ans=yes
;;
esac
ac_cv_var_size_returned_in_buffer=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11933: result: $ac_cv_var_size_returned_in_buffer" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_size_returned_in_buffer" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_size_returned_in_buffer" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define SIZE_RETURNED_IN_BUFFER 1
EOF
;;
esac
# Check for ioctls TIOCGPPSEV
2002-10-29 19:58:12 +00:00
echo "$as_me:11943: checking ioctl TIOCGPPSEV" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking ioctl TIOCGPPSEV... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
if test "$ac_cv_header_termios_h" = "yes"; then
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 11947 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <termios.h>
#ifdef TIOCGPPSEV
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ntp_ok=yes
else
ntp_ok=no
fi
rm -f conftest*
else
ntp_ok=no
fi
if test "$ntp_ok" = "yes"; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_TIOCGPPSEV 1
EOF
ac_cv_var_oncore_ok=yes
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:11973: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
# Check for ioctls TIOCSPPS
2002-10-29 19:58:12 +00:00
echo "$as_me:11977: checking ioctl TIOCSPPS" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking ioctl TIOCSPPS... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
if test "$ac_cv_header_termios_h" = "yes"; then
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 11981 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <termios.h>
#ifdef TIOCSPPS
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ntp_ok=yes
else
ntp_ok=no
fi
rm -f conftest*
else
ntp_ok=no
fi
if test "$ntp_ok" = "yes"; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_TIOCSPPS 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12007: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
# Check for ioctls CIOGETEV
2002-10-29 19:58:12 +00:00
echo "$as_me:12011: checking ioctl CIOGETEV" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking ioctl CIOGETEV... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
if test "$ac_cv_header_sys_ppsclock_h" = "yes"; then
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 12015 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/ppsclock.h>
#ifdef CIOGETEV
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ntp_ok=yes
else
ntp_ok=no
fi
rm -f conftest*
else
ntp_ok=no
fi
if test "$ntp_ok" = "yes"; then
ac_cv_var_oncore_ok=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_CIOGETEV 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12041: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
# ATOM/PPSAPI stuff.
# ATOM used to require struct timespec, but that's been fixed now.
# case "$ac_cv_struct_timespec" in
# 'yes')
# ac_cv_var_atom_ok=yes
# ;;
# esac
ac_cv_var_atom_ok=yes
1999-12-09 13:01:21 +00:00
# Check for header timepps.h, if found then we have PPS API (Draft RFC) stuff.
2001-08-29 14:35:15 +00:00
# The PPSAPI headers need "inline" ($ac_cv_c_inline='inline')
# The PPSAPI needs ATOM
# The PPSAPI needs struct timespec.
case "$ac_cv_c_inline$ac_cv_struct_timespec$ac_cv_header_timepps_h$ac_cv_header_sys_timepps_h" in
inlineyes*yes*)
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_PPSAPI 1
EOF
ac_cv_var_oncore_ok=yes
;;
esac
# Check for ioctls TIOCGSERIAL, TIOCSSERIAL, ASYNC_PPS_CD_POS, ASYNC_PPS_CD_NEG
2002-10-29 19:58:12 +00:00
echo "$as_me:12074: checking for linux/serial.h" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for linux/serial.h... $ECHO_C" >&6
if test "${ac_cv_header_linux_serial_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 12080 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <linux/serial.h>
2001-08-29 14:35:15 +00:00
_ACEOF
2002-10-29 19:58:12 +00:00
if { (eval echo "$as_me:12084: \"$ac_cpp conftest.$ac_ext\"") >&5
2001-08-29 14:35:15 +00:00
(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
2002-10-29 19:58:12 +00:00
echo "$as_me:12090: \$? = $ac_status" >&5
2001-08-29 14:35:15 +00:00
(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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
ac_cpp_err=yes
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
if test -z "$ac_cpp_err"; then
ac_cv_header_linux_serial_h=yes
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_header_linux_serial_h=no
fi
rm -f conftest.err conftest.$ac_ext
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12109: result: $ac_cv_header_linux_serial_h" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_header_linux_serial_h" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12112: checking ioctl TIOCGSERIAL" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking ioctl TIOCGSERIAL... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_header_sys_ppsclock_h$ac_cv_header_linux_serial_h" in
yesyes)
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 12117 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <sys/time.h>
typedef int u_int;
#include <sys/ppsclock.h>
#include <linux/serial.h>
#ifdef TIOCGSERIAL
#ifdef TIOCSSERIAL
#ifdef ASYNC_PPS_CD_POS
#ifdef ASYNC_PPS_CD_NEG
#ifdef CIOGETEV
yes
#endif
#endif
#endif
#endif
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ntp_ok=yes
fi
rm -f conftest*
;;
*)
ntp_ok=no
;;
esac
if test "$ntp_ok" = "yes"; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define HAVE_TIO_SERIAL_STUFF 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12155: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2000-01-28 14:55:50 +00:00
# Check for SHMEM_STATUS support
2002-10-29 19:58:12 +00:00
echo "$as_me:12159: checking SHMEM_STATUS support" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking SHMEM_STATUS support... $ECHO_C" >&6
2000-01-28 14:55:50 +00:00
case "$ac_cv_header_sys_mman_h" in
yes) ntp_ok=yes ;;
*) ntp_ok=no ;;
esac
if test "$ntp_ok" = "yes"; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
2000-01-28 14:55:50 +00:00
#define ONCORE_SHMEM_STATUS 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12171: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
ntp_refclock=no
2002-10-29 19:58:12 +00:00
echo "$as_me:12176: checking for hopf serial clock device" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for hopf serial clock device... $ECHO_C" >&6
# Check whether --enable-HOPFSERIAL or --disable-HOPFSERIAL was given.
if test "${enable_HOPFSERIAL+set}" = set; then
enableval="$enable_HOPFSERIAL"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
fi;
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
cat >>confdefs.h <<\EOF
#define CLOCK_HOPF_SERIAL 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12192: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:12195: checking for hopf PCI clock 6039" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for hopf PCI clock 6039... $ECHO_C" >&6
# Check whether --enable-HOPFPCI or --disable-HOPFPCI was given.
if test "${enable_HOPFPCI+set}" = set; then
enableval="$enable_HOPFPCI"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
fi;
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
cat >>confdefs.h <<\EOF
#define CLOCK_HOPF_PCI 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12211: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
# HPUX only, and by explicit request
2002-10-29 19:58:12 +00:00
echo "$as_me:12215: checking Datum/Bancomm bc635/VME interface" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Datum/Bancomm bc635/VME interface... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-BANCOMM or --disable-BANCOMM was given.
if test "${enable_BANCOMM+set}" = set; then
enableval="$enable_BANCOMM"
ntp_ok=$enableval
else
ntp_ok=no
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_BANC 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12231: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$target" in
yes*-*-hpux*) ;;
2002-10-29 19:58:12 +00:00
yes*) { echo "$as_me:12235: WARNING: *** But the expected answer is... no ***" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: *** But the expected answer is... no ***" >&2;} ;;
1999-12-09 13:01:21 +00:00
esac
#HPUX only, and only by explicit request
2002-10-29 19:58:12 +00:00
echo "$as_me:12240: checking TrueTime GPS receiver/VME interface" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking TrueTime GPS receiver/VME interface... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-GPSVME or --disable-GPSVME was given.
if test "${enable_GPSVME+set}" = set; then
enableval="$enable_GPSVME"
ntp_ok=$enableval
else
ntp_ok=no
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_GPSVME 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12256: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$target" in
yes*-*-hpux*) ;;
2002-10-29 19:58:12 +00:00
yes*) { echo "$as_me:12260: WARNING: *** But the expected answer is... no ***" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: *** But the expected answer is... no ***" >&2;} ;;
1999-12-09 13:01:21 +00:00
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:12264: checking for PCL720 clock support" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for PCL720 clock support... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_header_machine_inline_h$ac_cv_header_sys_pcl720_h$ac_cv_header_sys_i8253_h" in
yesyesyes)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_PPS720 1
EOF
ans=yes
;;
*)
ans=no
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:12278: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12281: checking for SHM clock attached thru shared memory" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for SHM clock attached thru shared memory... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-SHM or --disable-SHM was given.
if test "${enable_SHM+set}" = set; then
enableval="$enable_SHM"
ntp_ok=$enableval
else
ntp_ok=no
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_SHM 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12297: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12300: checking for default inclusion of all suitable non-PARSE clocks" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for default inclusion of all suitable non-PARSE clocks... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-all-clocks or --disable-all-clocks was given.
if test "${enable_all_clocks+set}" = set; then
enableval="$enable_all_clocks"
ntp_eac=$enableval
else
ntp_eac=yes
2001-08-29 14:35:15 +00:00
fi;
2002-10-29 19:58:12 +00:00
echo "$as_me:12309: result: $ntp_eac" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_eac" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:12312: checking if we have support for PARSE clocks" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we have support for PARSE clocks... $ECHO_C" >&6
case "$ac_cv_var_atom_ok$ac_cv_header_termio_h$ac_cv_header_termios_h" in
yes*yes*)
1999-12-09 13:01:21 +00:00
ntp_canparse=yes
;;
*) ntp_canparse=no
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:12321: result: $ntp_canparse" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_canparse" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12324: checking if we have support for audio clocks" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we have support for audio clocks... $ECHO_C" >&6
2000-01-28 14:55:50 +00:00
case "$ac_cv_header_sun_audioio_h$ac_cv_header_sys_audioio_h" in
2001-08-29 14:35:15 +00:00
*yes*)
ntp_canaudio=yes
cat >>confdefs.h <<\EOF
#define HAVE_AUDIO
EOF
;;
*) ntp_canaudio=no ;;
2000-01-28 14:55:50 +00:00
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:12337: result: $ntp_canaudio" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_canaudio" >&6
2000-01-28 14:55:50 +00:00
1999-12-09 13:01:21 +00:00
# Requires modem control
2002-10-29 19:58:12 +00:00
echo "$as_me:12341: checking ACTS modem service" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking ACTS modem service... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-ACTS or --disable-ACTS was given.
if test "${enable_ACTS+set}" = set; then
enableval="$enable_ACTS"
ntp_ok=$enableval
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 12349 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <termios.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef TIOCMBIS
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ntp_ok=$ntp_eac
else
ntp_ok=no
fi
rm -f conftest*
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_ACTS 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12376: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12379: checking Arbiter 1088A/B GPS receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Arbiter 1088A/B GPS receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-ARBITER or --disable-ARBITER was given.
if test "${enable_ARBITER+set}" = set; then
enableval="$enable_ARBITER"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_ARBITER 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12395: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12398: checking Arcron MSF receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Arcron MSF receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-ARCRON_MSF or --disable-ARCRON_MSF was given.
if test "${enable_ARCRON_MSF+set}" = set; then
enableval="$enable_ARCRON_MSF"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_ARCRON_MSF 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12414: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12417: checking ATOM PPS interface" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking ATOM PPS interface... $ECHO_C" >&6
# Check whether --enable-ATOM or --disable-ATOM was given.
if test "${enable_ATOM+set}" = set; then
enableval="$enable_ATOM"
1999-12-09 13:01:21 +00:00
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
case "$ac_cv_var_atom_ok" in
no) ntp_ok=no ;;
esac
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
#define CLOCK_ATOM 1
1999-12-09 13:01:21 +00:00
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12436: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12439: checking Austron 2200A/2201A GPS receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Austron 2200A/2201A GPS receiver... $ECHO_C" >&6
# Check whether --enable-AS2201 or --disable-AS2201 was given.
if test "${enable_AS2201+set}" = set; then
enableval="$enable_AS2201"
1999-12-09 13:01:21 +00:00
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
#define CLOCK_AS2201 1
1999-12-09 13:01:21 +00:00
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12455: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12458: checking CHU modem/decoder" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking CHU modem/decoder... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-CHU or --disable-CHU was given.
if test "${enable_CHU+set}" = set; then
enableval="$enable_CHU"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_CHU 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12474: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
ac_refclock_chu=$ntp_ok
2002-10-29 19:58:12 +00:00
echo "$as_me:12478: checking CHU audio/decoder" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking CHU audio/decoder... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-AUDIO-CHU or --disable-AUDIO-CHU was given.
if test "${enable_AUDIO_CHU+set}" = set; then
enableval="$enable_AUDIO_CHU"
ntp_ok=$enableval
else
2000-01-28 14:55:50 +00:00
case "$ntp_eac$ac_refclock_chu$ntp_canaudio" in
*no*) ntp_ok=no ;;
*) ntp_ok=yes ;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define AUDIO_CHU 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12496: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
2000-01-28 14:55:50 +00:00
# We used to check for sunos/solaris target...
case "$ntp_ok$ac_refclock_chu$ntp_canaudio" in
2002-10-29 19:58:12 +00:00
yes*no*) { echo "$as_me:12500: WARNING: *** But the expected answer is...no ***" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: *** But the expected answer is...no ***" >&2;} ;;
1999-12-09 13:01:21 +00:00
esac
# Not under HP-UX
2002-10-29 19:58:12 +00:00
echo "$as_me:12505: checking Datum Programmable Time System" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Datum Programmable Time System... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-DATUM or --disable-DATUM was given.
if test "${enable_DATUM+set}" = set; then
enableval="$enable_DATUM"
ntp_ok=$enableval
else
case "$ac_cv_header_termios_h" in
yes)
ntp_ok=$ntp_eac
;;
*) ntp_ok=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_DATUM 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12527: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12530: checking Forum Graphic GPS" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Forum Graphic GPS... $ECHO_C" >&6
2000-01-28 14:55:50 +00:00
# Check whether --enable-FG or --disable-FG was given.
if test "${enable_FG+set}" = set; then
enableval="$enable_FG"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
2000-01-28 14:55:50 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
2000-01-28 14:55:50 +00:00
#define CLOCK_FG 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12546: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
2000-01-28 14:55:50 +00:00
1999-12-09 13:01:21 +00:00
# Requires modem control
2002-10-29 19:58:12 +00:00
echo "$as_me:12550: checking Heath GC-1000 WWV/WWVH receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Heath GC-1000 WWV/WWVH receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-HEATH or --disable-HEATH was given.
if test "${enable_HEATH+set}" = set; then
enableval="$enable_HEATH"
ntp_ok=$enableval
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 12558 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <termios.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef TIOCMBIS
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ntp_ok=$ntp_eac
else
ntp_ok=no
fi
rm -f conftest*
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_HEATH 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12585: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12588: checking HP 58503A GPS receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking HP 58503A GPS receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-HPGPS or --disable-HPGPS was given.
if test "${enable_HPGPS+set}" = set; then
enableval="$enable_HPGPS"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_HPGPS 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12604: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12607: checking Sun IRIG audio decoder" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Sun IRIG audio decoder... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-IRIG or --disable-IRIG was given.
if test "${enable_IRIG+set}" = set; then
enableval="$enable_IRIG"
ntp_ok=$enableval
else
2000-01-28 14:55:50 +00:00
case "$ntp_eac$ntp_canaudio" in
*no*) ntp_ok=no ;;
*) ntp_ok=yes ;;
1999-12-09 13:01:21 +00:00
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_IRIG 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12626: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
2000-01-28 14:55:50 +00:00
case "$ntp_ok$ntp_canaudio" in
2002-10-29 19:58:12 +00:00
yesno) { echo "$as_me:12629: WARNING: *** But the expected answer is... no ***" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: *** But the expected answer is... no ***" >&2;} ;;
1999-12-09 13:01:21 +00:00
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:12633: checking for JJY receiver" >&5
echo $ECHO_N "checking for JJY receiver... $ECHO_C" >&6
# Check whether --enable-JJY or --disable-JJY was given.
if test "${enable_JJY+set}" = set; then
enableval="$enable_JJY"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
fi;
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
cat >>confdefs.h <<\EOF
#define CLOCK_JJY 1
EOF
fi
echo "$as_me:12649: result: $ntp_ok" >&5
echo "${ECHO_T}$ntp_ok" >&6
echo "$as_me:12652: checking Leitch CSD 5300 Master Clock System Driver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Leitch CSD 5300 Master Clock System Driver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-LEITCH or --disable-LEITCH was given.
if test "${enable_LEITCH+set}" = set; then
enableval="$enable_LEITCH"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_LEITCH 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12668: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12671: checking local clock reference" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking local clock reference... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-LOCAL-CLOCK or --disable-LOCAL-CLOCK was given.
if test "${enable_LOCAL_CLOCK+set}" = set; then
enableval="$enable_LOCAL_CLOCK"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_LOCAL 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12687: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12690: checking EES M201 MSF receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking EES M201 MSF receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-MSFEES or --disable-MSFEES was given.
if test "${enable_MSFEES+set}" = set; then
enableval="$enable_MSFEES"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_MSFEES 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12706: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
# Not Ultrix
2002-10-29 19:58:12 +00:00
echo "$as_me:12710: checking Magnavox MX4200 GPS receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Magnavox MX4200 GPS receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-MX4200 or --disable-MX4200 was given.
if test "${enable_MX4200+set}" = set; then
enableval="$enable_MX4200"
ntp_ok=$enableval
else
case "$ac_cv_var_ppsclock" in
yes) ntp_ok=$ntp_eac
;;
*) ntp_ok=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_MX4200 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12731: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$target" in
2002-10-29 19:58:12 +00:00
yes*-*-ultrix*) { echo "$as_me:12734: WARNING: *** But the expected answer is... no ***" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: *** But the expected answer is... no ***" >&2;} ;;
1999-12-09 13:01:21 +00:00
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:12738: checking NMEA GPS receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking NMEA GPS receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-NMEA or --disable-NMEA was given.
if test "${enable_NMEA+set}" = set; then
enableval="$enable_NMEA"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_NMEA 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12754: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12757: checking for ONCORE Motorola VP/UT Oncore GPS" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for ONCORE Motorola VP/UT Oncore GPS... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-ONCORE or --disable-ONCORE was given.
if test "${enable_ONCORE+set}" = set; then
enableval="$enable_ONCORE"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_oncore_ok" in
no) ntp_ok=no ;;
esac
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_ONCORE 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12776: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12779: checking for Palisade clock" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for Palisade clock... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-PALISADE or --disable-PALISADE was given.
if test "${enable_PALISADE+set}" = set; then
enableval="$enable_PALISADE"
ntp_ok=$enableval
else
case "$ac_cv_header_termios_h" in
yes)
ntp_ok=$ntp_eac
;;
*) ntp_ok=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_PALISADE 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12802: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12805: checking PST/Traconex 1020 WWV/WWVH receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking PST/Traconex 1020 WWV/WWVH receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-PST or --disable-PST was given.
if test "${enable_PST+set}" = set; then
enableval="$enable_PST"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_PST 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12821: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
# Not Ultrix
2002-10-29 19:58:12 +00:00
echo "$as_me:12825: checking Rockwell Jupiter GPS receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Rockwell Jupiter GPS receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-JUPITER or --disable-JUPITER was given.
if test "${enable_JUPITER+set}" = set; then
enableval="$enable_JUPITER"
ntp_ok=$enableval
else
case "$ac_cv_var_ppsclock" in
# yes) ntp_ok=$ntp_eac
# ;;
*) ntp_ok=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_JUPITER 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12846: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$target" in
2002-10-29 19:58:12 +00:00
yes*-*-ultrix*) { echo "$as_me:12849: WARNING: *** But the expected answer is... no ***" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: *** But the expected answer is... no ***" >&2;} ;;
1999-12-09 13:01:21 +00:00
esac
# Requires modem control
2002-10-29 19:58:12 +00:00
echo "$as_me:12854: checking PTB modem service" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking PTB modem service... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-PTBACTS or --disable-PTBACTS was given.
if test "${enable_PTBACTS+set}" = set; then
enableval="$enable_PTBACTS"
ntp_ok=$enableval
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 12862 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <termios.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef TIOCMBIS
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ntp_ok=$ntp_eac
else
ntp_ok=no
fi
rm -f conftest*
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_PTBACTS 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12889: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12892: checking KSI/Odetics TPRO/S GPS receiver/IRIG interface" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking KSI/Odetics TPRO/S GPS receiver/IRIG interface... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-TPRO or --disable-TPRO was given.
if test "${enable_TPRO+set}" = set; then
enableval="$enable_TPRO"
ntp_ok=$enableval
else
case "$ac_cv_header_sys_tpro_h" in
yes)
ntp_ok=$ntp_eac
;;
*) ntp_ok=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_TPRO 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12914: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ac_cv_header_sys_tpro" in
2002-10-29 19:58:12 +00:00
yesno) { echo "$as_me:12917: WARNING: *** But the expected answer is... no ***" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: *** But the expected answer is... no ***" >&2;} ;;
1999-12-09 13:01:21 +00:00
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:12921: checking TRAK 8810 GPS receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking TRAK 8810 GPS receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-TRAK or --disable-TRAK was given.
if test "${enable_TRAK+set}" = set; then
enableval="$enable_TRAK"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_TRAK 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12937: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12940: checking Chrono-log K-series WWVB receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Chrono-log K-series WWVB receiver... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-CHRONOLOG or --disable-CHRONOLOG was given.
if test "${enable_CHRONOLOG+set}" = set; then
enableval="$enable_CHRONOLOG"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_CHRONOLOG 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12956: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12959: checking Dumb generic hh:mm:ss local clock" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Dumb generic hh:mm:ss local clock... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-DUMBCLOCK or --disable-DUMBCLOCK was given.
if test "${enable_DUMBCLOCK+set}" = set; then
enableval="$enable_DUMBCLOCK"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_DUMBCLOCK 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12975: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12978: checking Conrad parallel port radio clock" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Conrad parallel port radio clock... $ECHO_C" >&6
2000-01-28 14:55:50 +00:00
# Check whether --enable-PCF or --disable-PCF was given.
if test "${enable_PCF+set}" = set; then
enableval="$enable_PCF"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
2000-01-28 14:55:50 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
2000-01-28 14:55:50 +00:00
#define CLOCK_PCF 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:12994: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
2000-01-28 14:55:50 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:12997: checking Spectracom 8170/Netclock/2 WWVB receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Spectracom 8170/Netclock/2 WWVB receiver... $ECHO_C" >&6
2000-01-28 14:55:50 +00:00
# Check whether --enable-SPECTRACOM or --disable-SPECTRACOM was given.
if test "${enable_SPECTRACOM+set}" = set; then
enableval="$enable_SPECTRACOM"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
2000-01-28 14:55:50 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
2000-01-28 14:55:50 +00:00
#define CLOCK_SPECTRACOM 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13013: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
2000-01-28 14:55:50 +00:00
1999-12-09 13:01:21 +00:00
# Not on a vax-dec-bsd
2002-10-29 19:58:12 +00:00
echo "$as_me:13017: checking Kinemetrics/TrueTime receivers" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Kinemetrics/TrueTime receivers... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-TRUETIME or --disable-TRUETIME was given.
if test "${enable_TRUETIME+set}" = set; then
enableval="$enable_TRUETIME"
ntp_ok=$enableval
else
case "$target" in
vax-dec-bsd)
ntp_ok=no
;;
*)
ntp_ok=$ntp_eac
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_TRUETIME 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13040: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$target" in
2002-10-29 19:58:12 +00:00
yesvax-dec-bsd) { echo "$as_me:13043: WARNING: *** But the expected answer is... no ***" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: *** But the expected answer is... no ***" >&2;} ;;
1999-12-09 13:01:21 +00:00
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13047: checking TrueTime 560 IRIG-B decoder" >&5
echo $ECHO_N "checking TrueTime 560 IRIG-B decoder... $ECHO_C" >&6
# Check whether --enable-TT560 or --disable-TT560 was given.
if test "${enable_TT560+set}" = set; then
enableval="$enable_TT560"
ntp_ok=$enableval
else
ntp_ok=no
fi;
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
cat >>confdefs.h <<\EOF
#define CLOCK_TT560
EOF
fi
echo "$as_me:13064: result: $ntp_ok" >&5
echo "${ECHO_T}$ntp_ok" >&6
echo "$as_me:13067: checking Ultralink M320 WWVB receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Ultralink M320 WWVB receiver... $ECHO_C" >&6
2000-01-28 14:55:50 +00:00
# Check whether --enable-ULINK or --disable-ULINK was given.
if test "${enable_ULINK+set}" = set; then
enableval="$enable_ULINK"
1999-12-09 13:01:21 +00:00
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
2000-01-28 14:55:50 +00:00
#define CLOCK_ULINK 1
1999-12-09 13:01:21 +00:00
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13083: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:13086: checking WWV receiver" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking WWV receiver... $ECHO_C" >&6
2000-01-28 14:55:50 +00:00
# Check whether --enable-WWV or --disable-WWV was given.
if test "${enable_WWV+set}" = set; then
enableval="$enable_WWV"
1999-12-09 13:01:21 +00:00
ntp_ok=$enableval
else
2000-01-28 14:55:50 +00:00
case "$ntp_eac$ntp_canaudio" in
*no*) ntp_ok=no ;;
*) ntp_ok=yes ;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
2000-01-28 14:55:50 +00:00
#define CLOCK_WWV 1
1999-12-09 13:01:21 +00:00
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13105: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
2000-01-28 14:55:50 +00:00
case "$ntp_ok$ntp_canaudio" in
2002-10-29 19:58:12 +00:00
yesno) { echo "$as_me:13108: WARNING: *** But the expected answer is... no ***" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: *** But the expected answer is... no ***" >&2;} ;;
2000-01-28 14:55:50 +00:00
esac
1999-12-09 13:01:21 +00:00
# Requires modem control
2002-10-29 19:58:12 +00:00
echo "$as_me:13113: checking USNO modem service" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking USNO modem service... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-USNO or --disable-USNO was given.
if test "${enable_USNO+set}" = set; then
enableval="$enable_USNO"
ntp_ok=$enableval
else
2001-08-29 14:35:15 +00:00
cat >conftest.$ac_ext <<_ACEOF
2002-10-29 19:58:12 +00:00
#line 13121 "configure"
1999-12-09 13:01:21 +00:00
#include "confdefs.h"
#include <termios.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef TIOCMBIS
yes
#endif
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
ntp_ok=$ntp_eac
else
ntp_ok=no
fi
rm -f conftest*
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_USNO 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13148: result: $ntp_ok" >&5
echo "${ECHO_T}$ntp_ok" >&6
echo "$as_me:13151: checking for Zyfer receiver" >&5
echo $ECHO_N "checking for Zyfer receiver... $ECHO_C" >&6
# Check whether --enable-ZYFER or --disable-ZYFER was given.
if test "${enable_ZYFER+set}" = set; then
enableval="$enable_ZYFER"
ntp_ok=$enableval
else
ntp_ok=$ntp_eac
fi;
if test "$ntp_ok" = "yes"; then
ntp_refclock=yes
cat >>confdefs.h <<\EOF
#define CLOCK_ZYFER 1
EOF
fi
echo "$as_me:13168: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:13171: checking for default inclusion of all suitable PARSE clocks" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for default inclusion of all suitable PARSE clocks... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-parse-clocks or --disable-parse-clocks was given.
if test "${enable_parse_clocks+set}" = set; then
enableval="$enable_parse_clocks"
ntp_eapc=$enableval
else
case "$ntp_eac" in
yes) ntp_eapc=$ntp_canparse ;;
*) ntp_eapc=no ;;
esac
ntp_eapc=no
2001-08-29 14:35:15 +00:00
fi;
2002-10-29 19:58:12 +00:00
echo "$as_me:13184: result: $ntp_eapc" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_eapc" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_eac$ntp_eapc$ntp_canparse" in
noyes*)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13189: error: \"--enable-parse-clocks\" requires \"--enable-all-clocks\"." >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: \"--enable-parse-clocks\" requires \"--enable-all-clocks\"." >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
yesyesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13194: error: You said \"--enable-parse-clocks\" but PARSE isn't supported on this platform!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: You said \"--enable-parse-clocks\" but PARSE isn't supported on this platform!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
*) ;;
esac
ntp_libparse=no
ntp_parseutil=no
ntp_rawdcf=no
2002-10-29 19:58:12 +00:00
echo "$as_me:13205: checking Diem Computime Radio Clock" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Diem Computime Radio Clock... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-COMPUTIME or --disable-COMPUTIME was given.
if test "${enable_COMPUTIME+set}" = set; then
enableval="$enable_COMPUTIME"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_COMPUTIME 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13222: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13226: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13232: checking ELV/DCF7000 clock" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking ELV/DCF7000 clock... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-DCF7000 or --disable-DCF7000 was given.
if test "${enable_DCF7000+set}" = set; then
enableval="$enable_DCF7000"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_DCF7000 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13249: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13253: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13259: checking HOPF 6021 clock" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking HOPF 6021 clock... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-HOPF6021 or --disable-HOPF6021 was given.
if test "${enable_HOPF6021+set}" = set; then
enableval="$enable_HOPF6021"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_HOPF6021 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13276: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13280: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13286: checking Meinberg clocks" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Meinberg clocks... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-MEINBERG or --disable-MEINBERG was given.
if test "${enable_MEINBERG+set}" = set; then
enableval="$enable_MEINBERG"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_MEINBERG 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13303: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13307: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13313: checking DCF77 raw time code" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking DCF77 raw time code... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-RAWDCF or --disable-RAWDCF was given.
if test "${enable_RAWDCF+set}" = set; then
enableval="$enable_RAWDCF"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_parseutil=yes
ntp_refclock=yes
ntp_rawdcf=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_RAWDCF 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13332: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13336: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
case "$ntp_rawdcf" in
yes)
2002-10-29 19:58:12 +00:00
echo "$as_me:13344: checking if we must enable parity for RAWDCF" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we must enable parity for RAWDCF... $ECHO_C" >&6
if test "${ac_cv_var_rawdcf_parity+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=no
case "$target" in
*-*-linux*)
ans=yes
;;
esac
ac_cv_var_rawdcf_parity=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13357: result: $ac_cv_var_rawdcf_parity" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_rawdcf_parity" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_rawdcf_parity" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define RAWDCF_NO_IGNPAR 1
EOF
;;
esac
;;
*) # HMS: Is this a good idea?
ac_cv_var_rawdcf_parity=no
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13372: checking RCC 8000 clock" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking RCC 8000 clock... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-RCC8000 or --disable-RCC8000 was given.
if test "${enable_RCC8000+set}" = set; then
enableval="$enable_RCC8000"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_RCC8000 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13389: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13393: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13399: checking Schmid DCF77 clock" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Schmid DCF77 clock... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-SCHMID or --disable-SCHMID was given.
if test "${enable_SCHMID+set}" = set; then
enableval="$enable_SCHMID"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_SCHMID 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13416: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13420: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13426: checking Trimble GPS receiver/TAIP protocol" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Trimble GPS receiver/TAIP protocol... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-TRIMTAIP or --disable-TRIMTAIP was given.
if test "${enable_TRIMTAIP+set}" = set; then
enableval="$enable_TRIMTAIP"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_TRIMTAIP 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13443: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13447: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13453: checking Trimble GPS receiver/TSIP protocol" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking Trimble GPS receiver/TSIP protocol... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-TRIMTSIP or --disable-TRIMTSIP was given.
if test "${enable_TRIMTSIP+set}" = set; then
enableval="$enable_TRIMTSIP"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_TRIMTSIP 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13470: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13474: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13480: checking WHARTON 400A Series clock" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking WHARTON 400A Series clock... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-WHARTON or --disable-WHARTON was given.
if test "${enable_WHARTON+set}" = set; then
enableval="$enable_WHARTON"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_WHARTON_400A 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13497: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13501: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13507: checking VARITEXT clock" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking VARITEXT clock... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
# Check whether --enable-VARITEXT or --disable-VARITEXT was given.
if test "${enable_VARITEXT+set}" = set; then
enableval="$enable_VARITEXT"
ntp_ok=$enableval
else
ntp_ok=$ntp_eapc
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
if test "$ntp_ok" = "yes"; then
ntp_libparse=yes
ntp_refclock=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_VARITEXT 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13524: result: $ntp_ok" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_ok" >&6
1999-12-09 13:01:21 +00:00
case "$ntp_ok$ntp_canparse" in
yesno)
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:13528: error: That's a parse clock and this system doesn't support it!" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: That's a parse clock and this system doesn't support it!" >&2;}
{ (exit 1); exit 1; }; }
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13534: checking if we need to make and use the parse libraries" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we need to make and use the parse libraries... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
ans=no
case "$ntp_libparse" in
yes)
ans=yes
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_PARSE 1
EOF
LIBPARSE=../libparse/libparse.a
MAKE_LIBPARSE=libparse.a
MAKE_CHECK_Y2K=check_y2k
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define PPS_SAMPLE 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define CLOCK_ATOM 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13557: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:13560: checking for openssl library directory" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for openssl library directory... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
# Check whether --with-openssl-libdir or --without-openssl-libdir was given.
if test "${with_openssl_libdir+set}" = set; then
withval="$with_openssl_libdir"
ans=$withval
else
ans=yes
fi;
case "$ans" in
no) ;;
yes) # Look in:
ans="/usr/lib /usr/local/lib /usr/local/ssl/lib"
;;
*) # Look where they said
;;
esac
case "$ans" in
no) ;;
*) # Look for libcrypto.a and libssl.a:
for i in $ans no
do
test -f $i/libcrypto.a -a -f $i/libssl.a && break
done
case "$i" in
no)
ans=no
OPENSSL_LIB=
;;
*) ans=$i
OPENSSL_LIB=$ans
;;
esac
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13596: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:13599: checking for openssl include directory" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for openssl include directory... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
# Check whether --with-openssl-incdir or --without-openssl-incdir was given.
if test "${with_openssl_incdir+set}" = set; then
withval="$with_openssl_incdir"
ans=$withval
else
ans=yes
fi;
case "$ans" in
no) ;;
yes) # look in:
ans="/usr/include /usr/local/include /usr/local/ssl/include"
;;
*) # Look where they said
;;
esac
case "$ans" in
no) ;;
*) # look for openssl/opensslconf.h:
for i in $ans no
do
test -f $i/openssl/opensslconf.h && break
done
case "$i" in
no)
ans=no
OPENSSL_INC=
;;
*) ans=$i
OPENSSL_INC=$ans
;;
esac
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13635: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:13638: checking for the level of crypto support" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for the level of crypto support... $ECHO_C" >&6
# Check whether --with-crypto or --without-crypto was given.
if test "${with_crypto+set}" = set; then
withval="$with_crypto"
ans=$withval
else
ans=yes
fi;
case "$ans" in
no) ;;
yes|rsaref|openssl)
case "$ans" in
yes|rsaref) # Just "rsaref" when OpenSSL is ready
ans=no
;;
*)
if test -z "$OPENSSL_LIB" -o -z "$OPENSSL_INC"
then
ans=no
else
# We have OpenSSL inc/lib - use them.
ans=openssl
CPPFLAGS="$CPPFLAGS -I$OPENSSL_INC"
LDFLAGS="$LDFLAGS -L$OPENSSL_LIB"
LIBS="$LIBS -lcrypto"
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DES 1
EOF
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
#define OPENSSL
EOF
cat >>confdefs.h <<\EOF
#define PUBKEY
EOF
fi
;;
esac
case "$ans" in
no)
if test -f $srcdir/rsaref2/source/digit.c
then
ans=rsaref
RSAOBJS=digit.o
RSASRCS="digit.c digit.h"
RSADIR=rsaref2
fi
if test -f $srcdir/rsaeuro1/source/rsaeuro.h
then
ans=rsaref
RSAOBJS="md4c.o shsc.o"
RSASRCS="md4c.c shsc.c"
RSADIR=rsaeuro1
fi
if test "$ans" = "rsaref"; then
LIBRSAREF=../librsaref/librsaref.a
MAKE_LIBRSAREF=librsaref.a
cat >>confdefs.h <<\EOF
#define DES 1
EOF
cat >>confdefs.h <<\EOF
#define PUBKEY 1
EOF
cat >>confdefs.h <<\EOF
#define RSAREF
EOF
fi
;;
esac
;;
esac
2002-10-29 19:58:12 +00:00
if test x$RSADIR = xrsaref2; then
isRSAREF_TRUE=
isRSAREF_FALSE='#'
else
isRSAREF_TRUE='#'
isRSAREF_FALSE=
fi
if test x$RSADIR = xrsaeuro1; then
isRSAEURO_TRUE=
isRSAEURO_FALSE='#'
else
isRSAEURO_TRUE='#'
isRSAEURO_FALSE=
fi
2001-08-29 14:35:15 +00:00
case "$ans" in
no) ;;
*)
cat >>confdefs.h <<\EOF
#define AUTOKEY
EOF
AUTOKEY=1
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13745: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
2002-10-29 19:58:12 +00:00
echo "$as_me:13748: checking if we want to compile with ElectricFence" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we want to compile with ElectricFence... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
# Check whether --with-electricfence or --without-electricfence was given.
if test "${with_electricfence+set}" = set; then
withval="$with_electricfence"
ans=$withval
else
ans=no
fi;
case "$ans" in
no) ;;
*)
LIBS="$LIBS \${top_builddir}/ElectricFence/libefence.a"
EF_PROGS="eftest tstheap"
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
EF_LIBS=libefence.a
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
ans=yes
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13769: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:13772: checking if we can make dcf parse utilities" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we can make dcf parse utilities... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
ans=no
if test "$ntp_parseutil" = "yes"; then
case "$target" in
*-*-sunos4*|*-*-solaris2*|*-*-linux*)
ans="dcfd testdcf"
DCFD=dcfd
TESTDCF=testdcf
;;
esac
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13784: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:13787: checking if we can build kernel streams modules for parse" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we can build kernel streams modules for parse... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
ans=no
case "$ntp_parseutil$ac_cv_header_sys_stropts_h" in
yesyes)
case "$target" in
sparc-*-sunos4*)
case "$ac_cv_var_kernel_pll" in
yes)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define PPS_SYNC 1
EOF
;;
esac
ans=parsestreams
MAKE_PARSEKMODULE=parsestreams.loadable_module.o
;;
sparc-*-solaris2*)
ans=parsesolaris
MAKE_PARSEKMODULE=parse
;;
esac
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13812: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:13815: checking if we need basic refclock support" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we need basic refclock support... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
if test "$ntp_refclock" = "yes"; then
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define REFCLOCK 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13823: result: $ntp_refclock" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ntp_refclock" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:13826: checking if we want HP-UX adjtimed support" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we want HP-UX adjtimed support... $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
case "$target" in
*-*-hpux[56789]*)
ans=yes
;;
*) ans=no
;;
esac
if test "$ans" = "yes"; then
MAKE_ADJTIMED=adjtimed
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NEED_HPUX_ADJTIME 1
EOF
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13842: result: $ans" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ans" >&6
1999-12-09 13:01:21 +00:00
2002-10-29 19:58:12 +00:00
echo "$as_me:13845: checking if we can read kmem" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we can read kmem... $ECHO_C" >&6
if test "${ac_cv_var_can_kmem+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
# Check whether --enable-kmem or --disable-kmem was given.
if test "${enable_kmem+set}" = set; then
enableval="$enable_kmem"
ans=$enableval
else
2001-08-29 14:35:15 +00:00
case "$ac_cv_func_nlist$ac_cv_func_K_open$ac_cv_func_kvm_open" in
1999-12-09 13:01:21 +00:00
*yes*)
ans=yes
;;
*) ans=no
;;
esac
case "$target" in
*-*-aix*)
#ans=no
;;
*-*-domainos) # Won't be found...
ans=no
;;
*-*-hpux*)
#ans=no
;;
*-*-irix[456]*)
ans=no
;;
*-*-linux*)
ans=no
;;
*-*-winnt3.5)
ans=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
ac_cv_var_can_kmem=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13886: result: $ac_cv_var_can_kmem" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_can_kmem" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_can_kmem" in
*yes*) ;;
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define NOKMEM 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13897: checking if adjtime is accurate" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if adjtime is accurate... $ECHO_C" >&6
if test "${ac_cv_var_adjtime_is_accurate+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
# Check whether --enable-accurate-adjtime or --disable-accurate-adjtime was given.
if test "${enable_accurate_adjtime+set}" = set; then
enableval="$enable_accurate_adjtime"
ans=$enableval
else
2001-08-29 14:35:15 +00:00
case "$target" in
1999-12-09 13:01:21 +00:00
i386-sequent-ptx*)
ans=no
;;
i386-unknown-osf1*)
ans=yes
;;
mips-sgi-irix[456]*)
ans=yes
;;
*-fujitsu-uxp*)
ans=yes
;;
*-ibm-aix4*)
ans=yes
;;
*-*-linux*)
ans=yes
;;
*-*-solaris2.[01]*)
ans=no
;;
*-*-solaris2*)
ans=yes
;;
*) ans=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
ac_cv_var_adjtime_is_accurate=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13939: result: $ac_cv_var_adjtime_is_accurate" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_adjtime_is_accurate" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_adjtime_is_accurate" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define ADJTIME_IS_ACCURATE 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:13948: checking the name of 'tick' in the kernel" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking the name of 'tick' in the kernel... $ECHO_C" >&6
if test "${ac_cv_var_nlist_tick+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=_tick
case "$target" in
m68*-hp-hpux*) # HP9000/300?
ans=_old_tick
;;
*-apple-aux[23]*)
ans=tick
;;
*-hp-hpux*)
ans=old_tick
;;
*-ibm-aix[34]*)
ans=no
;;
2002-10-29 19:58:12 +00:00
*-*-mpeix*)
ans=no
;;
1999-12-09 13:01:21 +00:00
*-*-ptx*)
ans=tick
;;
*-*-sco3.2v[45]*)
ans=no
;;
*-*-solaris2*)
ans=nsec_per_tick
;;
*-*-sysv4*)
ans=tick
;;
esac
ac_cv_var_nlist_tick=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:13985: result: $ac_cv_var_nlist_tick" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_nlist_tick" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_nlist_tick" in
''|no) ;; # HMS: I think we can only get 'no' here...
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define K_TICK_NAME "$ac_cv_var_nlist_tick"
EOF
;;
esac
#
2002-10-29 19:58:12 +00:00
echo "$as_me:13995: checking for the units of 'tick'" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for the units of 'tick'... $ECHO_C" >&6
if test "${ac_cv_var_tick_nano+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=usec
case "$target" in
*-*-solaris2*)
ans=nsec
;;
esac
ac_cv_var_tick_nano=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14008: result: $ac_cv_var_tick_nano" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_tick_nano" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_tick_nano" in
nsec)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define TICK_NANO 1
EOF
;;
esac
#
2002-10-29 19:58:12 +00:00
echo "$as_me:14019: checking the name of 'tickadj' in the kernel" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking the name of 'tickadj' in the kernel... $ECHO_C" >&6
if test "${ac_cv_var_nlist_tickadj+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=_tickadj
case "$target" in
m68*-hp-hpux*) # HP9000/300?
ans=_tickadj
;;
*-apple-aux[23]*)
ans=tickadj
;;
*-hp-hpux10*)
ans=no
;;
*-hp-hpux9*)
ans=no
;;
*-hp-hpux*)
ans=tickadj
;;
*-*-aix*)
ans=tickadj
;;
2002-10-29 19:58:12 +00:00
*-*-mpeix*)
ans=no
;;
1999-12-09 13:01:21 +00:00
*-*-ptx*)
ans=tickadj
;;
*-*-sco3.2v4*)
ans=no
;;
*-*-sco3.2v5.0*)
ans=clock_drift
;;
*-*-solaris2*)
ans=no # hrestime_adj
;;
*-*-sysv4*)
ans=tickadj
;;
esac
ac_cv_var_nlist_tickadj=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14065: result: $ac_cv_var_nlist_tickadj" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_nlist_tickadj" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_nlist_tickadj" in
''|no) ;; # HMS: I think we can only get 'no' here...
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define K_TICKADJ_NAME "$ac_cv_var_nlist_tickadj"
EOF
;;
esac
#
2002-10-29 19:58:12 +00:00
echo "$as_me:14075: checking for the units of 'tickadj'" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for the units of 'tickadj'... $ECHO_C" >&6
if test "${ac_cv_var_tickadj_nano+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ans=usec
case "$target" in
*-*-solaris2*)
ans=nsec
;;
esac
ac_cv_var_tickadj_nano=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14088: result: $ac_cv_var_tickadj_nano" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_tickadj_nano" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_tickadj_nano" in
nsec)
2001-08-29 14:35:15 +00:00
cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define TICKADJ_NANO 1
EOF
;;
esac
#
2002-10-29 19:58:12 +00:00
echo "$as_me:14099: checking half-heartedly for 'dosynctodr' in the kernel" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking half-heartedly for 'dosynctodr' in the kernel... $ECHO_C" >&6
if test "${ac_cv_var_nlist_dosynctodr+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
case "$target" in
*-apple-aux[23]*)
ans=no
;;
*-sni-sysv*)
ans=dosynctodr
;;
*-*-aix*)
ans=dosynctodr
;;
*-*-hpux*)
ans=no
;;
2002-10-29 19:58:12 +00:00
*-*-mpeix*)
ans=no
;;
1999-12-09 13:01:21 +00:00
*-*-nextstep*)
ans=_dosynctodr
;;
*-*-ptx*)
ans=doresettodr
;;
*-*-sco3.2v4*)
ans=no
;;
*-*-sco3.2v5*)
ans=track_rtc
;;
*-*-solaris2*)
ans=dosynctodr
;;
*-*-sysv4*)
ans=doresettodr
;;
*)
ans=_dosynctodr
;;
esac
ac_cv_var_nlist_dosynctodr=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14144: result: $ac_cv_var_nlist_dosynctodr" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_nlist_dosynctodr" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_nlist_dosynctodr" in
no) ;;
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define K_DOSYNCTODR_NAME "$ac_cv_var_nlist_dosynctodr"
EOF
;;
esac
#
2002-10-29 19:58:12 +00:00
echo "$as_me:14155: checking half-heartedly for 'noprintf' in the kernel" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking half-heartedly for 'noprintf' in the kernel... $ECHO_C" >&6
if test "${ac_cv_var_nlist_noprintf+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
case "$target" in
*-apple-aux[23]*)
ans=no
;;
*-sni-sysv*)
ans=noprintf
;;
*-*-aix*)
ans=noprintf
;;
*-*-hpux*)
ans=no
;;
2002-10-29 19:58:12 +00:00
*-*-mpeix*)
ans=no
;;
1999-12-09 13:01:21 +00:00
*-*-ptx*)
ans=noprintf
;;
*-*-nextstep*)
ans=_noprintf
;;
*-*-solaris2*)
ans=noprintf
;;
*-*-sysv4*)
ans=noprintf
;;
*)
ans=_noprintf
;;
esac
ac_cv_var_nlist_noprintf=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14194: result: $ac_cv_var_nlist_noprintf" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_nlist_noprintf" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_nlist_noprintf" in
no) ;;
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define K_NOPRINTF_NAME "$ac_cv_var_nlist_noprintf"
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14205: checking for a default value for 'tick'" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for a default value for 'tick'... $ECHO_C" >&6
if test "${ac_cv_var_tick+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
# Check whether --enable-tick or --disable-tick was given.
if test "${enable_tick+set}" = set; then
enableval="$enable_tick"
ans=$enableval
else
ans=no
case "$target" in
XXX-*-pc-cygwin*)
;;
*-univel-sysv*)
ans=10000
;;
*-*-irix*)
ans=10000
;;
*-*-linux*)
ans=txc.tick
;;
2002-10-29 19:58:12 +00:00
*-*-mpeix*)
ans=no
;;
1999-12-09 13:01:21 +00:00
*-*-winnt3.5)
ans='(every / 10)'
;;
*)
ans='1000000L/hz'
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
ac_cv_var_tick=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14241: result: $ac_cv_var_tick" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_tick" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_tick" in
''|no) ;; # HMS: I think we can only get 'no' here...
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define PRESET_TICK $ac_cv_var_tick
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14251: checking for a default value for 'tickadj'" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking for a default value for 'tickadj'... $ECHO_C" >&6
if test "${ac_cv_var_tickadj+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
# Check whether --enable-tickadj or --disable-tickadj was given.
if test "${enable_tickadj+set}" = set; then
enableval="$enable_tickadj"
ans=$enableval
else
ans='500/hz'
case "$target" in
*-fujitsu-uxp*)
case "$ac_cv_var_adjtime_is_accurate" in
yes) ans='tick/16' ;;
esac
;;
XXX-*-pc-cygwin*)
ans=no
;;
*-univel-sysv*)
ans=80
;;
*-*-aix*)
case "$ac_cv_var_can_kmem" in
no) ans=1000 ;;
esac
;;
*-*-domainos) # Skippy: won't be found...
case "$ac_cv_var_can_kmem" in
no) ans=668 ;;
esac
;;
*-*-hpux*)
case "$ac_cv_var_adjtime_is_accurate" in
yes) ans='tick/16' ;;
esac
;;
*-*-irix*)
ans=150
;;
2002-10-29 19:58:12 +00:00
*-*-mpeix*)
ans=no
;;
1999-12-09 13:01:21 +00:00
*-*-sco3.2v5.0*)
ans=10000L/hz
;;
*-*-solaris2*)
case "$ac_cv_var_adjtime_is_accurate" in
yes)
#ans='tick/16'
;;
esac
;;
*-*-winnt3.5)
ans=50
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
ac_cv_var_tickadj=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14312: result: $ac_cv_var_tickadj" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_tickadj" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_tickadj" in
''|no) ;; # HMS: I think we can only get 'no' here...
2001-08-29 14:35:15 +00:00
*) cat >>confdefs.h <<EOF
1999-12-09 13:01:21 +00:00
#define PRESET_TICKADJ $ac_cv_var_tickadj
EOF
;;
esac
# Newer versions of ReliantUNIX round adjtime() values down to
# 1/100s (system tick). Sigh ...
# Unfortunately, there is no easy way to know if particular release
# has this "feature" or any obvious way to test for it.
case "$target" in
2001-08-29 14:35:15 +00:00
mips-sni-sysv4*) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define RELIANTUNIX_CLOCK 1
EOF
;;
esac
case "$target" in
2001-08-29 14:35:15 +00:00
*-*-sco3.2v5*) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define SCO5_CLOCK 1
EOF
;;
esac
ac_cv_make_tickadj=yes
case "$ac_cv_var_can_kmem$ac_cv_var_tick$ac_cv_var_tickadj" in
nonono) # Don't read KMEM, no presets. Bogus.
2002-10-29 19:58:12 +00:00
{ echo "$as_me:14343: WARNING: Can't read kmem" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: Can't read kmem" >&2;}
1999-12-09 13:01:21 +00:00
ac_cv_make_tickadj=no
;;
nono*) # Don't read KMEM, no PRESET_TICK but PRESET_TICKADJ. Bogus.
2002-10-29 19:58:12 +00:00
{ echo "$as_me:14348: WARNING: Can't read kmem but no PRESET_TICK. No tickadj." >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: Can't read kmem but no PRESET_TICK. No tickadj." >&2;}
1999-12-09 13:01:21 +00:00
ac_cv_make_tickadj=no
;;
no*no) # Don't read KMEM, PRESET_TICK but no PRESET_TICKADJ. Bogus.
2002-10-29 19:58:12 +00:00
{ echo "$as_me:14353: WARNING: Can't read kmem but no PRESET_TICKADJ. No tickadj." >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: Can't read kmem but no PRESET_TICKADJ. No tickadj." >&2;}
1999-12-09 13:01:21 +00:00
ac_cv_make_tickadj=no
;;
no*) # Don't read KMEM, PRESET_TICK and PRESET_TICKADJ. Cool.
;;
yesnono) # Read KMEM, no presets. Cool.
;;
yesno*) # Read KMEM, no PRESET_TICK but PRESET_TICKADJ. Bogus.
2002-10-29 19:58:12 +00:00
{ echo "$as_me:14362: WARNING: PRESET_TICKADJ is defined but not PRESET_TICK. Please report this." >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: WARNING: PRESET_TICKADJ is defined but not PRESET_TICK. Please report this." >&2;}
1999-12-09 13:01:21 +00:00
;;
yes*no) # Read KMEM, PRESET_TICK but no PRESET_TICKADJ. Cool.
;;
yes*) # READ KMEM, PRESET_TICK and PRESET_TICKADJ.
;;
*) # Generally bogus.
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:14370: error: This shouldn't happen." >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: error: This shouldn't happen." >&2;}
{ (exit 1); exit 1; }; }
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14376: checking if we want and can make the ntptime utility" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we want and can make the ntptime utility... $ECHO_C" >&6
if test "${ac_cv_make_ntptime+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
case "$target" in
*) case "$ac_cv_struct_ntptimeval$ac_cv_var_kernel_pll" in
yesyes)
ans=yes
;;
*)
ans=no
;;
esac
;;
esac
ac_cv_make_ntptime=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14394: result: $ac_cv_make_ntptime" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_make_ntptime" >&6
case "$ac_cv_make_ntptime" in
yes)
MAKE_NTPTIME=ntptime
1999-12-09 13:01:21 +00:00
;;
esac
case "$target" in
mips-sni-sysv4*)
# tickadj is pretty useless on newer versions of ReliantUNIX
# Do not bother
ac_cv_make_tickadj=no
2001-08-29 14:35:15 +00:00
;;
*-*-irix*)
ac_cv_make_tickadj=no
;;
1999-12-09 13:01:21 +00:00
*-*-solaris2*)
# DLM says tickadj is a no-no starting with solaris2.5
case "$target" in
*-*-solaris2.0-4*) ;;
*) ac_cv_make_tickadj=no ;;
esac
2001-08-29 14:35:15 +00:00
;;
1999-12-09 13:01:21 +00:00
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14419: checking if we want and can make the tickadj utility" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we want and can make the tickadj utility... $ECHO_C" >&6
if test "${ac_cv_make_tickadj+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
ac_cv_make_tickadj=yes
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14426: result: $ac_cv_make_tickadj" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_make_tickadj" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_make_tickadj" in
yes)
MAKE_TICKADJ=tickadj
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14434: checking if we want and can make the timetrim utility" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we want and can make the timetrim utility... $ECHO_C" >&6
if test "${ac_cv_make_timetrim+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
case "$target" in
2001-08-29 14:35:15 +00:00
*-*-irix*)
ac_cv_make_timetrim=yes
;;
*)
ac_cv_make_timetrim=no
1999-12-09 13:01:21 +00:00
;;
esac
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14448: result: $ac_cv_make_timetrim" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_make_timetrim" >&6
case "$ac_cv_make_timetrim" in
1999-12-09 13:01:21 +00:00
yes)
2001-08-29 14:35:15 +00:00
MAKE_TIMETRIM=timetrim
1999-12-09 13:01:21 +00:00
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14456: checking if we want UDP wildcard delivery" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we want UDP wildcard delivery... $ECHO_C" >&6
if test "${ac_cv_var_udp_wildcard_delivery+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
# Check whether --enable-udp-wildcard or --disable-udp-wildcard was given.
if test "${enable_udp_wildcard+set}" = set; then
enableval="$enable_udp_wildcard"
ans=$enableval
else
ans=no
case "$target" in
*-fujitsu-uxp*)
ans=yes
;;
*-univel-sysv*)
ans=yes
;;
*-*-aix3.2*)
ans=yes
;;
*-*-aix4*)
ans=yes
;;
*-*-bsdi*)
ans=yes
;;
*-*-domainos)
ans=yes
;;
*-*-freebsd*)
ans=yes
;;
*-*-hpux*)
ans=yes
;;
*-*-irix6*)
ans=yes
;;
*-*-linux*)
ans=yes
;;
2002-10-29 19:58:12 +00:00
*-*-mpeix*)
ans=yes
;;
1999-12-09 13:01:21 +00:00
*-*-osf*)
ans=yes
;;
*-*-ptx*)
ans=yes
;;
*-*-solaris2*)
ans=yes
;;
*-*-sunos4*)
ans=yes
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
ac_cv_var_udp_wildcard_delivery=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14517: result: $ac_cv_var_udp_wildcard_delivery" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_udp_wildcard_delivery" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_udp_wildcard_delivery" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define UDP_WILDCARD_DELIVERY 1
EOF
;;
esac
case "$host" in
$target)
;;
*) case "$target" in
*-*-vxworks*)
LDFLAGS="$LDFLAGS -r"
;;
esac
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14537: checking if we should always slew the time" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we should always slew the time... $ECHO_C" >&6
if test "${ac_cv_var_slew_always+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
# Check whether --enable-slew-always or --disable-slew-always was given.
if test "${enable_slew_always+set}" = set; then
enableval="$enable_slew_always"
ans=$enableval
else
2001-08-29 14:35:15 +00:00
case "$target" in
1999-12-09 13:01:21 +00:00
*-apple-aux[23]*)
ans=yes
;;
*-*-bsdi[012]*)
ans=no
;;
*-*-bsdi*)
ans=yes
;;
*-*-openvms*) # HMS: won't be found
ans=yes
;;
*) ans=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
ac_cv_var_slew_always=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14567: result: $ac_cv_var_slew_always" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_slew_always" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_slew_always" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define SLEWALWAYS 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14576: checking if we should step and slew the time" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we should step and slew the time... $ECHO_C" >&6
if test "${ac_cv_var_step_slew+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
# Check whether --enable-step-slew or --disable-step-slew was given.
if test "${enable_step_slew+set}" = set; then
enableval="$enable_step_slew"
ans=$enableval
else
2001-08-29 14:35:15 +00:00
case "$target" in
1999-12-09 13:01:21 +00:00
*-sni-sysv*)
ans=yes
;;
*-univel-sysv*)
ans=no
;;
*-*-ptx*)
ans=yes
;;
*-*-solaris2.[012]*)
ans=yes
;;
*-*-sysv4*) # HMS: Does this catch Fujitsu UXP?
ans=yes
;;
*) ans=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
ac_cv_var_step_slew=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14609: result: $ac_cv_var_step_slew" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_step_slew" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_step_slew" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define STEP_SLEW 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14618: checking if ntpdate should step the time" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if ntpdate should step the time... $ECHO_C" >&6
if test "${ac_cv_var_ntpdate_step+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
# Check whether --enable-ntpdate-step or --disable-ntpdate-step was given.
if test "${enable_ntpdate_step+set}" = set; then
enableval="$enable_ntpdate_step"
ans=$enableval
else
2001-08-29 14:35:15 +00:00
case "$target" in
1999-12-09 13:01:21 +00:00
*-apple-aux[23]*)
ans=yes
;;
*) ans=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
ac_cv_var_ntpdate_step=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14639: result: $ac_cv_var_ntpdate_step" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_ntpdate_step" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_ntpdate_step" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define FORCE_NTPDATE_STEP 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14648: checking if we should sync TODR clock every hour" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we should sync TODR clock every hour... $ECHO_C" >&6
if test "${ac_cv_var_sync_todr+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
# Check whether --enable-hourly-todr-sync or --disable-hourly-todr-sync was given.
if test "${enable_hourly_todr_sync+set}" = set; then
enableval="$enable_hourly_todr_sync"
ans=$enableval
else
case "$target" in
*-*-nextstep*)
ans=yes
;;
*-*-openvms*) # HMS: won't be found
ans=yes
;;
*) ans=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
ac_cv_var_sync_todr=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14671: result: $ac_cv_var_sync_todr" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_sync_todr" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_sync_todr" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define DOSYNCTODR 1
EOF
;;
esac
2002-10-29 19:58:12 +00:00
echo "$as_me:14680: checking if we should avoid kernel FLL bug" >&5
2001-08-29 14:35:15 +00:00
echo $ECHO_N "checking if we should avoid kernel FLL bug... $ECHO_C" >&6
if test "${ac_cv_var_kernel_fll_bug+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-12-09 13:01:21 +00:00
else
# Check whether --enable-kernel-fll-bug or --disable-kernel-fll-bug was given.
if test "${enable_kernel_fll_bug+set}" = set; then
enableval="$enable_kernel_fll_bug"
ans=$enableval
else
2001-08-29 14:35:15 +00:00
case "$target" in
1999-12-09 13:01:21 +00:00
*-*-solaris2.6)
2001-08-29 14:35:15 +00:00
unamev=`uname -v`
case "$unamev" in
Generic_105181-*)
old_IFS="$IFS"
IFS="-"
set $unamev
IFS="$old_IFS"
if test "$2" -ge 17
then
# Generic_105181-17 and higher
ans=no
else
ans=yes
fi
;;
*) ans=yes
;;
esac
1999-12-09 13:01:21 +00:00
;;
*-*-solaris2.7)
2001-08-29 14:35:15 +00:00
unamev=`uname -v`
case "$unamev" in
Generic_106541-*)
old_IFS="$IFS"
IFS="-"
set $unamev
IFS="$old_IFS"
if test "$2" -ge 07
then
# Generic_106541-07 and higher
ans=no
else
ans=yes
fi
1999-12-09 13:01:21 +00:00
;;
*) ans=yes
;;
esac
;;
*) ans=no
;;
esac
2001-08-29 14:35:15 +00:00
fi;
1999-12-09 13:01:21 +00:00
ac_cv_var_kernel_fll_bug=$ans
fi
2002-10-29 19:58:12 +00:00
echo "$as_me:14738: result: $ac_cv_var_kernel_fll_bug" >&5
2001-08-29 14:35:15 +00:00
echo "${ECHO_T}$ac_cv_var_kernel_fll_bug" >&6
1999-12-09 13:01:21 +00:00
case "$ac_cv_var_kernel_fll_bug" in
2001-08-29 14:35:15 +00:00
yes) cat >>confdefs.h <<\EOF
1999-12-09 13:01:21 +00:00
#define KERNEL_FLL_BUG 1
EOF
;;
esac
case "$host" in
$target)
;;
*) case "$target" in
*-*-vxworks*)
LDFLAGS="$LDFLAGS -r"
;;
esac
;;
esac
2001-08-29 14:35:15 +00:00
ac_expanded=`(
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix="${prefix}"
eval echo \""$sysconfdir"\"
)`
cat >>confdefs.h <<EOF
#define NTP_KEYSDIR "$ac_expanded"
EOF
2002-10-29 19:58:12 +00:00
# HMS: I think we avoid this problem now...
## This is necessary so that .o files in LIBOBJS are also built via
## the ANSI2KNR-filtering rules.
#LIB@&t@OBJS=`echo "$LIB@&t@OBJS" | sed 's,\.[[^.]]* ,$U&,g;s,\.[[^.]]*$,$U&,'`
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
ac_config_files="$ac_config_files Makefile adjtimed/Makefile clockstuff/Makefile ElectricFence/Makefile include/Makefile kernel/Makefile kernel/sys/Makefile libntp/Makefile libparse/Makefile librsaref/Makefile ntpd/Makefile ntpdc/Makefile ntpdate/Makefile ntpq/Makefile ntptrace/Makefile parseutil/Makefile scripts/Makefile scripts/calc_tickadj scripts/checktime scripts/freq_adj scripts/mkver scripts/ntp-wait scripts/ntpsweep scripts/ntpver scripts/plot_summary scripts/summary util/Makefile"
ac_config_commands="$ac_config_commands default"
cat >confcache <<\_ACEOF
1999-12-09 13:01:21 +00:00
# This file is a shell script that caches the results of configure
# tests run on this system so they can be shared between configure
2001-08-29 14:35:15 +00:00
# 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.
1999-12-09 13:01:21 +00:00
#
2001-08-29 14:35:15 +00:00
# config.status only pays attention to the cache file if you give it
# the --recheck option to rerun configure.
1999-12-09 13:01:21 +00:00
#
2001-08-29 14:35:15 +00:00
# `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
1999-12-09 13:01:21 +00:00
# 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.
2001-08-29 14:35:15 +00:00
{
(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;
2002-10-29 19:58:12 +00:00
s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
2001-08-29 14:35:15 +00:00
;;
*)
# `set' quotes correctly as required by POSIX, so do not add quotes.
sed -n \
2002-10-29 19:58:12 +00:00
"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
2001-08-29 14:35:15 +00:00
;;
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
1999-12-09 13:01:21 +00:00
if test -w $cache_file; then
2001-08-29 14:35:15 +00:00
test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
cat confcache >$cache_file
1999-12-09 13:01:21 +00:00
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}'
2001-08-29 14:35:15 +00:00
# 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).
1999-12-09 13:01:21 +00:00
if test "x$srcdir" = x.; then
2001-08-29 14:35:15 +00:00
ac_vpsub='/^[ ]*VPATH[ ]*=/{
s/:*\$(srcdir):*/:/;
s/:*\${srcdir}:*/:/;
s/:*@srcdir@:*/:/;
s/^\([^=]*=[ ]*\):*/\1/;
s/:*$//;
s/^[^=]*=[ ]*$//;
}'
1999-12-09 13:01:21 +00:00
fi
DEFS=-DHAVE_CONFIG_H
: ${CONFIG_STATUS=./config.status}
2001-08-29 14:35:15 +00:00
ac_clean_files_save=$ac_clean_files
ac_clean_files="$ac_clean_files $CONFIG_STATUS"
2002-10-29 19:58:12 +00:00
{ echo "$as_me:14856: creating $CONFIG_STATUS" >&5
2001-08-29 14:35:15 +00:00
echo "$as_me: creating $CONFIG_STATUS" >&6;}
cat >$CONFIG_STATUS <<_ACEOF
#! $SHELL
1999-12-09 13:01:21 +00:00
# Generated automatically by configure.
# Run this file to recreate the current configuration.
# Compiler output produced by configure, useful for debugging
2001-08-29 14:35:15 +00:00
# configure, is in config.log if it exists.
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
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="\\
config.status
2002-10-29 19:58:12 +00:00
configured by $0, generated by GNU Autoconf 2.52,
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
do
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
-recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:15032: error: ambiguous option: $1
2001-08-29 14:35:15 +00:00
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.
2002-10-29 19:58:12 +00:00
-*) { { echo "$as_me:15051: error: unrecognized option: $1
2001-08-29 14:35:15 +00:00
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; }; } ;;
2002-10-29 19:58:12 +00:00
*) ac_config_targets="$ac_config_targets $1" ;;
1999-12-09 13:01:21 +00:00
esac
2001-08-29 14:35:15 +00:00
shift
1999-12-09 13:01:21 +00:00
done
2001-08-29 14:35:15 +00:00
exec 5>>config.log
cat >&5 << _ACEOF
## ----------------------- ##
## Running config.status. ##
## ----------------------- ##
2002-10-29 19:58:12 +00:00
This file was extended by $as_me 2.52, executed with
CONFIG_FILES = $CONFIG_FILES
CONFIG_HEADERS = $CONFIG_HEADERS
CONFIG_LINKS = $CONFIG_LINKS
CONFIG_COMMANDS = $CONFIG_COMMANDS
2001-08-29 14:35:15 +00:00
> $ac_cs_invocation
on `(hostname || uname -n) 2>/dev/null | sed 1q`
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
_ACEOF
1999-12-09 13:01:21 +00:00
EOF
2002-10-29 19:58:12 +00:00
cat >>$CONFIG_STATUS <<EOF
#
# INIT-COMMANDS section.
#
AMDEP_TRUE="$AMDEP_TRUE"
ac_aux_dir="$ac_aux_dir"
EOF
2001-08-29 14:35:15 +00:00
cat >>$CONFIG_STATUS <<\EOF
2002-10-29 19:58:12 +00:00
for ac_config_target in $ac_config_targets
do
case "$ac_config_target" in
# Handling of arguments.
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
"adjtimed/Makefile" ) CONFIG_FILES="$CONFIG_FILES adjtimed/Makefile" ;;
"clockstuff/Makefile" ) CONFIG_FILES="$CONFIG_FILES clockstuff/Makefile" ;;
"ElectricFence/Makefile" ) CONFIG_FILES="$CONFIG_FILES ElectricFence/Makefile" ;;
"include/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/Makefile" ;;
"kernel/Makefile" ) CONFIG_FILES="$CONFIG_FILES kernel/Makefile" ;;
"kernel/sys/Makefile" ) CONFIG_FILES="$CONFIG_FILES kernel/sys/Makefile" ;;
"libntp/Makefile" ) CONFIG_FILES="$CONFIG_FILES libntp/Makefile" ;;
"libparse/Makefile" ) CONFIG_FILES="$CONFIG_FILES libparse/Makefile" ;;
"librsaref/Makefile" ) CONFIG_FILES="$CONFIG_FILES librsaref/Makefile" ;;
"ntpd/Makefile" ) CONFIG_FILES="$CONFIG_FILES ntpd/Makefile" ;;
"ntpdc/Makefile" ) CONFIG_FILES="$CONFIG_FILES ntpdc/Makefile" ;;
"ntpdate/Makefile" ) CONFIG_FILES="$CONFIG_FILES ntpdate/Makefile" ;;
"ntpq/Makefile" ) CONFIG_FILES="$CONFIG_FILES ntpq/Makefile" ;;
"ntptrace/Makefile" ) CONFIG_FILES="$CONFIG_FILES ntptrace/Makefile" ;;
"parseutil/Makefile" ) CONFIG_FILES="$CONFIG_FILES parseutil/Makefile" ;;
"scripts/Makefile" ) CONFIG_FILES="$CONFIG_FILES scripts/Makefile" ;;
"scripts/calc_tickadj" ) CONFIG_FILES="$CONFIG_FILES scripts/calc_tickadj" ;;
"scripts/checktime" ) CONFIG_FILES="$CONFIG_FILES scripts/checktime" ;;
"scripts/freq_adj" ) CONFIG_FILES="$CONFIG_FILES scripts/freq_adj" ;;
"scripts/mkver" ) CONFIG_FILES="$CONFIG_FILES scripts/mkver" ;;
"scripts/ntp-wait" ) CONFIG_FILES="$CONFIG_FILES scripts/ntp-wait" ;;
"scripts/ntpsweep" ) CONFIG_FILES="$CONFIG_FILES scripts/ntpsweep" ;;
"scripts/ntpver" ) CONFIG_FILES="$CONFIG_FILES scripts/ntpver" ;;
"scripts/plot_summary" ) CONFIG_FILES="$CONFIG_FILES scripts/plot_summary" ;;
"scripts/summary" ) CONFIG_FILES="$CONFIG_FILES scripts/summary" ;;
"util/Makefile" ) CONFIG_FILES="$CONFIG_FILES util/Makefile" ;;
"default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
"default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
"config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
*) { { echo "$as_me:15126: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
{ (exit 1); exit 1; }; };;
esac
done
2001-08-29 14:35:15 +00:00
# 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
2002-10-29 19:58:12 +00:00
trap '{ (exit 1); exit 1; }' 1 2 13 15
2001-08-29 14:35:15 +00:00
}
# 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; }
}
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
s,@build_alias@,$build_alias,;t t
s,@host_alias@,$host_alias,;t t
s,@target_alias@,$target_alias,;t t
2001-08-29 14:35:15 +00:00
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,@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,@target@,$target,;t t
s,@target_cpu@,$target_cpu,;t t
s,@target_vendor@,$target_vendor,;t t
s,@target_os@,$target_os,;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
2002-10-29 19:58:12 +00:00
s,@EXEEXT@,$EXEEXT,;t t
s,@OBJEXT@,$OBJEXT,;t t
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t
s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t
2001-08-29 14:35:15 +00:00
s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
s,@DEPDIR@,$DEPDIR,;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
2002-10-29 19:58:12 +00:00
s,@am__include@,$am__include,;t t
s,@am__quote@,$am__quote,;t t
2001-08-29 14:35:15 +00:00
s,@CCDEPMODE@,$CCDEPMODE,;t t
2002-10-29 19:58:12 +00:00
s,@CPP@,$CPP,;t t
2001-08-29 14:35:15 +00:00
s,@LN_S@,$LN_S,;t t
s,@RANLIB@,$RANLIB,;t t
s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
s,@PATH_SH@,$PATH_SH,;t t
s,@PATH_PERL@,$PATH_PERL,;t t
s,@U@,$U,;t t
s,@ANSI2KNR@,$ANSI2KNR,;t t
s,@LIBOBJS@,$LIBOBJS,;t t
s,@LIBPARSE@,$LIBPARSE,;t t
s,@MAKE_LIBPARSE@,$MAKE_LIBPARSE,;t t
s,@MAKE_LIBPARSE_KERNEL@,$MAKE_LIBPARSE_KERNEL,;t t
s,@MAKE_CHECK_Y2K@,$MAKE_CHECK_Y2K,;t t
s,@RSAOBJS@,$RSAOBJS,;t t
s,@RSASRCS@,$RSASRCS,;t t
s,@RSADIR@,$RSADIR,;t t
s,@RSAREF@,$RSAREF,;t t
s,@LIBRSAREF@,$LIBRSAREF,;t t
s,@MAKE_LIBRSAREF@,$MAKE_LIBRSAREF,;t t
s,@OPENSSL@,$OPENSSL,;t t
s,@OPENSSL_INC@,$OPENSSL_INC,;t t
s,@OPENSSL_LIB@,$OPENSSL_LIB,;t t
s,@MAKE_NTP_GENKEYS@,$MAKE_NTP_GENKEYS,;t t
2002-10-29 19:58:12 +00:00
s,@isRSAREF_TRUE@,$isRSAREF_TRUE,;t t
s,@isRSAREF_FALSE@,$isRSAREF_FALSE,;t t
s,@isRSAEURO_TRUE@,$isRSAEURO_TRUE,;t t
s,@isRSAEURO_FALSE@,$isRSAEURO_FALSE,;t t
2001-08-29 14:35:15 +00:00
s,@AUTOKEY@,$AUTOKEY,;t t
s,@EF_PROGS@,$EF_PROGS,;t t
s,@EF_LIBS@,$EF_LIBS,;t t
s,@TESTDCF@,$TESTDCF,;t t
s,@DCFD@,$DCFD,;t t
s,@MAKE_PARSEKMODULE@,$MAKE_PARSEKMODULE,;t t
s,@PROPDELAY@,$PROPDELAY,;t t
s,@CHUTEST@,$CHUTEST,;t t
s,@CLKTEST@,$CLKTEST,;t t
s,@MAKE_ADJTIMED@,$MAKE_ADJTIMED,;t t
s,@MAKE_NTPTIME@,$MAKE_NTPTIME,;t t
s,@MAKE_TICKADJ@,$MAKE_TICKADJ,;t t
s,@MAKE_TIMETRIM@,$MAKE_TIMETRIM,;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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
fi # test -n "$CONFIG_FILES"
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
cat >>$CONFIG_STATUS <<\EOF
for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
1999-12-09 13:01:21 +00:00
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
2001-08-29 14:35:15 +00:00
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 ;;
1999-12-09 13:01:21 +00:00
esac
2001-08-29 14:35:15 +00:00
# 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'`
1999-12-09 13:01:21 +00:00
if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
2001-08-29 14:35:15 +00:00
{ 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,^\./,,'`"
1999-12-09 13:01:21 +00:00
# A "../" for each directory in $ac_dir_suffix.
2001-08-29 14:35:15 +00:00
ac_dots=`echo "$ac_dir_suffix" | sed 's,/[^/]*,../,g'`
1999-12-09 13:01:21 +00:00
else
ac_dir_suffix= ac_dots=
fi
2001-08-29 14:35:15 +00:00
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 ;;
1999-12-09 13:01:21 +00:00
*) # Relative path.
2001-08-29 14:35:15 +00:00
ac_srcdir=$ac_dots$srcdir$ac_dir_suffix
ac_top_srcdir=$ac_dots$srcdir ;;
1999-12-09 13:01:21 +00:00
esac
2001-08-29 14:35:15 +00:00
case $INSTALL in
[\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
*) ac_INSTALL=$ac_dots$INSTALL ;;
1999-12-09 13:01:21 +00:00
esac
2001-08-29 14:35:15 +00:00
if test x"$ac_file" != x-; then
2002-10-29 19:58:12 +00:00
{ echo "$as_me:15403: creating $ac_file" >&5
2001-08-29 14:35:15 +00:00
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=:)
2002-10-29 19:58:12 +00:00
test -f "$f" || { { echo "$as_me:15421: error: cannot find input file: $f" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:15434: error: cannot find input file: $f" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
#
# CONFIG_HEADER section.
#
1999-12-09 13:01:21 +00:00
# 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.
2001-08-29 14:35:15 +00:00
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'
1999-12-09 13:01:21 +00:00
ac_uC=' '
2001-08-29 14:35:15 +00:00
ac_uD=',;t'
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
1999-12-09 13:01:21 +00:00
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
2001-08-29 14:35:15 +00:00
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 ;;
1999-12-09 13:01:21 +00:00
esac
2002-10-29 19:58:12 +00:00
test x"$ac_file" != x- && { echo "$as_me:15495: creating $ac_file" >&5
2001-08-29 14:35:15 +00:00
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=:)
2002-10-29 19:58:12 +00:00
test -f "$f" || { { echo "$as_me:15506: error: cannot find input file: $f" >&5
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
{ { echo "$as_me:15519: error: cannot find input file: $f" >&5
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
# 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.
2001-08-29 14:35:15 +00:00
cat >>conftest.undefs <<\EOF
s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
# 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
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
# 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
1999-12-09 13:01:21 +00:00
rm -f conftest.tail
2001-08-29 14:35:15 +00:00
while grep . conftest.undefs >/dev/null
1999-12-09 13:01:21 +00:00
do
2001-08-29 14:35:15 +00:00
# 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
1999-12-09 13:01:21 +00:00
echo 'CEOF
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
done
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
else
2001-08-29 14:35:15 +00:00
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
2002-10-29 19:58:12 +00:00
{ echo "$as_me:15636: $ac_file is unchanged" >&5
2001-08-29 14:35:15 +00:00
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'`
1999-12-09 13:01:21 +00:00
if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
2001-08-29 14:35:15 +00:00
{ 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
1999-12-09 13:01:21 +00:00
fi
2001-08-29 14:35:15 +00:00
else
cat $tmp/config.h
rm -f $tmp/config.h
1999-12-09 13:01:21 +00:00
fi
2002-10-29 19:58:12 +00:00
# Run the commands associated with the file.
case $ac_file in
config.h ) # update the timestamp
echo timestamp >"./stamp-h1"
;;
esac
2001-08-29 14:35:15 +00:00
done
1999-12-09 13:01:21 +00:00
EOF
2001-08-29 14:35:15 +00:00
cat >>$CONFIG_STATUS <<\EOF
1999-12-09 13:01:21 +00:00
2001-08-29 14:35:15 +00:00
#
# 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,[^:]*:,,'`
2000-01-28 14:55:50 +00:00
2001-08-29 14:35:15 +00:00
case $ac_dest in
2002-10-29 19:58:12 +00:00
default-1 )
test x"$AMDEP_TRUE" != x"" ||
2000-01-28 14:55:50 +00:00
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
2001-08-29 14:35:15 +00:00
;;
default ) chmod +x scripts/calc_tickadj scripts/checktime scripts/freq_adj scripts/mkver scripts/ntp-wait scripts/ntpsweep scripts/ntpver scripts/plot_summary scripts/summary ;;
esac
done
EOF
2000-01-28 14:55:50 +00:00
2001-08-29 14:35:15 +00:00
cat >>$CONFIG_STATUS <<\EOF
{ (exit 0); exit 0; }
1999-12-09 13:01:21 +00:00
EOF
chmod +x $CONFIG_STATUS
2001-08-29 14:35:15 +00:00
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
1999-12-09 13:01:21 +00:00
#test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h])