mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-02 01:40:49 +02:00
16967 lines
441 KiB
Bash
Executable File
16967 lines
441 KiB
Bash
Executable File
#! /bin/sh
|
|
# From configure.in for Bash 3.0, version 3.154, from autoconf version 2.52.
|
|
# Guess values for system-dependent variables and create Makefiles.
|
|
# Generated by Autoconf 2.52 for bash 3.0-alpha.
|
|
#
|
|
# Report bugs to <bug-bash@gnu.org>.
|
|
#
|
|
# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
|
# Free Software Foundation, Inc.
|
|
# This configure script is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy, distribute and modify it.
|
|
|
|
# Avoid depending upon Character Ranges.
|
|
as_cr_letters='abcdefghijklmnopqrstuvwxyz'
|
|
as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
|
as_cr_Letters=$as_cr_letters$as_cr_LETTERS
|
|
as_cr_digits='0123456789'
|
|
as_cr_alnum=$as_cr_Letters$as_cr_digits
|
|
|
|
# Sed expression to map a string onto a valid variable name.
|
|
as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
|
|
|
|
# Sed expression to map a string onto a valid CPP name.
|
|
as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
|
|
|
|
# Be Bourne compatible
|
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
|
emulate sh
|
|
NULLCMD=:
|
|
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
|
set -o posix
|
|
fi
|
|
|
|
# Name of the executable.
|
|
as_me=`echo "$0" |sed 's,.*[\\/],,'`
|
|
|
|
if expr a : '\(a\)' >/dev/null 2>&1; then
|
|
as_expr=expr
|
|
else
|
|
as_expr=false
|
|
fi
|
|
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
|
echo >conf$$.file
|
|
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
|
# We could just check for DJGPP; but this test a) works b) is more generic
|
|
# and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
|
|
if test -f conf$$.exe; then
|
|
# Don't use ln at all; we don't have any links
|
|
as_ln_s='cp -p'
|
|
else
|
|
as_ln_s='ln -s'
|
|
fi
|
|
elif ln conf$$.file conf$$ 2>/dev/null; then
|
|
as_ln_s=ln
|
|
else
|
|
as_ln_s='cp -p'
|
|
fi
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
|
|
|
as_executable_p="test -f"
|
|
|
|
# Support unset when possible.
|
|
if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
|
|
as_unset=unset
|
|
else
|
|
as_unset=false
|
|
fi
|
|
|
|
# NLS nuisances.
|
|
$as_unset LANG || test "${LANG+set}" != set || { LANG=C; export LANG; }
|
|
$as_unset LC_ALL || test "${LC_ALL+set}" != set || { LC_ALL=C; export LC_ALL; }
|
|
$as_unset LC_TIME || test "${LC_TIME+set}" != set || { LC_TIME=C; export LC_TIME; }
|
|
$as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set || { LC_CTYPE=C; export LC_CTYPE; }
|
|
$as_unset LANGUAGE || test "${LANGUAGE+set}" != set || { LANGUAGE=C; export LANGUAGE; }
|
|
$as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set || { LC_COLLATE=C; export LC_COLLATE; }
|
|
$as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set || { LC_NUMERIC=C; export LC_NUMERIC; }
|
|
$as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set || { LC_MESSAGES=C; export LC_MESSAGES; }
|
|
|
|
# IFS
|
|
# We need space, tab and new line, in precisely that order.
|
|
as_nl='
|
|
'
|
|
IFS=" $as_nl"
|
|
|
|
# CDPATH.
|
|
$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }
|
|
|
|
# Name of the host.
|
|
# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
|
|
# so uname gets run too.
|
|
ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
|
|
|
|
exec 6>&1
|
|
|
|
#
|
|
# Initializations.
|
|
#
|
|
ac_default_prefix=/usr/local
|
|
cross_compiling=no
|
|
subdirs=
|
|
MFLAGS= MAKEFLAGS=
|
|
SHELL=${CONFIG_SHELL-/bin/sh}
|
|
|
|
# Maximum number of lines to put in a shell here document.
|
|
# This variable seems obsolete. It should probably be removed, and
|
|
# only ac_max_sed_lines should be used.
|
|
: ${ac_max_here_lines=38}
|
|
|
|
ac_unique_file="shell.h"
|
|
# Factoring default headers for most tests.
|
|
ac_includes_default="\
|
|
#include <stdio.h>
|
|
#if HAVE_SYS_TYPES_H
|
|
# include <sys/types.h>
|
|
#endif
|
|
#if HAVE_SYS_STAT_H
|
|
# include <sys/stat.h>
|
|
#endif
|
|
#if STDC_HEADERS
|
|
# include <stdlib.h>
|
|
# include <stddef.h>
|
|
#else
|
|
# if HAVE_STDLIB_H
|
|
# include <stdlib.h>
|
|
# endif
|
|
#endif
|
|
#if HAVE_STRING_H
|
|
# if !STDC_HEADERS && HAVE_MEMORY_H
|
|
# include <memory.h>
|
|
# endif
|
|
# include <string.h>
|
|
#endif
|
|
#if HAVE_STRINGS_H
|
|
# include <strings.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
# include <inttypes.h>
|
|
#else
|
|
# if HAVE_STDINT_H
|
|
# include <stdint.h>
|
|
# endif
|
|
#endif
|
|
#if HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif"
|
|
|
|
# Initialize some variables set by options.
|
|
ac_init_help=
|
|
ac_init_version=false
|
|
# The variables have the same names as the options, with
|
|
# dashes changed to underlines.
|
|
cache_file=/dev/null
|
|
exec_prefix=NONE
|
|
no_create=
|
|
no_recursion=
|
|
prefix=NONE
|
|
program_prefix=NONE
|
|
program_suffix=NONE
|
|
program_transform_name=s,x,x,
|
|
silent=
|
|
site=
|
|
srcdir=
|
|
verbose=
|
|
x_includes=NONE
|
|
x_libraries=NONE
|
|
|
|
# Installation directory options.
|
|
# These are left unexpanded so users can "make install exec_prefix=/foo"
|
|
# and all the variables that are supposed to be based on exec_prefix
|
|
# by default will actually change.
|
|
# Use braces instead of parens because sh, perl, etc. also accept them.
|
|
bindir='${exec_prefix}/bin'
|
|
sbindir='${exec_prefix}/sbin'
|
|
libexecdir='${exec_prefix}/libexec'
|
|
datadir='${prefix}/share'
|
|
sysconfdir='${prefix}/etc'
|
|
sharedstatedir='${prefix}/com'
|
|
localstatedir='${prefix}/var'
|
|
libdir='${exec_prefix}/lib'
|
|
includedir='${prefix}/include'
|
|
oldincludedir='/usr/include'
|
|
infodir='${prefix}/info'
|
|
mandir='${prefix}/man'
|
|
|
|
# Identity of this package.
|
|
PACKAGE_NAME='bash'
|
|
PACKAGE_TARNAME='bash'
|
|
PACKAGE_VERSION='3.0-alpha'
|
|
PACKAGE_STRING='bash 3.0-alpha'
|
|
PACKAGE_BUGREPORT='bug-bash@gnu.org'
|
|
|
|
ac_prev=
|
|
for ac_option
|
|
do
|
|
# If the previous option needs an argument, assign it.
|
|
if test -n "$ac_prev"; then
|
|
eval "$ac_prev=\$ac_option"
|
|
ac_prev=
|
|
continue
|
|
fi
|
|
|
|
ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
|
|
|
|
# Accept the important Cygnus configure options, so we can diagnose typos.
|
|
|
|
case $ac_option in
|
|
|
|
-bindir | --bindir | --bindi | --bind | --bin | --bi)
|
|
ac_prev=bindir ;;
|
|
-bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
|
|
bindir=$ac_optarg ;;
|
|
|
|
-build | --build | --buil | --bui | --bu)
|
|
ac_prev=build_alias ;;
|
|
-build=* | --build=* | --buil=* | --bui=* | --bu=*)
|
|
build_alias=$ac_optarg ;;
|
|
|
|
-cache-file | --cache-file | --cache-fil | --cache-fi \
|
|
| --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
|
ac_prev=cache_file ;;
|
|
-cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
|
|
| --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
|
|
cache_file=$ac_optarg ;;
|
|
|
|
--config-cache | -C)
|
|
cache_file=config.cache ;;
|
|
|
|
-datadir | --datadir | --datadi | --datad | --data | --dat | --da)
|
|
ac_prev=datadir ;;
|
|
-datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
|
|
| --da=*)
|
|
datadir=$ac_optarg ;;
|
|
|
|
-disable-* | --disable-*)
|
|
ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
|
|
# Reject names that are not valid shell variable names.
|
|
expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|
{ echo "$as_me: error: invalid feature name: $ac_feature" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
ac_feature=`echo $ac_feature | sed 's/-/_/g'`
|
|
eval "enable_$ac_feature=no" ;;
|
|
|
|
-enable-* | --enable-*)
|
|
ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
|
|
# Reject names that are not valid shell variable names.
|
|
expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|
{ echo "$as_me: error: invalid feature name: $ac_feature" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
ac_feature=`echo $ac_feature | sed 's/-/_/g'`
|
|
case $ac_option in
|
|
*=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
|
|
*) ac_optarg=yes ;;
|
|
esac
|
|
eval "enable_$ac_feature='$ac_optarg'" ;;
|
|
|
|
-exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
|
|
| --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
|
|
| --exec | --exe | --ex)
|
|
ac_prev=exec_prefix ;;
|
|
-exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
|
|
| --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
|
|
| --exec=* | --exe=* | --ex=*)
|
|
exec_prefix=$ac_optarg ;;
|
|
|
|
-gas | --gas | --ga | --g)
|
|
# Obsolete; use --with-gas.
|
|
with_gas=yes ;;
|
|
|
|
-help | --help | --hel | --he | -h)
|
|
ac_init_help=long ;;
|
|
-help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
|
|
ac_init_help=recursive ;;
|
|
-help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
|
|
ac_init_help=short ;;
|
|
|
|
-host | --host | --hos | --ho)
|
|
ac_prev=host_alias ;;
|
|
-host=* | --host=* | --hos=* | --ho=*)
|
|
host_alias=$ac_optarg ;;
|
|
|
|
-includedir | --includedir | --includedi | --included | --include \
|
|
| --includ | --inclu | --incl | --inc)
|
|
ac_prev=includedir ;;
|
|
-includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
|
|
| --includ=* | --inclu=* | --incl=* | --inc=*)
|
|
includedir=$ac_optarg ;;
|
|
|
|
-infodir | --infodir | --infodi | --infod | --info | --inf)
|
|
ac_prev=infodir ;;
|
|
-infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
|
|
infodir=$ac_optarg ;;
|
|
|
|
-libdir | --libdir | --libdi | --libd)
|
|
ac_prev=libdir ;;
|
|
-libdir=* | --libdir=* | --libdi=* | --libd=*)
|
|
libdir=$ac_optarg ;;
|
|
|
|
-libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
|
|
| --libexe | --libex | --libe)
|
|
ac_prev=libexecdir ;;
|
|
-libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
|
|
| --libexe=* | --libex=* | --libe=*)
|
|
libexecdir=$ac_optarg ;;
|
|
|
|
-localstatedir | --localstatedir | --localstatedi | --localstated \
|
|
| --localstate | --localstat | --localsta | --localst \
|
|
| --locals | --local | --loca | --loc | --lo)
|
|
ac_prev=localstatedir ;;
|
|
-localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
|
|
| --localstate=* | --localstat=* | --localsta=* | --localst=* \
|
|
| --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
|
|
localstatedir=$ac_optarg ;;
|
|
|
|
-mandir | --mandir | --mandi | --mand | --man | --ma | --m)
|
|
ac_prev=mandir ;;
|
|
-mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
|
|
mandir=$ac_optarg ;;
|
|
|
|
-nfp | --nfp | --nf)
|
|
# Obsolete; use --without-fp.
|
|
with_fp=no ;;
|
|
|
|
-no-create | --no-create | --no-creat | --no-crea | --no-cre \
|
|
| --no-cr | --no-c)
|
|
no_create=yes ;;
|
|
|
|
-no-recursion | --no-recursion | --no-recursio | --no-recursi \
|
|
| --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
|
|
no_recursion=yes ;;
|
|
|
|
-oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
|
|
| --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
|
|
| --oldin | --oldi | --old | --ol | --o)
|
|
ac_prev=oldincludedir ;;
|
|
-oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
|
|
| --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
|
|
| --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
|
oldincludedir=$ac_optarg ;;
|
|
|
|
-prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
|
|
ac_prev=prefix ;;
|
|
-prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
|
|
prefix=$ac_optarg ;;
|
|
|
|
-program-prefix | --program-prefix | --program-prefi | --program-pref \
|
|
| --program-pre | --program-pr | --program-p)
|
|
ac_prev=program_prefix ;;
|
|
-program-prefix=* | --program-prefix=* | --program-prefi=* \
|
|
| --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
|
|
program_prefix=$ac_optarg ;;
|
|
|
|
-program-suffix | --program-suffix | --program-suffi | --program-suff \
|
|
| --program-suf | --program-su | --program-s)
|
|
ac_prev=program_suffix ;;
|
|
-program-suffix=* | --program-suffix=* | --program-suffi=* \
|
|
| --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
|
|
program_suffix=$ac_optarg ;;
|
|
|
|
-program-transform-name | --program-transform-name \
|
|
| --program-transform-nam | --program-transform-na \
|
|
| --program-transform-n | --program-transform- \
|
|
| --program-transform | --program-transfor \
|
|
| --program-transfo | --program-transf \
|
|
| --program-trans | --program-tran \
|
|
| --progr-tra | --program-tr | --program-t)
|
|
ac_prev=program_transform_name ;;
|
|
-program-transform-name=* | --program-transform-name=* \
|
|
| --program-transform-nam=* | --program-transform-na=* \
|
|
| --program-transform-n=* | --program-transform-=* \
|
|
| --program-transform=* | --program-transfor=* \
|
|
| --program-transfo=* | --program-transf=* \
|
|
| --program-trans=* | --program-tran=* \
|
|
| --progr-tra=* | --program-tr=* | --program-t=*)
|
|
program_transform_name=$ac_optarg ;;
|
|
|
|
-q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
|
| -silent | --silent | --silen | --sile | --sil)
|
|
silent=yes ;;
|
|
|
|
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
|
|
ac_prev=sbindir ;;
|
|
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
|
|
| --sbi=* | --sb=*)
|
|
sbindir=$ac_optarg ;;
|
|
|
|
-sharedstatedir | --sharedstatedir | --sharedstatedi \
|
|
| --sharedstated | --sharedstate | --sharedstat | --sharedsta \
|
|
| --sharedst | --shareds | --shared | --share | --shar \
|
|
| --sha | --sh)
|
|
ac_prev=sharedstatedir ;;
|
|
-sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
|
|
| --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
|
|
| --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
|
|
| --sha=* | --sh=*)
|
|
sharedstatedir=$ac_optarg ;;
|
|
|
|
-site | --site | --sit)
|
|
ac_prev=site ;;
|
|
-site=* | --site=* | --sit=*)
|
|
site=$ac_optarg ;;
|
|
|
|
-srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
|
|
ac_prev=srcdir ;;
|
|
-srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
|
|
srcdir=$ac_optarg ;;
|
|
|
|
-sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
|
|
| --syscon | --sysco | --sysc | --sys | --sy)
|
|
ac_prev=sysconfdir ;;
|
|
-sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
|
|
| --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
|
|
sysconfdir=$ac_optarg ;;
|
|
|
|
-target | --target | --targe | --targ | --tar | --ta | --t)
|
|
ac_prev=target_alias ;;
|
|
-target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
|
|
target_alias=$ac_optarg ;;
|
|
|
|
-v | -verbose | --verbose | --verbos | --verbo | --verb)
|
|
verbose=yes ;;
|
|
|
|
-version | --version | --versio | --versi | --vers | -V)
|
|
ac_init_version=: ;;
|
|
|
|
-with-* | --with-*)
|
|
ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
|
|
# Reject names that are not valid shell variable names.
|
|
expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|
{ echo "$as_me: error: invalid package name: $ac_package" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
ac_package=`echo $ac_package| sed 's/-/_/g'`
|
|
case $ac_option in
|
|
*=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
|
|
*) ac_optarg=yes ;;
|
|
esac
|
|
eval "with_$ac_package='$ac_optarg'" ;;
|
|
|
|
-without-* | --without-*)
|
|
ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
|
|
# Reject names that are not valid shell variable names.
|
|
expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|
{ echo "$as_me: error: invalid package name: $ac_package" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
ac_package=`echo $ac_package | sed 's/-/_/g'`
|
|
eval "with_$ac_package=no" ;;
|
|
|
|
--x)
|
|
# Obsolete; use --with-x.
|
|
with_x=yes ;;
|
|
|
|
-x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
|
|
| --x-incl | --x-inc | --x-in | --x-i)
|
|
ac_prev=x_includes ;;
|
|
-x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
|
|
| --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
|
|
x_includes=$ac_optarg ;;
|
|
|
|
-x-libraries | --x-libraries | --x-librarie | --x-librari \
|
|
| --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
|
|
ac_prev=x_libraries ;;
|
|
-x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
|
|
| --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
|
|
x_libraries=$ac_optarg ;;
|
|
|
|
-*) { echo "$as_me: error: unrecognized option: $ac_option
|
|
Try \`$0 --help' for more information." >&2
|
|
{ (exit 1); exit 1; }; }
|
|
;;
|
|
|
|
*=*)
|
|
ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
|
|
# Reject names that are not valid shell variable names.
|
|
expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
|
|
{ echo "$as_me: error: invalid variable name: $ac_envvar" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
|
|
eval "$ac_envvar='$ac_optarg'"
|
|
export $ac_envvar ;;
|
|
|
|
*)
|
|
# FIXME: should be removed in autoconf 3.0.
|
|
echo "$as_me: WARNING: you should use --build, --host, --target" >&2
|
|
expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
|
|
echo "$as_me: WARNING: invalid host type: $ac_option" >&2
|
|
: ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
|
|
;;
|
|
|
|
esac
|
|
done
|
|
|
|
if test -n "$ac_prev"; then
|
|
ac_option=--`echo $ac_prev | sed 's/_/-/g'`
|
|
{ echo "$as_me: error: missing argument to $ac_option" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
# Be sure to have absolute paths.
|
|
for ac_var in exec_prefix prefix
|
|
do
|
|
eval ac_val=$`echo $ac_var`
|
|
case $ac_val in
|
|
[\\/$]* | ?:[\\/]* | NONE | '' ) ;;
|
|
*) { echo "$as_me: error: expected an absolute path for --$ac_var: $ac_val" >&2
|
|
{ (exit 1); exit 1; }; };;
|
|
esac
|
|
done
|
|
|
|
# Be sure to have absolute paths.
|
|
for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
|
|
localstatedir libdir includedir oldincludedir infodir mandir
|
|
do
|
|
eval ac_val=$`echo $ac_var`
|
|
case $ac_val in
|
|
[\\/$]* | ?:[\\/]* ) ;;
|
|
*) { echo "$as_me: error: expected an absolute path for --$ac_var: $ac_val" >&2
|
|
{ (exit 1); exit 1; }; };;
|
|
esac
|
|
done
|
|
|
|
# There might be people who depend on the old broken behavior: `$host'
|
|
# used to hold the argument of --host etc.
|
|
build=$build_alias
|
|
host=$host_alias
|
|
target=$target_alias
|
|
|
|
# FIXME: should be removed in autoconf 3.0.
|
|
if test "x$host_alias" != x; then
|
|
if test "x$build_alias" = x; then
|
|
cross_compiling=maybe
|
|
echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
|
|
If a cross compiler is detected then cross compile mode will be used." >&2
|
|
elif test "x$build_alias" != "x$host_alias"; then
|
|
cross_compiling=yes
|
|
fi
|
|
fi
|
|
|
|
ac_tool_prefix=
|
|
test -n "$host_alias" && ac_tool_prefix=$host_alias-
|
|
|
|
test "$silent" = yes && exec 6>/dev/null
|
|
|
|
# Find the source files, if location was not specified.
|
|
if test -z "$srcdir"; then
|
|
ac_srcdir_defaulted=yes
|
|
# Try the directory containing this script, then its parent.
|
|
ac_prog=$0
|
|
ac_confdir=`echo "$ac_prog" | sed 's%[\\/][^\\/][^\\/]*$%%'`
|
|
test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
|
|
srcdir=$ac_confdir
|
|
if test ! -r $srcdir/$ac_unique_file; then
|
|
srcdir=..
|
|
fi
|
|
else
|
|
ac_srcdir_defaulted=no
|
|
fi
|
|
if test ! -r $srcdir/$ac_unique_file; then
|
|
if test "$ac_srcdir_defaulted" = yes; then
|
|
{ echo "$as_me: error: cannot find sources in $ac_confdir or .." >&2
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
{ echo "$as_me: error: cannot find sources in $srcdir" >&2
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
fi
|
|
srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
|
|
ac_env_build_alias_set=${build_alias+set}
|
|
ac_env_build_alias_value=$build_alias
|
|
ac_cv_env_build_alias_set=${build_alias+set}
|
|
ac_cv_env_build_alias_value=$build_alias
|
|
ac_env_host_alias_set=${host_alias+set}
|
|
ac_env_host_alias_value=$host_alias
|
|
ac_cv_env_host_alias_set=${host_alias+set}
|
|
ac_cv_env_host_alias_value=$host_alias
|
|
ac_env_target_alias_set=${target_alias+set}
|
|
ac_env_target_alias_value=$target_alias
|
|
ac_cv_env_target_alias_set=${target_alias+set}
|
|
ac_cv_env_target_alias_value=$target_alias
|
|
ac_env_DEBUGGER_START_FILE_set=${DEBUGGER_START_FILE+set}
|
|
ac_env_DEBUGGER_START_FILE_value=$DEBUGGER_START_FILE
|
|
ac_cv_env_DEBUGGER_START_FILE_set=${DEBUGGER_START_FILE+set}
|
|
ac_cv_env_DEBUGGER_START_FILE_value=$DEBUGGER_START_FILE
|
|
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 bash 3.0-alpha 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
|
|
|
|
System types:
|
|
--build=BUILD configure for building on BUILD [guessed]
|
|
--host=HOST build programs to run on HOST [BUILD]
|
|
EOF
|
|
fi
|
|
|
|
if test -n "$ac_init_help"; then
|
|
case $ac_init_help in
|
|
short | recursive ) echo "Configuration of bash 3.0-alpha:";;
|
|
esac
|
|
cat <<\EOF
|
|
|
|
Optional Features:
|
|
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
|
|
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
|
--enable-minimal-config a minimal sh-like configuration
|
|
--enable-alias enable shell aliases
|
|
--enable-arith-for-command
|
|
enable arithmetic for command
|
|
--enable-array-variables
|
|
include shell array variables
|
|
--enable-bang-history turn on csh-style history substitution
|
|
--enable-brace-expansion
|
|
include brace expansion
|
|
--enable-command-timing enable the time reserved word and command timing
|
|
--enable-cond-command enable the conditional command
|
|
--enable-cond-regexp enable extgended regular expression matching in
|
|
conditional commands
|
|
--enable-debugger enable support for bash debugger
|
|
--enable-directory-stack
|
|
enable builtins pushd/popd/dirs
|
|
--enable-disabled-builtins
|
|
allow disabled builtins to still be invoked
|
|
--enable-dparen-arithmetic
|
|
include ((...)) command
|
|
--enable-extended-glob include ksh-style extended pattern matching
|
|
--enable-help-builtin include the help builtin
|
|
--enable-history turn on command history
|
|
--enable-job-control enable job control features
|
|
--enable-multibyte enable multibyte characters if OS supports them
|
|
--enable-net-redirections
|
|
enable /dev/tcp/host/port redirection
|
|
--enable-process-substitution
|
|
enable process substitution
|
|
--enable-progcomp enable programmable completion and the complete
|
|
builtin
|
|
--enable-prompt-string-decoding
|
|
turn on escape character decoding in prompts
|
|
--enable-readline turn on command line editing
|
|
--enable-restricted enable a restricted shell
|
|
--enable-select include select command
|
|
--enable-separate-helpfiles
|
|
use external files for help builtin documentation
|
|
--enable-usg-echo-default
|
|
a synonym for --enable-xpg-echo-default
|
|
--enable-xpg-echo-default
|
|
make the echo builtin expand escape sequences by
|
|
default
|
|
--enable-mem-scramble scramble memory on calls to malloc and free
|
|
--enable-profiling allow profiling with gprof
|
|
--enable-static-link link bash statically, for use as a root shell
|
|
--disable-largefile omit support for large files
|
|
|
|
Optional Packages:
|
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
|
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
|
|
--with-lispdir override the default lisp directory
|
|
--with-afs if you are running AFS
|
|
--with-bash-malloc use the Bash version of malloc
|
|
--with-curses use the curses library instead of the termcap
|
|
library
|
|
--with-gnu-malloc synonym for --with-bash-malloc
|
|
--with-installed-readline
|
|
use a version of the readline library that is
|
|
already installed
|
|
--with-purecov configure to postprocess with pure coverage
|
|
--with-purify configure to postprocess with purify
|
|
|
|
Some influential environment variables:
|
|
DEBUGGER_START_FILE
|
|
location of bash debugger initialization file
|
|
CC C compiler command
|
|
CFLAGS C compiler flags
|
|
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
|
|
nonstandard directory <lib dir>
|
|
CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
|
|
headers in a nonstandard directory <include dir>
|
|
CPP C preprocessor
|
|
|
|
Use these variables to override the choices made by `configure' or to help
|
|
it to find libraries and programs with nonstandard names/locations.
|
|
|
|
Report bugs to <bug-bash@gnu.org>.
|
|
EOF
|
|
fi
|
|
|
|
if test "$ac_init_help" = "recursive"; then
|
|
# If there are subdirs, report their specific --help.
|
|
ac_popdir=`pwd`
|
|
for ac_subdir in : $ac_subdirs_all; do test "x$ac_subdir" = x: && continue
|
|
cd $ac_subdir
|
|
# A "../" for each directory in /$ac_subdir.
|
|
ac_dots=`echo $ac_subdir |
|
|
sed 's,^\./,,;s,[^/]$,&/,;s,[^/]*/,../,g'`
|
|
|
|
case $srcdir in
|
|
.) # No --srcdir option. We are building in place.
|
|
ac_sub_srcdir=$srcdir ;;
|
|
[\\/]* | ?:[\\/]* ) # Absolute path.
|
|
ac_sub_srcdir=$srcdir/$ac_subdir ;;
|
|
*) # Relative path.
|
|
ac_sub_srcdir=$ac_dots$srcdir/$ac_subdir ;;
|
|
esac
|
|
|
|
# Check for guested configure; otherwise get Cygnus style configure.
|
|
if test -f $ac_sub_srcdir/configure.gnu; then
|
|
echo
|
|
$SHELL $ac_sub_srcdir/configure.gnu --help=recursive
|
|
elif test -f $ac_sub_srcdir/configure; then
|
|
echo
|
|
$SHELL $ac_sub_srcdir/configure --help=recursive
|
|
elif test -f $ac_sub_srcdir/configure.ac ||
|
|
test -f $ac_sub_srcdir/configure.in; then
|
|
echo
|
|
$ac_configure --help
|
|
else
|
|
echo "$as_me: WARNING: no configuration information is in $ac_subdir" >&2
|
|
fi
|
|
cd $ac_popdir
|
|
done
|
|
fi
|
|
|
|
test -n "$ac_init_help" && exit 0
|
|
if $ac_init_version; then
|
|
cat <<\EOF
|
|
bash configure 3.0-alpha
|
|
generated by GNU Autoconf 2.52
|
|
|
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
|
Free Software Foundation, Inc.
|
|
This configure script is free software; the Free Software Foundation
|
|
gives unlimited permission to copy, distribute and modify it.
|
|
EOF
|
|
exit 0
|
|
fi
|
|
exec 5>config.log
|
|
cat >&5 <<EOF
|
|
This file contains any messages produced by compilers while
|
|
running configure, to aid debugging if configure makes a mistake.
|
|
|
|
It was created by bash $as_me 3.0-alpha, which was
|
|
generated by GNU Autoconf 2.52. Invocation command line was
|
|
|
|
$ $0 $@
|
|
|
|
EOF
|
|
{
|
|
cat <<_ASUNAME
|
|
## ---------- ##
|
|
## Platform. ##
|
|
## ---------- ##
|
|
|
|
hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
|
|
uname -m = `(uname -m) 2>/dev/null || echo unknown`
|
|
uname -r = `(uname -r) 2>/dev/null || echo unknown`
|
|
uname -s = `(uname -s) 2>/dev/null || echo unknown`
|
|
uname -v = `(uname -v) 2>/dev/null || echo unknown`
|
|
|
|
/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
|
|
/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
|
|
|
|
/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
|
|
/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
|
|
/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
|
|
hostinfo = `(hostinfo) 2>/dev/null || echo unknown`
|
|
/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
|
|
/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
|
|
/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
|
|
|
|
PATH = $PATH
|
|
|
|
_ASUNAME
|
|
} >&5
|
|
|
|
cat >&5 <<EOF
|
|
## ------------ ##
|
|
## Core tests. ##
|
|
## ------------ ##
|
|
|
|
EOF
|
|
|
|
# Keep a trace of the command line.
|
|
# Strip out --no-create and --no-recursion so they do not pile up.
|
|
# Also quote any args containing shell meta-characters.
|
|
ac_configure_args=
|
|
ac_sep=
|
|
for ac_arg
|
|
do
|
|
case $ac_arg in
|
|
-no-create | --no-create | --no-creat | --no-crea | --no-cre \
|
|
| --no-cr | --no-c) ;;
|
|
-no-recursion | --no-recursion | --no-recursio | --no-recursi \
|
|
| --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
|
|
*" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
|
|
ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"`
|
|
ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
|
|
ac_sep=" " ;;
|
|
*) ac_configure_args="$ac_configure_args$ac_sep$ac_arg"
|
|
ac_sep=" " ;;
|
|
esac
|
|
# Get rid of the leading space.
|
|
done
|
|
|
|
# When interrupted or exit'd, cleanup temporary files, and complete
|
|
# config.log. We remove comments because anyway the quotes in there
|
|
# would cause problems or look ugly.
|
|
trap 'exit_status=$?
|
|
# Save into config.log some information that might help in debugging.
|
|
echo >&5
|
|
echo "## ----------------- ##" >&5
|
|
echo "## Cache variables. ##" >&5
|
|
echo "## ----------------- ##" >&5
|
|
echo >&5
|
|
# The following way of writing the cache mishandles newlines in values,
|
|
{
|
|
(set) 2>&1 |
|
|
case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
|
|
*ac_space=\ *)
|
|
sed -n \
|
|
"s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
|
|
s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
|
|
;;
|
|
*)
|
|
sed -n \
|
|
"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
|
|
;;
|
|
esac;
|
|
} >&5
|
|
sed "/^$/d" confdefs.h >conftest.log
|
|
if test -s conftest.log; then
|
|
echo >&5
|
|
echo "## ------------ ##" >&5
|
|
echo "## confdefs.h. ##" >&5
|
|
echo "## ------------ ##" >&5
|
|
echo >&5
|
|
cat conftest.log >&5
|
|
fi
|
|
(echo; echo) >&5
|
|
test "$ac_signal" != 0 &&
|
|
echo "$as_me: caught signal $ac_signal" >&5
|
|
echo "$as_me: exit $exit_status" >&5
|
|
rm -rf conftest* confdefs* core core.* *.core conf$$* $ac_clean_files &&
|
|
exit $exit_status
|
|
' 0
|
|
for ac_signal in 1 2 13 15; do
|
|
trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
|
|
done
|
|
ac_signal=0
|
|
|
|
# confdefs.h avoids OS command line length limits that DEFS can exceed.
|
|
rm -rf conftest* confdefs.h
|
|
# AIX cpp loses on an empty file, so make sure it contains at least a newline.
|
|
echo >confdefs.h
|
|
|
|
# Let the site file select an alternate cache file if it wants to.
|
|
# Prefer explicitly selected file to automatically selected ones.
|
|
if test -z "$CONFIG_SITE"; then
|
|
if test "x$prefix" != xNONE; then
|
|
CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
|
|
else
|
|
CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
|
|
fi
|
|
fi
|
|
for ac_site_file in $CONFIG_SITE; do
|
|
if test -r "$ac_site_file"; then
|
|
{ echo "$as_me:939: loading site script $ac_site_file" >&5
|
|
echo "$as_me: loading site script $ac_site_file" >&6;}
|
|
cat "$ac_site_file" >&5
|
|
. "$ac_site_file"
|
|
fi
|
|
done
|
|
|
|
if test -r "$cache_file"; then
|
|
# Some versions of bash will fail to source /dev/null (special
|
|
# files actually), so we avoid doing that.
|
|
if test -f "$cache_file"; then
|
|
{ echo "$as_me:950: loading cache $cache_file" >&5
|
|
echo "$as_me: loading cache $cache_file" >&6;}
|
|
case $cache_file in
|
|
[\\/]* | ?:[\\/]* ) . $cache_file;;
|
|
*) . ./$cache_file;;
|
|
esac
|
|
fi
|
|
else
|
|
{ echo "$as_me:958: creating cache $cache_file" >&5
|
|
echo "$as_me: creating cache $cache_file" >&6;}
|
|
>$cache_file
|
|
fi
|
|
|
|
# Check that the precious variables saved in the cache have kept the same
|
|
# value.
|
|
ac_cache_corrupted=false
|
|
for ac_var in `(set) 2>&1 |
|
|
sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
|
|
eval ac_old_set=\$ac_cv_env_${ac_var}_set
|
|
eval ac_new_set=\$ac_env_${ac_var}_set
|
|
eval ac_old_val="\$ac_cv_env_${ac_var}_value"
|
|
eval ac_new_val="\$ac_env_${ac_var}_value"
|
|
case $ac_old_set,$ac_new_set in
|
|
set,)
|
|
{ echo "$as_me:974: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
|
|
echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
|
|
ac_cache_corrupted=: ;;
|
|
,set)
|
|
{ echo "$as_me:978: error: \`$ac_var' was not set in the previous run" >&5
|
|
echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
|
|
ac_cache_corrupted=: ;;
|
|
,);;
|
|
*)
|
|
if test "x$ac_old_val" != "x$ac_new_val"; then
|
|
{ echo "$as_me:984: 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:986: former value: $ac_old_val" >&5
|
|
echo "$as_me: former value: $ac_old_val" >&2;}
|
|
{ echo "$as_me:988: current value: $ac_new_val" >&5
|
|
echo "$as_me: current value: $ac_new_val" >&2;}
|
|
ac_cache_corrupted=:
|
|
fi;;
|
|
esac
|
|
# Pass precious variables to config.status. It doesn't matter if
|
|
# we pass some twice (in addition to the command line arguments).
|
|
if test "$ac_new_set" = set; then
|
|
case $ac_new_val in
|
|
*" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
|
|
ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"`
|
|
ac_configure_args="$ac_configure_args '$ac_arg'"
|
|
;;
|
|
*) ac_configure_args="$ac_configure_args $ac_var=$ac_new_val"
|
|
;;
|
|
esac
|
|
fi
|
|
done
|
|
if $ac_cache_corrupted; then
|
|
{ echo "$as_me:1007: 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:1009: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
|
|
echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
ac_ext=c
|
|
ac_cpp='$CPP $CPPFLAGS'
|
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
|
|
case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
|
|
*c*,-n*) ECHO_N= ECHO_C='
|
|
' ECHO_T=' ' ;;
|
|
*c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
|
|
*) ECHO_N= ECHO_C='\c' ECHO_T= ;;
|
|
esac
|
|
echo "#! $SHELL" >conftest.sh
|
|
echo "exit 0" >>conftest.sh
|
|
chmod +x conftest.sh
|
|
if { (echo "$as_me:1029: PATH=\".;.\"; conftest.sh") >&5
|
|
(PATH=".;."; conftest.sh) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1032: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; then
|
|
ac_path_separator=';'
|
|
else
|
|
ac_path_separator=:
|
|
fi
|
|
PATH_SEPARATOR="$ac_path_separator"
|
|
rm -f conftest.sh
|
|
|
|
ac_aux_dir=
|
|
for ac_dir in ./support $srcdir/./support; do
|
|
if test -f $ac_dir/install-sh; then
|
|
ac_aux_dir=$ac_dir
|
|
ac_install_sh="$ac_aux_dir/install-sh -c"
|
|
break
|
|
elif test -f $ac_dir/install.sh; then
|
|
ac_aux_dir=$ac_dir
|
|
ac_install_sh="$ac_aux_dir/install.sh -c"
|
|
break
|
|
elif test -f $ac_dir/shtool; then
|
|
ac_aux_dir=$ac_dir
|
|
ac_install_sh="$ac_aux_dir/shtool install -c"
|
|
break
|
|
fi
|
|
done
|
|
if test -z "$ac_aux_dir"; then
|
|
{ { echo "$as_me:1058: error: cannot find install-sh or install.sh in ./support $srcdir/./support" >&5
|
|
echo "$as_me: error: cannot find install-sh or install.sh in ./support $srcdir/./support" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
ac_config_guess="$SHELL $ac_aux_dir/config.guess"
|
|
ac_config_sub="$SHELL $ac_aux_dir/config.sub"
|
|
ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
|
|
|
|
ac_config_headers="$ac_config_headers config.h"
|
|
|
|
BASHVERS=3.0
|
|
RELSTATUS=alpha
|
|
|
|
case "$RELSTATUS" in
|
|
alp*|bet*|dev*|rc*) DEBUG='-DDEBUG' MALLOC_DEBUG='-DMALLOC_DEBUG' ;;
|
|
*) DEBUG= MALLOC_DEBUG= ;;
|
|
esac
|
|
|
|
# Make sure we can run config.sub.
|
|
$ac_config_sub sun4 >/dev/null 2>&1 ||
|
|
{ { echo "$as_me:1078: error: cannot run $ac_config_sub" >&5
|
|
echo "$as_me: error: cannot run $ac_config_sub" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
echo "$as_me:1082: checking build system type" >&5
|
|
echo $ECHO_N "checking build system type... $ECHO_C" >&6
|
|
if test "${ac_cv_build+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_build_alias=$build_alias
|
|
test -z "$ac_cv_build_alias" &&
|
|
ac_cv_build_alias=`$ac_config_guess`
|
|
test -z "$ac_cv_build_alias" &&
|
|
{ { echo "$as_me:1091: error: cannot guess build type; you must specify one" >&5
|
|
echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
|
|
{ { echo "$as_me:1095: error: $ac_config_sub $ac_cv_build_alias failed." >&5
|
|
echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
fi
|
|
echo "$as_me:1100: result: $ac_cv_build" >&5
|
|
echo "${ECHO_T}$ac_cv_build" >&6
|
|
build=$ac_cv_build
|
|
build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
|
build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
|
build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
|
|
|
echo "$as_me:1107: checking host system type" >&5
|
|
echo $ECHO_N "checking host system type... $ECHO_C" >&6
|
|
if test "${ac_cv_host+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_host_alias=$host_alias
|
|
test -z "$ac_cv_host_alias" &&
|
|
ac_cv_host_alias=$ac_cv_build_alias
|
|
ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
|
|
{ { echo "$as_me:1116: error: $ac_config_sub $ac_cv_host_alias failed" >&5
|
|
echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
fi
|
|
echo "$as_me:1121: result: $ac_cv_host" >&5
|
|
echo "${ECHO_T}$ac_cv_host" >&6
|
|
host=$ac_cv_host
|
|
host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
|
host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
|
host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
|
|
|
opt_bash_malloc=yes
|
|
opt_purify=no
|
|
opt_purecov=no
|
|
opt_afs=no
|
|
opt_curses=no
|
|
opt_with_installed_readline=no
|
|
|
|
#htmldir=
|
|
|
|
case "${host_cpu}-${host_os}" in
|
|
alpha*-*) opt_bash_malloc=no ;; # alpha running osf/1 or linux
|
|
*[Cc]ray*-*) opt_bash_malloc=no ;; # Crays
|
|
*-osf1*) opt_bash_malloc=no ;; # other osf/1 machines
|
|
sparc-svr4*) opt_bash_malloc=no ;; # sparc SVR4, SVR4.2
|
|
sparc-netbsd*) opt_bash_malloc=no ;; # needs 8-byte alignment
|
|
mips-irix6*) opt_bash_malloc=no ;; # needs 8-byte alignment
|
|
m68k-sysv) opt_bash_malloc=no ;; # fixes file descriptor leak in closedir
|
|
sparc-linux*) opt_bash_malloc=no ;; # sparc running linux; requires ELF
|
|
*-freebsd*-gnu) opt_bash_malloc=no ;; # there's some undetermined problem here
|
|
#*-freebsd*) opt_bash_malloc=no ;; # they claim it's better; I disagree
|
|
*-openbsd*) opt_bash_malloc=no ;; # they claim it needs eight-bit alignment
|
|
*-aix*) opt_bash_malloc=no ;; # AIX machines
|
|
*-nextstep*) opt_bash_malloc=no ;; # NeXT machines running NeXTstep
|
|
*-macos*) opt_bash_malloc=no ;; # Apple MacOS X
|
|
*-rhapsody*) opt_bash_malloc=no ;; # Apple Rhapsody (MacOS X)
|
|
*-darwin*) opt_bash_malloc=no ;; # Apple Darwin (MacOS X)
|
|
*-dgux*) opt_bash_malloc=no ;; # DG/UX machines
|
|
*-qnx*) opt_bash_malloc=no ;; # QNX 4.2
|
|
*-machten4) opt_bash_malloc=no ;; # MachTen 4.x
|
|
*-bsdi2.1|*-bsdi3.?) opt_bash_malloc=no ; : ${CC:=shlicc2} ;; # for loadable builtins
|
|
*-beos*) opt_bash_malloc=no ;; # they say it's suitable
|
|
*-cygwin*) opt_bash_malloc=no ;; # Cygnus's CYGWIN environment
|
|
*-opennt*|*-interix*) opt_bash_malloc=no ;; # Interix, now owned by Microsoft
|
|
esac
|
|
|
|
# memory scrambling on free()
|
|
case "${host_os}" in
|
|
sco3.2v5*|sco3.2v4*) opt_memscramble=no ;;
|
|
*) opt_memscramble=yes ;;
|
|
esac
|
|
|
|
# Check whether --with-lispdir or --without-lispdir was given.
|
|
if test "${with_lispdir+set}" = set; then
|
|
withval="$with_lispdir"
|
|
lispdir="$withval"
|
|
echo "$as_me:1173: checking where .elc files should go" >&5
|
|
echo $ECHO_N "checking where .elc files should go... $ECHO_C" >&6
|
|
echo "$as_me:1175: result: $lispdir" >&5
|
|
echo "${ECHO_T}$lispdir" >&6
|
|
else
|
|
|
|
# If set to t, that means we are running in a shell under Emacs.
|
|
# If you have an Emacs named "t", then use the full path.
|
|
test x"$EMACS" = xt && EMACS=
|
|
for ac_prog in emacs xemacs
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo "$as_me:1186: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_EMACS+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$EMACS"; then
|
|
ac_cv_prog_EMACS="$EMACS" # 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_EMACS="$ac_prog"
|
|
echo "$as_me:1201: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
EMACS=$ac_cv_prog_EMACS
|
|
if test -n "$EMACS"; then
|
|
echo "$as_me:1209: result: $EMACS" >&5
|
|
echo "${ECHO_T}$EMACS" >&6
|
|
else
|
|
echo "$as_me:1212: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$EMACS" && break
|
|
done
|
|
test -n "$EMACS" || EMACS="no"
|
|
|
|
if test $EMACS != "no"; then
|
|
if test x${lispdir+set} != xset; then
|
|
echo "$as_me:1222: checking where .elc files should go" >&5
|
|
echo $ECHO_N "checking where .elc files should go... $ECHO_C" >&6
|
|
if test "${am_cv_lispdir+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
am_cv_lispdir=`$EMACS -batch -q -eval '(while load-path (princ (concat (car load-path) "\n")) (setq load-path (cdr load-path)))' | sed -n -e 's,/$,,' -e '/.*\/lib\/\(x\?emacs\/site-lisp\)$/{s,,${libdir}/\1,;p;q;}' -e '/.*\/share\/\(x\?emacs\/site-lisp\)$/{s,,${datadir}/\1,;p;q;}'`
|
|
if test -z "$am_cv_lispdir"; then
|
|
am_cv_lispdir='${datadir}/emacs/site-lisp'
|
|
fi
|
|
|
|
fi
|
|
echo "$as_me:1233: result: $am_cv_lispdir" >&5
|
|
echo "${ECHO_T}$am_cv_lispdir" >&6
|
|
lispdir="$am_cv_lispdir"
|
|
fi
|
|
fi
|
|
|
|
fi;
|
|
|
|
# Check whether --with-afs or --without-afs was given.
|
|
if test "${with_afs+set}" = set; then
|
|
withval="$with_afs"
|
|
opt_afs=$withval
|
|
fi;
|
|
|
|
# Check whether --with-bash-malloc or --without-bash-malloc was given.
|
|
if test "${with_bash_malloc+set}" = set; then
|
|
withval="$with_bash_malloc"
|
|
opt_bash_malloc=$withval
|
|
fi;
|
|
|
|
# Check whether --with-curses or --without-curses was given.
|
|
if test "${with_curses+set}" = set; then
|
|
withval="$with_curses"
|
|
opt_curses=$withval
|
|
fi;
|
|
|
|
# Check whether --with-gnu-malloc or --without-gnu-malloc was given.
|
|
if test "${with_gnu_malloc+set}" = set; then
|
|
withval="$with_gnu_malloc"
|
|
opt_bash_malloc=$withval
|
|
fi;
|
|
|
|
# Check whether --with-installed-readline or --without-installed-readline was given.
|
|
if test "${with_installed_readline+set}" = set; then
|
|
withval="$with_installed_readline"
|
|
opt_with_installed_readline=$withval
|
|
fi;
|
|
|
|
# Check whether --with-purecov or --without-purecov was given.
|
|
if test "${with_purecov+set}" = set; then
|
|
withval="$with_purecov"
|
|
opt_purecov=$withval
|
|
fi;
|
|
|
|
# Check whether --with-purify or --without-purify was given.
|
|
if test "${with_purify+set}" = set; then
|
|
withval="$with_purify"
|
|
opt_purify=$withval
|
|
fi;
|
|
|
|
if test "$opt_bash_malloc" = yes; then
|
|
MALLOC_TARGET=malloc
|
|
MALLOC_SRC=malloc.c
|
|
|
|
MALLOC_LIB='-lmalloc'
|
|
MALLOC_LIBRARY='$(ALLOC_LIBDIR)/libmalloc.a'
|
|
MALLOC_LDFLAGS='-L$(ALLOC_LIBDIR)'
|
|
MALLOC_DEP='$(MALLOC_LIBRARY)'
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define USING_BASH_MALLOC 1
|
|
EOF
|
|
|
|
else
|
|
MALLOC_LIB=
|
|
MALLOC_LIBRARY=
|
|
MALLOC_LDFLAGS=
|
|
MALLOC_DEP=
|
|
fi
|
|
|
|
if test "$opt_purify" = yes; then
|
|
PURIFY="purify "
|
|
cat >>confdefs.h <<\EOF
|
|
#define DISABLE_MALLOC_WRAPPERS 1
|
|
EOF
|
|
|
|
else
|
|
PURIFY=
|
|
fi
|
|
|
|
if test "$opt_purecov" = yes; then
|
|
PURIFY="${PURIFY}purecov"
|
|
fi
|
|
|
|
if test "$opt_afs" = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define AFS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$opt_curses" = yes; then
|
|
prefer_curses=yes
|
|
fi
|
|
|
|
if test -z "${DEBUGGER_START_FILE}"; then
|
|
DEBUGGER_START_FILE=${ac_default_prefix}/lib/bashdb/bashdb-main.inc
|
|
fi
|
|
|
|
opt_minimal_config=no
|
|
|
|
opt_job_control=yes
|
|
opt_alias=yes
|
|
opt_readline=yes
|
|
opt_history=yes
|
|
opt_bang_history=yes
|
|
opt_dirstack=yes
|
|
opt_restricted=yes
|
|
opt_process_subst=yes
|
|
opt_prompt_decoding=yes
|
|
opt_select=yes
|
|
opt_help=yes
|
|
opt_array_variables=yes
|
|
opt_dparen_arith=yes
|
|
opt_extended_glob=yes
|
|
opt_brace_expansion=yes
|
|
opt_disabled_builtins=no
|
|
opt_command_timing=yes
|
|
opt_xpg_echo=no
|
|
opt_cond_command=yes
|
|
opt_cond_regexp=yes
|
|
opt_arith_for_command=yes
|
|
opt_net_redirs=yes
|
|
opt_progcomp=yes
|
|
opt_separate_help=no
|
|
opt_multibyte=yes
|
|
opt_debugger=yes
|
|
|
|
opt_static_link=no
|
|
opt_profiling=no
|
|
|
|
# Check whether --enable-minimal-config or --disable-minimal-config was given.
|
|
if test "${enable_minimal_config+set}" = set; then
|
|
enableval="$enable_minimal_config"
|
|
opt_minimal_config=$enableval
|
|
fi;
|
|
|
|
if test $opt_minimal_config = yes; then
|
|
opt_job_control=no opt_alias=no opt_readline=no
|
|
opt_history=no opt_bang_history=no opt_dirstack=no
|
|
opt_restricted=no opt_process_subst=no opt_prompt_decoding=no
|
|
opt_select=no opt_help=no opt_array_variables=no opt_dparen_arith=no
|
|
opt_brace_expansion=no opt_disabled_builtins=no opt_command_timing=no
|
|
opt_extended_glob=no opt_cond_command=no opt_arith_for_command=no
|
|
opt_net_redirs=no opt_progcomp=no opt_separate_help=no
|
|
opt_multibyte=yes opt_cond_regexp=no
|
|
fi
|
|
|
|
# Check whether --enable-alias or --disable-alias was given.
|
|
if test "${enable_alias+set}" = set; then
|
|
enableval="$enable_alias"
|
|
opt_alias=$enableval
|
|
fi;
|
|
# Check whether --enable-arith-for-command or --disable-arith-for-command was given.
|
|
if test "${enable_arith_for_command+set}" = set; then
|
|
enableval="$enable_arith_for_command"
|
|
opt_arith_for_command=$enableval
|
|
fi;
|
|
# Check whether --enable-array-variables or --disable-array-variables was given.
|
|
if test "${enable_array_variables+set}" = set; then
|
|
enableval="$enable_array_variables"
|
|
opt_array_variables=$enableval
|
|
fi;
|
|
# Check whether --enable-bang-history or --disable-bang-history was given.
|
|
if test "${enable_bang_history+set}" = set; then
|
|
enableval="$enable_bang_history"
|
|
opt_bang_history=$enableval
|
|
fi;
|
|
# Check whether --enable-brace-expansion or --disable-brace-expansion was given.
|
|
if test "${enable_brace_expansion+set}" = set; then
|
|
enableval="$enable_brace_expansion"
|
|
opt_brace_expansion=$enableval
|
|
fi;
|
|
# Check whether --enable-command-timing or --disable-command-timing was given.
|
|
if test "${enable_command_timing+set}" = set; then
|
|
enableval="$enable_command_timing"
|
|
opt_command_timing=$enableval
|
|
fi;
|
|
# Check whether --enable-cond-command or --disable-cond-command was given.
|
|
if test "${enable_cond_command+set}" = set; then
|
|
enableval="$enable_cond_command"
|
|
opt_cond_command=$enableval
|
|
fi;
|
|
# Check whether --enable-cond-regexp or --disable-cond-regexp was given.
|
|
if test "${enable_cond_regexp+set}" = set; then
|
|
enableval="$enable_cond_regexp"
|
|
opt_cond_regexp=$enableval
|
|
fi;
|
|
# Check whether --enable-debugger or --disable-debugger was given.
|
|
if test "${enable_debugger+set}" = set; then
|
|
enableval="$enable_debugger"
|
|
opt_debugger=$enableval
|
|
fi;
|
|
# Check whether --enable-directory-stack or --disable-directory-stack was given.
|
|
if test "${enable_directory_stack+set}" = set; then
|
|
enableval="$enable_directory_stack"
|
|
opt_dirstack=$enableval
|
|
fi;
|
|
# Check whether --enable-disabled-builtins or --disable-disabled-builtins was given.
|
|
if test "${enable_disabled_builtins+set}" = set; then
|
|
enableval="$enable_disabled_builtins"
|
|
opt_disabled_builtins=$enableval
|
|
fi;
|
|
# Check whether --enable-dparen-arithmetic or --disable-dparen-arithmetic was given.
|
|
if test "${enable_dparen_arithmetic+set}" = set; then
|
|
enableval="$enable_dparen_arithmetic"
|
|
opt_dparen_arith=$enableval
|
|
fi;
|
|
# Check whether --enable-extended-glob or --disable-extended-glob was given.
|
|
if test "${enable_extended_glob+set}" = set; then
|
|
enableval="$enable_extended_glob"
|
|
opt_extended_glob=$enableval
|
|
fi;
|
|
# Check whether --enable-help-builtin or --disable-help-builtin was given.
|
|
if test "${enable_help_builtin+set}" = set; then
|
|
enableval="$enable_help_builtin"
|
|
opt_help=$enableval
|
|
fi;
|
|
# Check whether --enable-history or --disable-history was given.
|
|
if test "${enable_history+set}" = set; then
|
|
enableval="$enable_history"
|
|
opt_history=$enableval
|
|
fi;
|
|
# Check whether --enable-job-control or --disable-job-control was given.
|
|
if test "${enable_job_control+set}" = set; then
|
|
enableval="$enable_job_control"
|
|
opt_job_control=$enableval
|
|
fi;
|
|
# Check whether --enable-multibyte or --disable-multibyte was given.
|
|
if test "${enable_multibyte+set}" = set; then
|
|
enableval="$enable_multibyte"
|
|
opt_multibyte=$enableval
|
|
fi;
|
|
# Check whether --enable-net-redirections or --disable-net-redirections was given.
|
|
if test "${enable_net_redirections+set}" = set; then
|
|
enableval="$enable_net_redirections"
|
|
opt_net_redirs=$enableval
|
|
fi;
|
|
# Check whether --enable-process-substitution or --disable-process-substitution was given.
|
|
if test "${enable_process_substitution+set}" = set; then
|
|
enableval="$enable_process_substitution"
|
|
opt_process_subst=$enableval
|
|
fi;
|
|
# Check whether --enable-progcomp or --disable-progcomp was given.
|
|
if test "${enable_progcomp+set}" = set; then
|
|
enableval="$enable_progcomp"
|
|
opt_progcomp=$enableval
|
|
fi;
|
|
# Check whether --enable-prompt-string-decoding or --disable-prompt-string-decoding was given.
|
|
if test "${enable_prompt_string_decoding+set}" = set; then
|
|
enableval="$enable_prompt_string_decoding"
|
|
opt_prompt_decoding=$enableval
|
|
fi;
|
|
# Check whether --enable-readline or --disable-readline was given.
|
|
if test "${enable_readline+set}" = set; then
|
|
enableval="$enable_readline"
|
|
opt_readline=$enableval
|
|
fi;
|
|
# Check whether --enable-restricted or --disable-restricted was given.
|
|
if test "${enable_restricted+set}" = set; then
|
|
enableval="$enable_restricted"
|
|
opt_restricted=$enableval
|
|
fi;
|
|
# Check whether --enable-select or --disable-select was given.
|
|
if test "${enable_select+set}" = set; then
|
|
enableval="$enable_select"
|
|
opt_select=$enableval
|
|
fi;
|
|
# Check whether --enable-separate-helpfiles or --disable-separate-helpfiles was given.
|
|
if test "${enable_separate_helpfiles+set}" = set; then
|
|
enableval="$enable_separate_helpfiles"
|
|
opt_separate_help=$enableval
|
|
fi;
|
|
# Check whether --enable-usg-echo-default or --disable-usg-echo-default was given.
|
|
if test "${enable_usg_echo_default+set}" = set; then
|
|
enableval="$enable_usg_echo_default"
|
|
opt_xpg_echo=$enableval
|
|
fi;
|
|
# Check whether --enable-xpg-echo-default or --disable-xpg-echo-default was given.
|
|
if test "${enable_xpg_echo_default+set}" = set; then
|
|
enableval="$enable_xpg_echo_default"
|
|
opt_xpg_echo=$enableval
|
|
fi;
|
|
|
|
# Check whether --enable-mem-scramble or --disable-mem-scramble was given.
|
|
if test "${enable_mem_scramble+set}" = set; then
|
|
enableval="$enable_mem_scramble"
|
|
opt_memscramble=$enableval
|
|
fi;
|
|
# Check whether --enable-profiling or --disable-profiling was given.
|
|
if test "${enable_profiling+set}" = set; then
|
|
enableval="$enable_profiling"
|
|
opt_profiling=$enableval
|
|
fi;
|
|
# Check whether --enable-static-link or --disable-static-link was given.
|
|
if test "${enable_static_link+set}" = set; then
|
|
enableval="$enable_static_link"
|
|
opt_static_link=$enableval
|
|
fi;
|
|
|
|
if test $opt_alias = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define ALIAS 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_dirstack = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define PUSHD_AND_POPD 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_restricted = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define RESTRICTED_SHELL 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_process_subst = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define PROCESS_SUBSTITUTION 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_prompt_decoding = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define PROMPT_STRING_DECODE 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_select = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define SELECT_COMMAND 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_help = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HELP_BUILTIN 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_array_variables = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define ARRAY_VARS 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_dparen_arith = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define DPAREN_ARITHMETIC 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_brace_expansion = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define BRACE_EXPANSION 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_disabled_builtins = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define DISABLED_BUILTINS 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_command_timing = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define COMMAND_TIMING 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_xpg_echo = yes ; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define DEFAULT_ECHO_TO_XPG 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_extended_glob = yes ; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define EXTENDED_GLOB 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_cond_command = yes ; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define COND_COMMAND 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_cond_regexp = yes ; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define COND_REGEXP 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_arith_for_command = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define ARITH_FOR_COMMAND 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_net_redirs = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define NETWORK_REDIRECTIONS 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_progcomp = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define PROGRAMMABLE_COMPLETION 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_multibyte = no; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define NO_MULTIBYTE_SUPPORT 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_debugger = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define DEBUGGER 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test $opt_memscramble = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define MEMSCRAMBLE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$opt_minimal_config" = yes; then
|
|
TESTSCRIPT=run-minimal
|
|
else
|
|
TESTSCRIPT=run-all
|
|
fi
|
|
|
|
HELPDIR= HELPDIRDEFINE= HELPINSTALL=
|
|
if test "$opt_separate_help" != no; then
|
|
if test "$opt_separate_help" = "yes" ; then
|
|
HELPDIR='${datadir}/bash'
|
|
else
|
|
HELPDIR=$opt_separate_help
|
|
fi
|
|
HELPDIRDEFINE='-H ${HELPDIR}'
|
|
HELPINSTALL='install-help'
|
|
fi
|
|
|
|
echo ""
|
|
echo "Beginning configuration for bash-$BASHVERS-$RELSTATUS for ${host_cpu}-${host_vendor}-${host_os}"
|
|
echo ""
|
|
|
|
ac_ext=c
|
|
ac_cpp='$CPP $CPPFLAGS'
|
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
if test -n "$ac_tool_prefix"; then
|
|
# Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
|
|
set dummy ${ac_tool_prefix}gcc; ac_word=$2
|
|
echo "$as_me:1696: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$CC"; then
|
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_CC="${ac_tool_prefix}gcc"
|
|
echo "$as_me:1711: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
CC=$ac_cv_prog_CC
|
|
if test -n "$CC"; then
|
|
echo "$as_me:1719: result: $CC" >&5
|
|
echo "${ECHO_T}$CC" >&6
|
|
else
|
|
echo "$as_me:1722: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
fi
|
|
if test -z "$ac_cv_prog_CC"; then
|
|
ac_ct_CC=$CC
|
|
# Extract the first word of "gcc", so it can be a program name with args.
|
|
set dummy gcc; ac_word=$2
|
|
echo "$as_me:1731: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$ac_ct_CC"; then
|
|
ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_ac_ct_CC="gcc"
|
|
echo "$as_me:1746: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
ac_ct_CC=$ac_cv_prog_ac_ct_CC
|
|
if test -n "$ac_ct_CC"; then
|
|
echo "$as_me:1754: result: $ac_ct_CC" >&5
|
|
echo "${ECHO_T}$ac_ct_CC" >&6
|
|
else
|
|
echo "$as_me:1757: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
CC=$ac_ct_CC
|
|
else
|
|
CC="$ac_cv_prog_CC"
|
|
fi
|
|
|
|
if test -z "$CC"; then
|
|
if test -n "$ac_tool_prefix"; then
|
|
# Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
|
|
set dummy ${ac_tool_prefix}cc; ac_word=$2
|
|
echo "$as_me:1770: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$CC"; then
|
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_CC="${ac_tool_prefix}cc"
|
|
echo "$as_me:1785: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
CC=$ac_cv_prog_CC
|
|
if test -n "$CC"; then
|
|
echo "$as_me:1793: result: $CC" >&5
|
|
echo "${ECHO_T}$CC" >&6
|
|
else
|
|
echo "$as_me:1796: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
fi
|
|
if test -z "$ac_cv_prog_CC"; then
|
|
ac_ct_CC=$CC
|
|
# Extract the first word of "cc", so it can be a program name with args.
|
|
set dummy cc; ac_word=$2
|
|
echo "$as_me:1805: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$ac_ct_CC"; then
|
|
ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_ac_ct_CC="cc"
|
|
echo "$as_me:1820: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
ac_ct_CC=$ac_cv_prog_ac_ct_CC
|
|
if test -n "$ac_ct_CC"; then
|
|
echo "$as_me:1828: result: $ac_ct_CC" >&5
|
|
echo "${ECHO_T}$ac_ct_CC" >&6
|
|
else
|
|
echo "$as_me:1831: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
CC=$ac_ct_CC
|
|
else
|
|
CC="$ac_cv_prog_CC"
|
|
fi
|
|
|
|
fi
|
|
if test -z "$CC"; then
|
|
# Extract the first word of "cc", so it can be a program name with args.
|
|
set dummy cc; ac_word=$2
|
|
echo "$as_me:1844: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$CC"; then
|
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
|
else
|
|
ac_prog_rejected=no
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
|
|
ac_prog_rejected=yes
|
|
continue
|
|
fi
|
|
ac_cv_prog_CC="cc"
|
|
echo "$as_me:1864: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
if test $ac_prog_rejected = yes; then
|
|
# We found a bogon in the path, so make sure we never use it.
|
|
set dummy $ac_cv_prog_CC
|
|
shift
|
|
if test $# != 0; then
|
|
# We chose a different compiler from the bogus one.
|
|
# However, it has the same basename, so the bogon will be chosen
|
|
# first if we set CC to just the basename; use the full file name.
|
|
shift
|
|
set dummy "$ac_dir/$ac_word" ${1+"$@"}
|
|
shift
|
|
ac_cv_prog_CC="$@"
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
CC=$ac_cv_prog_CC
|
|
if test -n "$CC"; then
|
|
echo "$as_me:1886: result: $CC" >&5
|
|
echo "${ECHO_T}$CC" >&6
|
|
else
|
|
echo "$as_me:1889: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
fi
|
|
if test -z "$CC"; then
|
|
if test -n "$ac_tool_prefix"; then
|
|
for ac_prog in cl
|
|
do
|
|
# Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
|
|
echo "$as_me:1900: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$CC"; then
|
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
|
|
echo "$as_me:1915: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
CC=$ac_cv_prog_CC
|
|
if test -n "$CC"; then
|
|
echo "$as_me:1923: result: $CC" >&5
|
|
echo "${ECHO_T}$CC" >&6
|
|
else
|
|
echo "$as_me:1926: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$CC" && break
|
|
done
|
|
fi
|
|
if test -z "$CC"; then
|
|
ac_ct_CC=$CC
|
|
for ac_prog in cl
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo "$as_me:1939: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$ac_ct_CC"; then
|
|
ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_ac_ct_CC="$ac_prog"
|
|
echo "$as_me:1954: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
ac_ct_CC=$ac_cv_prog_ac_ct_CC
|
|
if test -n "$ac_ct_CC"; then
|
|
echo "$as_me:1962: result: $ac_ct_CC" >&5
|
|
echo "${ECHO_T}$ac_ct_CC" >&6
|
|
else
|
|
echo "$as_me:1965: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$ac_ct_CC" && break
|
|
done
|
|
|
|
CC=$ac_ct_CC
|
|
fi
|
|
|
|
fi
|
|
|
|
test -z "$CC" && { { echo "$as_me:1977: error: no acceptable cc found in \$PATH" >&5
|
|
echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
# Provide some information about the compiler.
|
|
echo "$as_me:1982:" \
|
|
"checking for C compiler version" >&5
|
|
ac_compiler=`set X $ac_compile; echo $2`
|
|
{ (eval echo "$as_me:1985: \"$ac_compiler --version </dev/null >&5\"") >&5
|
|
(eval $ac_compiler --version </dev/null >&5) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1988: \$? = $ac_status" >&5
|
|
(exit $ac_status); }
|
|
{ (eval echo "$as_me:1990: \"$ac_compiler -v </dev/null >&5\"") >&5
|
|
(eval $ac_compiler -v </dev/null >&5) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1993: \$? = $ac_status" >&5
|
|
(exit $ac_status); }
|
|
{ (eval echo "$as_me:1995: \"$ac_compiler -V </dev/null >&5\"") >&5
|
|
(eval $ac_compiler -V </dev/null >&5) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:1998: \$? = $ac_status" >&5
|
|
(exit $ac_status); }
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2002 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
ac_clean_files_save=$ac_clean_files
|
|
ac_clean_files="$ac_clean_files a.out a.exe"
|
|
# Try to create an executable without -o first, disregard a.out.
|
|
# It will help us diagnose broken compilers, and finding out an intuition
|
|
# of exeext.
|
|
echo "$as_me:2018: checking for C compiler default output" >&5
|
|
echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
|
|
ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
|
|
if { (eval echo "$as_me:2021: \"$ac_link_default\"") >&5
|
|
(eval $ac_link_default) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2024: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; then
|
|
# Find the output, starting from the most likely. This scheme is
|
|
# not robust to junk in `.', hence go to wildcards (a.*) only as a last
|
|
# resort.
|
|
for ac_file in `ls a.exe conftest.exe 2>/dev/null;
|
|
ls a.out conftest 2>/dev/null;
|
|
ls a.* conftest.* 2>/dev/null`; do
|
|
case $ac_file in
|
|
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
|
|
a.out ) # We found the default executable, but exeext='' is most
|
|
# certainly right.
|
|
break;;
|
|
*.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
|
|
# FIXME: I believe we export ac_cv_exeext for Libtool --akim.
|
|
export ac_cv_exeext
|
|
break;;
|
|
* ) break;;
|
|
esac
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
{ { echo "$as_me:2047: error: C compiler cannot create executables" >&5
|
|
echo "$as_me: error: C compiler cannot create executables" >&2;}
|
|
{ (exit 77); exit 77; }; }
|
|
fi
|
|
|
|
ac_exeext=$ac_cv_exeext
|
|
echo "$as_me:2053: result: $ac_file" >&5
|
|
echo "${ECHO_T}$ac_file" >&6
|
|
|
|
# Check the compiler produces executables we can run. If not, either
|
|
# the compiler is broken, or we cross compile.
|
|
echo "$as_me:2058: checking whether the C compiler works" >&5
|
|
echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
|
|
# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
|
|
# If not cross compiling, check that we can run a simple program.
|
|
if test "$cross_compiling" != yes; then
|
|
if { ac_try='./$ac_file'
|
|
{ (eval echo "$as_me:2064: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2067: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
cross_compiling=no
|
|
else
|
|
if test "$cross_compiling" = maybe; then
|
|
cross_compiling=yes
|
|
else
|
|
{ { echo "$as_me:2074: error: cannot run C compiled programs.
|
|
If you meant to cross compile, use \`--host'." >&5
|
|
echo "$as_me: error: cannot run C compiled programs.
|
|
If you meant to cross compile, use \`--host'." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
fi
|
|
fi
|
|
echo "$as_me:2082: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
|
|
rm -f a.out a.exe conftest$ac_cv_exeext
|
|
ac_clean_files=$ac_clean_files_save
|
|
# Check the compiler produces executables we can run. If not, either
|
|
# the compiler is broken, or we cross compile.
|
|
echo "$as_me:2089: checking whether we are cross compiling" >&5
|
|
echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
|
|
echo "$as_me:2091: result: $cross_compiling" >&5
|
|
echo "${ECHO_T}$cross_compiling" >&6
|
|
|
|
echo "$as_me:2094: checking for executable suffix" >&5
|
|
echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
|
|
if { (eval echo "$as_me:2096: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2099: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; then
|
|
# If both `conftest.exe' and `conftest' are `present' (well, observable)
|
|
# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
|
|
# work properly (i.e., refer to `conftest.exe'), while it won't with
|
|
# `rm'.
|
|
for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
|
|
case $ac_file in
|
|
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
|
|
*.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
|
|
export ac_cv_exeext
|
|
break;;
|
|
* ) break;;
|
|
esac
|
|
done
|
|
else
|
|
{ { echo "$as_me:2115: error: cannot compute EXEEXT: cannot compile and link" >&5
|
|
echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
rm -f conftest$ac_cv_exeext
|
|
echo "$as_me:2121: result: $ac_cv_exeext" >&5
|
|
echo "${ECHO_T}$ac_cv_exeext" >&6
|
|
|
|
rm -f conftest.$ac_ext
|
|
EXEEXT=$ac_cv_exeext
|
|
ac_exeext=$EXEEXT
|
|
echo "$as_me:2127: checking for object suffix" >&5
|
|
echo $ECHO_N "checking for object suffix... $ECHO_C" >&6
|
|
if test "${ac_cv_objext+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2133 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.o conftest.obj
|
|
if { (eval echo "$as_me:2145: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2148: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; then
|
|
for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
|
|
case $ac_file in
|
|
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;;
|
|
*) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
|
|
break;;
|
|
esac
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
{ { echo "$as_me:2160: error: cannot compute OBJEXT: cannot compile" >&5
|
|
echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
rm -f conftest.$ac_cv_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:2167: result: $ac_cv_objext" >&5
|
|
echo "${ECHO_T}$ac_cv_objext" >&6
|
|
OBJEXT=$ac_cv_objext
|
|
ac_objext=$OBJEXT
|
|
echo "$as_me:2171: checking whether we are using the GNU C compiler" >&5
|
|
echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
|
|
if test "${ac_cv_c_compiler_gnu+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2177 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
#ifndef __GNUC__
|
|
choke me
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2192: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2195: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2198: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2201: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_compiler_gnu=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_compiler_gnu=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
ac_cv_c_compiler_gnu=$ac_compiler_gnu
|
|
|
|
fi
|
|
echo "$as_me:2213: result: $ac_cv_c_compiler_gnu" >&5
|
|
echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
|
|
GCC=`test $ac_compiler_gnu = yes && echo yes`
|
|
ac_test_CFLAGS=${CFLAGS+set}
|
|
ac_save_CFLAGS=$CFLAGS
|
|
CFLAGS="-g"
|
|
echo "$as_me:2219: checking whether $CC accepts -g" >&5
|
|
echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_cc_g+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2225 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2237: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2240: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2243: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2246: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_prog_cc_g=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_prog_cc_g=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:2256: result: $ac_cv_prog_cc_g" >&5
|
|
echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
|
|
if test "$ac_test_CFLAGS" = set; then
|
|
CFLAGS=$ac_save_CFLAGS
|
|
elif test $ac_cv_prog_cc_g = yes; then
|
|
if test "$GCC" = yes; then
|
|
CFLAGS="-g -O2"
|
|
else
|
|
CFLAGS="-g"
|
|
fi
|
|
else
|
|
if test "$GCC" = yes; then
|
|
CFLAGS="-O2"
|
|
else
|
|
CFLAGS=
|
|
fi
|
|
fi
|
|
# Some people use a C++ compiler to compile C. Since we use `exit',
|
|
# in C++ we need to declare it. In case someone uses the same compiler
|
|
# for both compiling C and C++ we need to have the C++ compiler decide
|
|
# the declaration of exit, since it's the most demanding environment.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#ifndef __cplusplus
|
|
choke me
|
|
#endif
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2283: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2286: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2289: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2292: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
for ac_declaration in \
|
|
''\
|
|
'#include <stdlib.h>' \
|
|
'extern "C" void std::exit (int) throw (); using std::exit;' \
|
|
'extern "C" void std::exit (int); using std::exit;' \
|
|
'extern "C" void exit (int) throw ();' \
|
|
'extern "C" void exit (int);' \
|
|
'void exit (int);'
|
|
do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2304 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
$ac_declaration
|
|
int
|
|
main ()
|
|
{
|
|
exit (42);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2317: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2320: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2323: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2326: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
continue
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2336 "configure"
|
|
#include "confdefs.h"
|
|
$ac_declaration
|
|
int
|
|
main ()
|
|
{
|
|
exit (42);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2348: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2351: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2354: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2357: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
rm -f conftest*
|
|
if test -n "$ac_declaration"; then
|
|
echo '#ifdef __cplusplus' >>confdefs.h
|
|
echo $ac_declaration >>confdefs.h
|
|
echo '#endif' >>confdefs.h
|
|
fi
|
|
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
ac_ext=c
|
|
ac_cpp='$CPP $CPPFLAGS'
|
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
|
|
echo "$as_me:2384: checking for POSIXized ISC" >&5
|
|
echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6
|
|
if test -d /etc/conf/kconfig.d &&
|
|
grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
|
|
then
|
|
echo "$as_me:2389: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
ISC=yes # If later tests want to check for ISC.
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define _POSIX_SOURCE 1
|
|
EOF
|
|
|
|
if test "$GCC" = yes; then
|
|
CC="$CC -posix"
|
|
else
|
|
CC="$CC -Xp"
|
|
fi
|
|
else
|
|
echo "$as_me:2403: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
ISC=
|
|
fi
|
|
|
|
ac_ext=c
|
|
ac_cpp='$CPP $CPPFLAGS'
|
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
echo "$as_me:2413: checking how to run the C preprocessor" >&5
|
|
echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
|
|
# On Suns, sometimes $CPP names a directory.
|
|
if test -n "$CPP" && test -d "$CPP"; then
|
|
CPP=
|
|
fi
|
|
if test -z "$CPP"; then
|
|
if test "${ac_cv_prog_CPP+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
# Double quotes because CPP needs to be expanded
|
|
for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
|
|
do
|
|
ac_preproc_ok=false
|
|
for ac_c_preproc_warn_flag in '' yes
|
|
do
|
|
# Use a header file that comes with gcc, so configuring glibc
|
|
# with a fresh cross-compiler works.
|
|
# On the NeXT, cc -E runs the code through the compiler's parser,
|
|
# not just through cpp. "Syntax error" is here to catch this case.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2434 "configure"
|
|
#include "confdefs.h"
|
|
#include <assert.h>
|
|
Syntax error
|
|
_ACEOF
|
|
if { (eval echo "$as_me:2439: \"$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:2445: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
# Broken: fails on valid input.
|
|
continue
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
# OK, works on sane cases. Now check whether non-existent headers
|
|
# can be detected and how.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2468 "configure"
|
|
#include "confdefs.h"
|
|
#include <ac_nonexistent.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:2472: \"$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:2478: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
# Broken: success on invalid input.
|
|
continue
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
# Passes both tests.
|
|
ac_preproc_ok=:
|
|
break
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
done
|
|
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
|
|
rm -f conftest.err conftest.$ac_ext
|
|
if $ac_preproc_ok; then
|
|
break
|
|
fi
|
|
|
|
done
|
|
ac_cv_prog_CPP=$CPP
|
|
|
|
fi
|
|
CPP=$ac_cv_prog_CPP
|
|
else
|
|
ac_cv_prog_CPP=$CPP
|
|
fi
|
|
echo "$as_me:2515: result: $CPP" >&5
|
|
echo "${ECHO_T}$CPP" >&6
|
|
ac_preproc_ok=false
|
|
for ac_c_preproc_warn_flag in '' yes
|
|
do
|
|
# Use a header file that comes with gcc, so configuring glibc
|
|
# with a fresh cross-compiler works.
|
|
# On the NeXT, cc -E runs the code through the compiler's parser,
|
|
# not just through cpp. "Syntax error" is here to catch this case.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2525 "configure"
|
|
#include "confdefs.h"
|
|
#include <assert.h>
|
|
Syntax error
|
|
_ACEOF
|
|
if { (eval echo "$as_me:2530: \"$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:2536: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
# Broken: fails on valid input.
|
|
continue
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
# OK, works on sane cases. Now check whether non-existent headers
|
|
# can be detected and how.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2559 "configure"
|
|
#include "confdefs.h"
|
|
#include <ac_nonexistent.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:2563: \"$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:2569: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
# Broken: success on invalid input.
|
|
continue
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
# Passes both tests.
|
|
ac_preproc_ok=:
|
|
break
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
done
|
|
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
|
|
rm -f conftest.err conftest.$ac_ext
|
|
if $ac_preproc_ok; then
|
|
:
|
|
else
|
|
{ { echo "$as_me:2597: error: C preprocessor \"$CPP\" fails sanity check" >&5
|
|
echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
ac_ext=c
|
|
ac_cpp='$CPP $CPPFLAGS'
|
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
|
|
echo "$as_me:2608: checking for minix/config.h" >&5
|
|
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
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2614 "configure"
|
|
#include "confdefs.h"
|
|
#include <minix/config.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:2618: \"$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:2624: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
ac_cv_header_minix_config_h=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_header_minix_config_h=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:2643: result: $ac_cv_header_minix_config_h" >&5
|
|
echo "${ECHO_T}$ac_cv_header_minix_config_h" >&6
|
|
if test $ac_cv_header_minix_config_h = yes; then
|
|
MINIX=yes
|
|
else
|
|
MINIX=
|
|
fi
|
|
|
|
if test "$MINIX" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define _POSIX_SOURCE 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define _POSIX_1_SOURCE 2
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define _MINIX 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
case $host_os in
|
|
*cygwin* ) CYGWIN=yes;;
|
|
* ) CYGWIN=no;;
|
|
esac
|
|
|
|
case $host_os in
|
|
*mingw32* ) MINGW32=yes;;
|
|
* ) MINGW32=no;;
|
|
esac
|
|
|
|
# Check whether --enable-largefile or --disable-largefile was given.
|
|
if test "${enable_largefile+set}" = set; then
|
|
enableval="$enable_largefile"
|
|
|
|
fi;
|
|
if test "$enable_largefile" != no; then
|
|
|
|
echo "$as_me:2684: checking for special C compiler options needed for large files" >&5
|
|
echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6
|
|
if test "${ac_cv_sys_largefile_CC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_sys_largefile_CC=no
|
|
if test "$GCC" != yes; then
|
|
ac_save_CC=$CC
|
|
while :; do
|
|
# IRIX 6.2 and later do not support large files by default,
|
|
# so use the C compiler's -n32 option if that helps.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2696 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
/* Check that off_t can represent 2**63 - 1 correctly.
|
|
We can't simply define LARGE_OFF_T to be 9223372036854775807,
|
|
since some C++ compilers masquerading as C compilers
|
|
incorrectly reject 9223372036854775807. */
|
|
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
|
|
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
|
|
&& LARGE_OFF_T % 2147483647 == 1)
|
|
? 1 : -1];
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2716: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2719: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2722: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2725: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext
|
|
CC="$CC -n32"
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2735: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2738: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2741: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2744: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_sys_largefile_CC=' -n32'; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext
|
|
break
|
|
done
|
|
CC=$ac_save_CC
|
|
rm -f conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:2758: result: $ac_cv_sys_largefile_CC" >&5
|
|
echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6
|
|
if test "$ac_cv_sys_largefile_CC" != no; then
|
|
CC=$CC$ac_cv_sys_largefile_CC
|
|
fi
|
|
|
|
echo "$as_me:2764: checking for _FILE_OFFSET_BITS value needed for large files" >&5
|
|
echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6
|
|
if test "${ac_cv_sys_file_offset_bits+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
while :; do
|
|
ac_cv_sys_file_offset_bits=no
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2772 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
/* Check that off_t can represent 2**63 - 1 correctly.
|
|
We can't simply define LARGE_OFF_T to be 9223372036854775807,
|
|
since some C++ compilers masquerading as C compilers
|
|
incorrectly reject 9223372036854775807. */
|
|
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
|
|
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
|
|
&& LARGE_OFF_T % 2147483647 == 1)
|
|
? 1 : -1];
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2792: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2795: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2798: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2801: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2810 "configure"
|
|
#include "confdefs.h"
|
|
#define _FILE_OFFSET_BITS 64
|
|
#include <sys/types.h>
|
|
/* Check that off_t can represent 2**63 - 1 correctly.
|
|
We can't simply define LARGE_OFF_T to be 9223372036854775807,
|
|
since some C++ compilers masquerading as C compilers
|
|
incorrectly reject 9223372036854775807. */
|
|
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
|
|
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
|
|
&& LARGE_OFF_T % 2147483647 == 1)
|
|
? 1 : -1];
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2831: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2834: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2837: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2840: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_sys_file_offset_bits=64; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
break
|
|
done
|
|
fi
|
|
echo "$as_me:2851: result: $ac_cv_sys_file_offset_bits" >&5
|
|
echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6
|
|
if test "$ac_cv_sys_file_offset_bits" != no; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits
|
|
EOF
|
|
|
|
fi
|
|
rm -f conftest*
|
|
echo "$as_me:2861: checking for _LARGE_FILES value needed for large files" >&5
|
|
echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6
|
|
if test "${ac_cv_sys_large_files+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
while :; do
|
|
ac_cv_sys_large_files=no
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2869 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
/* Check that off_t can represent 2**63 - 1 correctly.
|
|
We can't simply define LARGE_OFF_T to be 9223372036854775807,
|
|
since some C++ compilers masquerading as C compilers
|
|
incorrectly reject 9223372036854775807. */
|
|
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
|
|
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
|
|
&& LARGE_OFF_T % 2147483647 == 1)
|
|
? 1 : -1];
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2889: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2892: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2895: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2898: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 2907 "configure"
|
|
#include "confdefs.h"
|
|
#define _LARGE_FILES 1
|
|
#include <sys/types.h>
|
|
/* Check that off_t can represent 2**63 - 1 correctly.
|
|
We can't simply define LARGE_OFF_T to be 9223372036854775807,
|
|
since some C++ compilers masquerading as C compilers
|
|
incorrectly reject 9223372036854775807. */
|
|
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
|
|
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
|
|
&& LARGE_OFF_T % 2147483647 == 1)
|
|
? 1 : -1];
|
|
int
|
|
main ()
|
|
{
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:2928: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2931: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:2934: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:2937: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_sys_large_files=1; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
break
|
|
done
|
|
fi
|
|
echo "$as_me:2948: result: $ac_cv_sys_large_files" >&5
|
|
echo "${ECHO_T}$ac_cv_sys_large_files" >&6
|
|
if test "$ac_cv_sys_large_files" != no; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define _LARGE_FILES $ac_cv_sys_large_files
|
|
EOF
|
|
|
|
fi
|
|
rm -f conftest*
|
|
fi
|
|
|
|
SIGNAMES_H=lsignames.h
|
|
|
|
if test "x$cross_compiling" = "xyes"; then
|
|
case "${host}" in
|
|
*-cygwin*)
|
|
cross_cache=${srcdir}/cross-build/cygwin32.cache
|
|
SIGNAMES_H='$(srcdir)/cross-build/win32sig.h'
|
|
;;
|
|
i[3456]86-*-beos*)
|
|
cross_cache=${srcdir}/cross-build/x86-beos.cache
|
|
SIGNAMES_H='${srcdir}/cross-build/beos-sig.h'
|
|
;;
|
|
*) echo "configure: cross-compiling for $host is not supported" >&2
|
|
;;
|
|
esac
|
|
if test -n "${cross_cache}" && test -r "${cross_cache}"; then
|
|
echo "loading cross-build cache file ${cross_cache}"
|
|
. ${cross_cache}
|
|
fi
|
|
unset cross_cache
|
|
fi
|
|
|
|
if test -z "$CC_FOR_BUILD"; then
|
|
if test "x$cross_compiling" = "xno"; then
|
|
CC_FOR_BUILD='$(CC)'
|
|
else
|
|
CC_FOR_BUILD=gcc
|
|
fi
|
|
fi
|
|
|
|
test -z "$CFLAGS" && CFLAGS=-g auto_cflags=1
|
|
|
|
test -n "$GCC" && test -n "$auto_cflags" && CFLAGS="$CFLAGS -O2"
|
|
|
|
if test "$opt_profiling" = "yes"; then
|
|
PROFILE_FLAGS=-pg
|
|
case "$host_os" in
|
|
solaris2*) ;;
|
|
*) opt_static_link=yes ;;
|
|
esac
|
|
DEBUG= MALLOC_DEBUG=
|
|
fi
|
|
|
|
if test "$opt_static_link" = yes; then
|
|
# if we're using gcc, add `-static' to LDFLAGS, except on Solaris >= 2
|
|
if test -n "$GCC" || test "$ac_cv_c_compiler_gnu" = "yes"; then
|
|
STATIC_LD="-static"
|
|
case "$host_os" in
|
|
solaris2*) ;;
|
|
*) LDFLAGS="$LDFLAGS -static" ;; # XXX experimental
|
|
esac
|
|
fi
|
|
fi
|
|
|
|
test -z "$CPPFLAGS_FOR_BUILD" && CPPFLAGS_FOR_BUILD="$CPPFLAGS"
|
|
test -z "$CFLAGS_FOR_BUILD" && CFLAGS_FOR_BUILD="-g"
|
|
|
|
if test $ac_cv_c_compiler_gnu = yes; then
|
|
echo "$as_me:3018: checking whether $CC needs -traditional" >&5
|
|
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
|
|
else
|
|
ac_pattern="Autoconf.*'x'"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3025 "configure"
|
|
#include "confdefs.h"
|
|
#include <sgtty.h>
|
|
Autoconf TIOCGETP
|
|
_ACEOF
|
|
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
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3040 "configure"
|
|
#include "confdefs.h"
|
|
#include <termio.h>
|
|
Autoconf TCGETA
|
|
_ACEOF
|
|
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
|
|
echo "$as_me:3053: result: $ac_cv_prog_gcc_traditional" >&5
|
|
echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6
|
|
if test $ac_cv_prog_gcc_traditional = yes; then
|
|
CC="$CC -traditional"
|
|
fi
|
|
fi
|
|
|
|
if test "$opt_readline" = yes && test "$opt_with_installed_readline" != "no"
|
|
then
|
|
# If the user specified --with-installed-readline=PREFIX and PREFIX
|
|
# is not `yes', set ac_cv_rl_prefix to PREFIX
|
|
test $opt_with_installed_readline != "yes" && ac_cv_rl_prefix=$opt_with_installed_readline
|
|
|
|
if test "X$bash_cv_termcap_lib" = "X"; then
|
|
_bash_needmsg=yes
|
|
else
|
|
echo "$as_me:3069: checking which library has the termcap functions" >&5
|
|
echo $ECHO_N "checking which library has the termcap functions... $ECHO_C" >&6
|
|
_bash_needmsg=
|
|
fi
|
|
if test "${bash_cv_termcap_lib+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
echo "$as_me:3076: checking for tgetent" >&5
|
|
echo $ECHO_N "checking for tgetent... $ECHO_C" >&6
|
|
if test "${ac_cv_func_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3082 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char tgetent (); 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 tgetent ();
|
|
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_tgetent) || defined (__stub___tgetent)
|
|
choke me
|
|
#else
|
|
f = tgetent;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:3113: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3116: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3119: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3122: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_tgetent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_tgetent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:3132: result: $ac_cv_func_tgetent" >&5
|
|
echo "${ECHO_T}$ac_cv_func_tgetent" >&6
|
|
if test $ac_cv_func_tgetent = yes; then
|
|
bash_cv_termcap_lib=libc
|
|
else
|
|
echo "$as_me:3137: checking for tgetent in -ltermcap" >&5
|
|
echo $ECHO_N "checking for tgetent in -ltermcap... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_termcap_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-ltermcap $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3145 "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 tgetent ();
|
|
int
|
|
main ()
|
|
{
|
|
tgetent ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:3164: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3167: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3170: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3173: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_termcap_tgetent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_termcap_tgetent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:3184: result: $ac_cv_lib_termcap_tgetent" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_termcap_tgetent" >&6
|
|
if test $ac_cv_lib_termcap_tgetent = yes; then
|
|
bash_cv_termcap_lib=libtermcap
|
|
else
|
|
echo "$as_me:3189: checking for tgetent in -ltinfo" >&5
|
|
echo $ECHO_N "checking for tgetent in -ltinfo... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_tinfo_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-ltinfo $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3197 "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 tgetent ();
|
|
int
|
|
main ()
|
|
{
|
|
tgetent ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:3216: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3219: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3222: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3225: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_tinfo_tgetent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_tinfo_tgetent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:3236: result: $ac_cv_lib_tinfo_tgetent" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_tinfo_tgetent" >&6
|
|
if test $ac_cv_lib_tinfo_tgetent = yes; then
|
|
bash_cv_termcap_lib=libtinfo
|
|
else
|
|
echo "$as_me:3241: checking for tgetent in -lcurses" >&5
|
|
echo $ECHO_N "checking for tgetent in -lcurses... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_curses_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lcurses $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3249 "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 tgetent ();
|
|
int
|
|
main ()
|
|
{
|
|
tgetent ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:3268: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3271: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3274: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3277: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_curses_tgetent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_curses_tgetent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:3288: result: $ac_cv_lib_curses_tgetent" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_curses_tgetent" >&6
|
|
if test $ac_cv_lib_curses_tgetent = yes; then
|
|
bash_cv_termcap_lib=libcurses
|
|
else
|
|
echo "$as_me:3293: checking for tgetent in -lncurses" >&5
|
|
echo $ECHO_N "checking for tgetent in -lncurses... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_ncurses_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lncurses $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3301 "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 tgetent ();
|
|
int
|
|
main ()
|
|
{
|
|
tgetent ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:3320: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3323: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3326: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3329: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_ncurses_tgetent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_ncurses_tgetent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:3340: result: $ac_cv_lib_ncurses_tgetent" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_ncurses_tgetent" >&6
|
|
if test $ac_cv_lib_ncurses_tgetent = yes; then
|
|
bash_cv_termcap_lib=libncurses
|
|
else
|
|
bash_cv_termcap_lib=gnutermcap
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "X$_bash_needmsg" = "Xyes"; then
|
|
echo "$as_me:3359: checking which library has the termcap functions" >&5
|
|
echo $ECHO_N "checking which library has the termcap functions... $ECHO_C" >&6
|
|
fi
|
|
echo "$as_me:3362: result: using $bash_cv_termcap_lib" >&5
|
|
echo "${ECHO_T}using $bash_cv_termcap_lib" >&6
|
|
if test $bash_cv_termcap_lib = gnutermcap && test -z "$prefer_curses"; then
|
|
LDFLAGS="$LDFLAGS -L./lib/termcap"
|
|
TERMCAP_LIB="./lib/termcap/libtermcap.a"
|
|
TERMCAP_DEP="./lib/termcap/libtermcap.a"
|
|
elif test $bash_cv_termcap_lib = libtermcap && test -z "$prefer_curses"; then
|
|
TERMCAP_LIB=-ltermcap
|
|
TERMCAP_DEP=
|
|
elif test $bash_cv_termcap_lib = libtinfo; then
|
|
TERMCAP_LIB=-ltinfo
|
|
TERMCAP_DEP=
|
|
elif test $bash_cv_termcap_lib = libncurses; then
|
|
TERMCAP_LIB=-lncurses
|
|
TERMCAP_DEP=
|
|
elif test $bash_cv_termcap_lib = libc; then
|
|
TERMCAP_LIB=
|
|
TERMCAP_DEP=
|
|
else
|
|
TERMCAP_LIB=-lcurses
|
|
TERMCAP_DEP=
|
|
fi
|
|
|
|
echo "$as_me:3385: checking version of installed readline library" >&5
|
|
echo $ECHO_N "checking version of installed readline library... $ECHO_C" >&6
|
|
|
|
# What a pain in the ass this is.
|
|
|
|
# save cpp and ld options
|
|
_save_CFLAGS="$CFLAGS"
|
|
_save_LDFLAGS="$LDFLAGS"
|
|
_save_LIBS="$LIBS"
|
|
|
|
# Don't set ac_cv_rl_prefix if the caller has already assigned a value. This
|
|
# allows the caller to do something like $_rl_prefix=$withval if the user
|
|
# specifies --with-installed-readline=PREFIX as an argument to configure
|
|
|
|
if test -z "$ac_cv_rl_prefix"; then
|
|
test "x$prefix" = xNONE && ac_cv_rl_prefix=$ac_default_prefix || ac_cv_rl_prefix=${prefix}
|
|
fi
|
|
|
|
eval ac_cv_rl_includedir=${ac_cv_rl_prefix}/include
|
|
eval ac_cv_rl_libdir=${ac_cv_rl_prefix}/lib
|
|
|
|
LIBS="$LIBS -lreadline ${TERMCAP_LIB}"
|
|
CFLAGS="$CFLAGS -I${ac_cv_rl_includedir}"
|
|
LDFLAGS="$LDFLAGS -L${ac_cv_rl_libdir}"
|
|
|
|
if test "${ac_cv_rl_version+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
ac_cv_rl_version='4.2'
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3417 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <readline/readline.h>
|
|
|
|
main()
|
|
{
|
|
FILE *fp;
|
|
fp = fopen("conftest.rlv", "w");
|
|
if (fp == 0) exit(1);
|
|
fprintf(fp, "%s\n", rl_library_version ? rl_library_version : "0.0");
|
|
fclose(fp);
|
|
exit(0);
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:3435: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3438: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:3440: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3443: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_rl_version=`cat conftest.rlv`
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_rl_version='0.0'
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
CFLAGS="$_save_CFLAGS"
|
|
LDFLAGS="$_save_LDFLAGS"
|
|
LIBS="$_save_LIBS"
|
|
|
|
RL_MAJOR=0
|
|
RL_MINOR=0
|
|
|
|
# (
|
|
case "$ac_cv_rl_version" in
|
|
2*|3*|4*|5*|6*|7*|8*|9*)
|
|
RL_MAJOR=`echo $ac_cv_rl_version | sed 's:\..*$::'`
|
|
RL_MINOR=`echo $ac_cv_rl_version | sed -e 's:^.*\.::' -e 's:[a-zA-Z]*$::'`
|
|
;;
|
|
esac
|
|
|
|
# (((
|
|
case $RL_MAJOR in
|
|
[0-9][0-9]) _RL_MAJOR=$RL_MAJOR ;;
|
|
[0-9]) _RL_MAJOR=0$RL_MAJOR ;;
|
|
*) _RL_MAJOR=00 ;;
|
|
esac
|
|
|
|
# (((
|
|
case $RL_MINOR in
|
|
[0-9][0-9]) _RL_MINOR=$RL_MINOR ;;
|
|
[0-9]) _RL_MINOR=0$RL_MINOR ;;
|
|
*) _RL_MINOR=00 ;;
|
|
esac
|
|
|
|
RL_VERSION="0x${_RL_MAJOR}${_RL_MINOR}"
|
|
|
|
# Readline versions greater than 4.2 have these defines in readline.h
|
|
|
|
if test $ac_cv_rl_version = '0.0' ; then
|
|
{ echo "$as_me:3490: WARNING: Could not test version of installed readline library." >&5
|
|
echo "$as_me: WARNING: Could not test version of installed readline library." >&2;}
|
|
elif test $RL_MAJOR -gt 4 || { test $RL_MAJOR = 4 && test $RL_MINOR -gt 2 ; } ; then
|
|
# set these for use by the caller
|
|
RL_PREFIX=$ac_cv_rl_prefix
|
|
RL_LIBDIR=$ac_cv_rl_libdir
|
|
RL_INCLUDEDIR=$ac_cv_rl_includedir
|
|
echo "$as_me:3497: result: $ac_cv_rl_version" >&5
|
|
echo "${ECHO_T}$ac_cv_rl_version" >&6
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define RL_READLINE_VERSION $RL_VERSION
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define RL_VERSION_MAJOR $RL_MAJOR
|
|
EOF
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define RL_VERSION_MINOR $RL_MINOR
|
|
EOF
|
|
|
|
# set these for use by the caller
|
|
RL_PREFIX=$ac_cv_rl_prefix
|
|
RL_LIBDIR=$ac_cv_rl_libdir
|
|
RL_INCLUDEDIR=$ac_cv_rl_includedir
|
|
|
|
echo "$as_me:3518: result: $ac_cv_rl_version" >&5
|
|
echo "${ECHO_T}$ac_cv_rl_version" >&6
|
|
|
|
fi
|
|
|
|
case "$ac_cv_rl_version" in
|
|
5*|6*|7*|8*|9*) ;;
|
|
*) opt_with_installed_readline=no
|
|
{ echo "$as_me:3526: WARNING: installed readline library is too old to be linked with bash" >&5
|
|
echo "$as_me: WARNING: installed readline library is too old to be linked with bash" >&2;}
|
|
{ echo "$as_me:3528: WARNING: using private bash version" >&5
|
|
echo "$as_me: WARNING: using private bash version" >&2;}
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
if test $opt_readline = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define READLINE 1
|
|
EOF
|
|
|
|
READLINE_LIB=-lreadline
|
|
if test "$opt_with_installed_readline" != "no" ; then
|
|
case "$opt_with_installed_readline" in
|
|
yes) RL_INCLUDE= ;;
|
|
*) case "$RL_INCLUDEDIR" in
|
|
/usr/include) ;;
|
|
*) RL_INCLUDE='-I${RL_INCLUDEDIR}' ;;
|
|
esac
|
|
;;
|
|
esac
|
|
READLINE_DEP=
|
|
else
|
|
RL_LIBDIR='$(dot)/$(LIBSUBDIR)/readline'
|
|
READLINE_DEP='$(READLINE_LIBRARY)'
|
|
fi
|
|
else
|
|
RL_LIBDIR='$(dot)/$(LIBSUBDIR)/readline'
|
|
READLINE_LIB= READLINE_DEP=
|
|
fi
|
|
if test $opt_history = yes || test $opt_bang_history = yes; then
|
|
if test $opt_history = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HISTORY 1
|
|
EOF
|
|
|
|
fi
|
|
if test $opt_bang_history = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define BANG_HISTORY 1
|
|
EOF
|
|
|
|
fi
|
|
HISTORY_LIB=-lhistory
|
|
if test "$opt_with_installed_readline" != "no"; then
|
|
HIST_LIBDIR=$RL_LIBDIR
|
|
HISTORY_DEP=
|
|
case "$opt_with_installed_readline" in
|
|
yes) RL_INCLUDE= ;;
|
|
*) case "$RL_INCLUDEDIR" in
|
|
/usr/include) ;;
|
|
*) RL_INCLUDE='-I${RL_INCLUDEDIR}' ;;
|
|
esac
|
|
;;
|
|
esac
|
|
else
|
|
HIST_LIBDIR='$(dot)/$(LIBSUBDIR)/readline'
|
|
HISTORY_DEP='$(HISTORY_LIBRARY)'
|
|
fi
|
|
else
|
|
HIST_LIBDIR='$(dot)/$(LIBSUBDIR)/readline'
|
|
HISTORY_LIB= HISTORY_DEP=
|
|
fi
|
|
|
|
# Find a good install program. We prefer a C program (faster),
|
|
# so one script is as good as another. But avoid the broken or
|
|
# incompatible versions:
|
|
# SysV /etc/install, /usr/sbin/install
|
|
# SunOS /usr/etc/install
|
|
# IRIX /sbin/install
|
|
# AIX /bin/install
|
|
# AmigaOS /C/install, which installs bootblocks on floppy discs
|
|
# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
|
|
# AFS /usr/afsws/bin/install, which mishandles nonexistent args
|
|
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
|
# ./install, which can be erroneously created by make from ./install.sh.
|
|
echo "$as_me:3604: checking for a BSD compatible install" >&5
|
|
echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
|
|
if test -z "$INSTALL"; then
|
|
if test "${ac_cv_path_install+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
for ac_dir in $PATH; do
|
|
IFS=$ac_save_IFS
|
|
# Account for people who put trailing slashes in PATH elements.
|
|
case $ac_dir/ in
|
|
/ | ./ | .// | /cC/* \
|
|
| /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* \
|
|
| /usr/ucb/* ) ;;
|
|
*)
|
|
# OSF1 and SCO ODT 3.0 have their own names for install.
|
|
# Don't use installbsd from OSF since it installs stuff as root
|
|
# by default.
|
|
for ac_prog in ginstall scoinst install; do
|
|
if $as_executable_p "$ac_dir/$ac_prog"; then
|
|
if test $ac_prog = install &&
|
|
grep dspmsg "$ac_dir/$ac_prog" >/dev/null 2>&1; then
|
|
# AIX install. It has an incompatible calling convention.
|
|
:
|
|
elif test $ac_prog = install &&
|
|
grep pwplus "$ac_dir/$ac_prog" >/dev/null 2>&1; then
|
|
# program-specific install script used by HP pwplus--don't use.
|
|
:
|
|
else
|
|
ac_cv_path_install="$ac_dir/$ac_prog -c"
|
|
break 2
|
|
fi
|
|
fi
|
|
done
|
|
;;
|
|
esac
|
|
done
|
|
|
|
fi
|
|
if test "${ac_cv_path_install+set}" = set; then
|
|
INSTALL=$ac_cv_path_install
|
|
else
|
|
# As a last resort, use the slow shell script. We don't cache a
|
|
# path for INSTALL within a source directory, because that will
|
|
# break other packages using the cache if that directory is
|
|
# removed, or if the path is relative.
|
|
INSTALL=$ac_install_sh
|
|
fi
|
|
fi
|
|
echo "$as_me:3653: result: $INSTALL" >&5
|
|
echo "${ECHO_T}$INSTALL" >&6
|
|
|
|
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
|
|
# It thinks the first close brace ends the variable substitution.
|
|
test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
|
|
|
|
test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
|
|
|
|
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
|
|
|
# Extract the first word of "ar", so it can be a program name with args.
|
|
set dummy ar; ac_word=$2
|
|
echo "$as_me:3666: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_AR+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$AR"; then
|
|
ac_cv_prog_AR="$AR" # 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_AR=""
|
|
echo "$as_me:3681: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
test -z "$ac_cv_prog_AR" && ac_cv_prog_AR="ar"
|
|
fi
|
|
fi
|
|
AR=$ac_cv_prog_AR
|
|
if test -n "$AR"; then
|
|
echo "$as_me:3690: result: $AR" >&5
|
|
echo "${ECHO_T}$AR" >&6
|
|
else
|
|
echo "$as_me:3693: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$ARFLAGS" || ARFLAGS="cr"
|
|
if test -n "$ac_tool_prefix"; then
|
|
# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
|
|
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
|
|
echo "$as_me:3701: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_RANLIB+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$RANLIB"; then
|
|
ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
|
|
echo "$as_me:3716: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
RANLIB=$ac_cv_prog_RANLIB
|
|
if test -n "$RANLIB"; then
|
|
echo "$as_me:3724: result: $RANLIB" >&5
|
|
echo "${ECHO_T}$RANLIB" >&6
|
|
else
|
|
echo "$as_me:3727: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
fi
|
|
if test -z "$ac_cv_prog_RANLIB"; then
|
|
ac_ct_RANLIB=$RANLIB
|
|
# Extract the first word of "ranlib", so it can be a program name with args.
|
|
set dummy ranlib; ac_word=$2
|
|
echo "$as_me:3736: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$ac_ct_RANLIB"; then
|
|
ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_ac_ct_RANLIB="ranlib"
|
|
echo "$as_me:3751: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
|
|
fi
|
|
fi
|
|
ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
|
|
if test -n "$ac_ct_RANLIB"; then
|
|
echo "$as_me:3760: result: $ac_ct_RANLIB" >&5
|
|
echo "${ECHO_T}$ac_ct_RANLIB" >&6
|
|
else
|
|
echo "$as_me:3763: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
RANLIB=$ac_ct_RANLIB
|
|
else
|
|
RANLIB="$ac_cv_prog_RANLIB"
|
|
fi
|
|
|
|
for ac_prog in 'bison -y' byacc
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo "$as_me:3776: checking for $ac_word" >&5
|
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_YACC+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -n "$YACC"; then
|
|
ac_cv_prog_YACC="$YACC" # Let the user override the test.
|
|
else
|
|
ac_save_IFS=$IFS; IFS=$ac_path_separator
|
|
ac_dummy="$PATH"
|
|
for ac_dir in $ac_dummy; do
|
|
IFS=$ac_save_IFS
|
|
test -z "$ac_dir" && ac_dir=.
|
|
$as_executable_p "$ac_dir/$ac_word" || continue
|
|
ac_cv_prog_YACC="$ac_prog"
|
|
echo "$as_me:3791: found $ac_dir/$ac_word" >&5
|
|
break
|
|
done
|
|
|
|
fi
|
|
fi
|
|
YACC=$ac_cv_prog_YACC
|
|
if test -n "$YACC"; then
|
|
echo "$as_me:3799: result: $YACC" >&5
|
|
echo "${ECHO_T}$YACC" >&6
|
|
else
|
|
echo "$as_me:3802: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
test -n "$YACC" && break
|
|
done
|
|
test -n "$YACC" || YACC="yacc"
|
|
|
|
echo "$as_me:3810: checking whether ${MAKE-make} sets \${MAKE}" >&5
|
|
echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
|
|
set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
|
|
if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.make <<\EOF
|
|
all:
|
|
@echo 'ac_maketemp="${MAKE}"'
|
|
EOF
|
|
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
|
|
eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
|
|
if test -n "$ac_maketemp"; then
|
|
eval ac_cv_prog_make_${ac_make}_set=yes
|
|
else
|
|
eval ac_cv_prog_make_${ac_make}_set=no
|
|
fi
|
|
rm -f conftest.make
|
|
fi
|
|
if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
|
|
echo "$as_me:3830: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
SET_MAKE=
|
|
else
|
|
echo "$as_me:3834: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
SET_MAKE="MAKE=${MAKE-make}"
|
|
fi
|
|
|
|
case "$host_os" in
|
|
opennt*|interix*) MAKE_SHELL="$INTERIX_ROOT/bin/sh" ;;
|
|
*) MAKE_SHELL=/bin/sh ;;
|
|
esac
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define _GNU_SOURCE 1
|
|
EOF
|
|
|
|
echo "$as_me:3848: checking for $CC option to accept ANSI C" >&5
|
|
echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
|
|
if test "${ac_cv_prog_cc_stdc+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_prog_cc_stdc=no
|
|
ac_save_CC=$CC
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3856 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
|
|
struct buf { int x; };
|
|
FILE * (*rcsopen) (struct buf *, struct stat *, int);
|
|
static char *e (p, i)
|
|
char **p;
|
|
int i;
|
|
{
|
|
return p[i];
|
|
}
|
|
static char *f (char * (*g) (char **, int), char **p, ...)
|
|
{
|
|
char *s;
|
|
va_list v;
|
|
va_start (v,p);
|
|
s = g (p, va_arg (v,int));
|
|
va_end (v);
|
|
return s;
|
|
}
|
|
int test (int i, double x);
|
|
struct s1 {int (*f) (int a);};
|
|
struct s2 {int (*f) (double a);};
|
|
int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
|
|
int argc;
|
|
char **argv;
|
|
int
|
|
main ()
|
|
{
|
|
return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
# Don't try gcc -ansi; that turns off useful extensions and
|
|
# breaks some systems' header files.
|
|
# AIX -qlanglvl=ansi
|
|
# Ultrix and OSF/1 -std1
|
|
# HP-UX 10.20 and later -Ae
|
|
# HP-UX older versions -Aa -D_HPUX_SOURCE
|
|
# SVR4 -Xc -D__EXTENSIONS__
|
|
for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
|
|
do
|
|
CC="$ac_save_CC $ac_arg"
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:3905: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3908: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:3911: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:3914: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_prog_cc_stdc=$ac_arg
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext
|
|
done
|
|
rm -f conftest.$ac_ext conftest.$ac_objext
|
|
CC=$ac_save_CC
|
|
|
|
fi
|
|
|
|
case "x$ac_cv_prog_cc_stdc" in
|
|
x|xno)
|
|
echo "$as_me:3931: result: none needed" >&5
|
|
echo "${ECHO_T}none needed" >&6 ;;
|
|
*)
|
|
echo "$as_me:3934: result: $ac_cv_prog_cc_stdc" >&5
|
|
echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
|
|
CC="$CC $ac_cv_prog_cc_stdc" ;;
|
|
esac
|
|
|
|
echo "$as_me:3939: checking for an ANSI C-conforming const" >&5
|
|
echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
|
|
if test "${ac_cv_c_const+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 3945 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int
|
|
main ()
|
|
{
|
|
/* FIXME: Include the comments suggested by Paul. */
|
|
#ifndef __cplusplus
|
|
/* Ultrix mips cc rejects this. */
|
|
typedef int charset[2];
|
|
const charset x;
|
|
/* SunOS 4.1.1 cc rejects this. */
|
|
char const *const *ccp;
|
|
char **p;
|
|
/* NEC SVR4.0.2 mips cc rejects this. */
|
|
struct point {int x, y;};
|
|
static struct point const zero = {0,0};
|
|
/* AIX XL C 1.02.0.0 rejects this.
|
|
It does not let you subtract one const X* pointer from another in
|
|
an arm of an if-expression whose if-part is not a constant
|
|
expression */
|
|
const char *g = "string";
|
|
ccp = &g + (g ? g-g : 0);
|
|
/* HPUX 7.0 cc rejects these. */
|
|
++ccp;
|
|
p = (char**) ccp;
|
|
ccp = (char const *const *) p;
|
|
{ /* SCO 3.2v4 cc rejects this. */
|
|
char *t;
|
|
char const *s = 0 ? (char *) 0 : (char const *) 0;
|
|
|
|
*t++ = 0;
|
|
}
|
|
{ /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */
|
|
int x[] = {25, 17};
|
|
const int *foo = &x[0];
|
|
++foo;
|
|
}
|
|
{ /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
|
|
typedef const int *iptr;
|
|
iptr p = 0;
|
|
++p;
|
|
}
|
|
{ /* AIX XL C 1.02.0.0 rejects this saying
|
|
"k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
|
|
struct s { int j; const int *ap[3]; };
|
|
struct s *b; b->j = 5;
|
|
}
|
|
{ /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
|
|
const int foo = 10;
|
|
}
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:4003: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4006: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:4009: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4012: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_const=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_c_const=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4022: result: $ac_cv_c_const" >&5
|
|
echo "${ECHO_T}$ac_cv_c_const" >&6
|
|
if test $ac_cv_c_const = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define const
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:4032: checking for inline" >&5
|
|
echo $ECHO_N "checking for inline... $ECHO_C" >&6
|
|
if test "${ac_cv_c_inline+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_cv_c_inline=no
|
|
for ac_kw in inline __inline__ __inline; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4040 "configure"
|
|
#include "confdefs.h"
|
|
#ifndef __cplusplus
|
|
static $ac_kw int static_foo () {return 0; }
|
|
$ac_kw int foo () {return 0; }
|
|
#endif
|
|
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:4049: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4052: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:4055: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4058: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_inline=$ac_kw; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
|
|
fi
|
|
echo "$as_me:4069: result: $ac_cv_c_inline" >&5
|
|
echo "${ECHO_T}$ac_cv_c_inline" >&6
|
|
case $ac_cv_c_inline in
|
|
inline | yes) ;;
|
|
no)
|
|
cat >>confdefs.h <<\EOF
|
|
#define inline
|
|
EOF
|
|
;;
|
|
*) cat >>confdefs.h <<EOF
|
|
#define inline $ac_cv_c_inline
|
|
EOF
|
|
;;
|
|
esac
|
|
|
|
echo "$as_me:4084: checking whether byte ordering is bigendian" >&5
|
|
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
|
|
else
|
|
ac_cv_c_bigendian=unknown
|
|
# See if sys/param.h defines the BYTE_ORDER macro.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4092 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/param.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
#if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
|
|
bogus endian macros
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:4109: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4112: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:4115: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4118: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
# It does; now see whether it defined to BIG_ENDIAN or not.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4122 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/param.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
#if BYTE_ORDER != BIG_ENDIAN
|
|
not big endian
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:4139: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4142: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:4145: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4148: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_bigendian=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_c_bigendian=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
if test $ac_cv_c_bigendian = unknown; then
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:4164: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4169 "configure"
|
|
#include "confdefs.h"
|
|
int
|
|
main ()
|
|
{
|
|
/* Are we little or big endian? From Harbison&Steele. */
|
|
union
|
|
{
|
|
long l;
|
|
char c[sizeof (long)];
|
|
} u;
|
|
u.l = 1;
|
|
exit (u.c[sizeof (long) - 1] == 1);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:4185: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4188: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4190: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4193: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_bigendian=no
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_c_bigendian=yes
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
fi
|
|
echo "$as_me:4206: result: $ac_cv_c_bigendian" >&5
|
|
echo "${ECHO_T}$ac_cv_c_bigendian" >&6
|
|
if test $ac_cv_c_bigendian = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define WORDS_BIGENDIAN 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:4216: checking for preprocessor stringizing operator" >&5
|
|
echo $ECHO_N "checking for preprocessor stringizing operator... $ECHO_C" >&6
|
|
if test "${ac_cv_c_stringize+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4222 "configure"
|
|
#include "confdefs.h"
|
|
#define x(y) #y
|
|
|
|
char *s = x(teststring);
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "#teststring" >/dev/null 2>&1; then
|
|
ac_cv_c_stringize=no
|
|
else
|
|
ac_cv_c_stringize=yes
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:4237: result: $ac_cv_c_stringize" >&5
|
|
echo "${ECHO_T}$ac_cv_c_stringize" >&6
|
|
if test $ac_cv_c_stringize = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRINGIZE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:4247: checking for long double" >&5
|
|
echo $ECHO_N "checking for long double... $ECHO_C" >&6
|
|
if test "${ac_cv_c_long_double+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$GCC" = yes; then
|
|
ac_cv_c_long_double=yes
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:4256: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4261 "configure"
|
|
#include "confdefs.h"
|
|
int
|
|
main ()
|
|
{
|
|
/* The Stardent Vistra knows sizeof(long double), but does not
|
|
support it. */
|
|
long double foo = 0.0;
|
|
/* On Ultrix 4.3 cc, long double is 4 and double is 8. */
|
|
exit (sizeof (long double) < sizeof (double));
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:4274: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4277: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4279: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4282: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_long_double=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_c_long_double=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
fi
|
|
echo "$as_me:4295: result: $ac_cv_c_long_double" >&5
|
|
echo "${ECHO_T}$ac_cv_c_long_double" >&6
|
|
if test $ac_cv_c_long_double = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_LONG_DOUBLE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:4305: checking for function prototypes" >&5
|
|
echo $ECHO_N "checking for function prototypes... $ECHO_C" >&6
|
|
if test "$ac_cv_prog_cc_stdc" != no; then
|
|
echo "$as_me:4308: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define PROTOTYPES 1
|
|
EOF
|
|
|
|
else
|
|
echo "$as_me:4316: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
|
|
echo "$as_me:4320: checking for ANSI C header files" >&5
|
|
echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
|
|
if test "${ac_cv_header_stdc+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4326 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <float.h>
|
|
|
|
_ACEOF
|
|
if { (eval echo "$as_me:4334: \"$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:4340: \$? = $ac_status" >&5
|
|
(exit $ac_status); } >/dev/null; then
|
|
if test -s conftest.err; then
|
|
ac_cpp_err=$ac_c_preproc_warn_flag
|
|
else
|
|
ac_cpp_err=
|
|
fi
|
|
else
|
|
ac_cpp_err=yes
|
|
fi
|
|
if test -z "$ac_cpp_err"; then
|
|
ac_cv_header_stdc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4362 "configure"
|
|
#include "confdefs.h"
|
|
#include <string.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "memchr" >/dev/null 2>&1; then
|
|
:
|
|
else
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4380 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "free" >/dev/null 2>&1; then
|
|
:
|
|
else
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
|
|
if test "$cross_compiling" = yes; then
|
|
:
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4401 "configure"
|
|
#include "confdefs.h"
|
|
#include <ctype.h>
|
|
#if ((' ' & 0x0FF) == 0x020)
|
|
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
|
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
|
|
#else
|
|
# define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \
|
|
|| ('j' <= (c) && (c) <= 'r') \
|
|
|| ('s' <= (c) && (c) <= 'z'))
|
|
# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
|
|
#endif
|
|
|
|
#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
|
|
int
|
|
main ()
|
|
{
|
|
int i;
|
|
for (i = 0; i < 256; i++)
|
|
if (XOR (islower (i), ISLOWER (i))
|
|
|| toupper (i) != TOUPPER (i))
|
|
exit(2);
|
|
exit (0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:4427: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4430: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4432: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4435: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
:
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
fi
|
|
echo "$as_me:4448: result: $ac_cv_header_stdc" >&5
|
|
echo "${ECHO_T}$ac_cv_header_stdc" >&6
|
|
if test $ac_cv_header_stdc = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define STDC_HEADERS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
# On IRIX 5.3, sys/types and inttypes.h are conflicting.
|
|
|
|
for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
|
|
inttypes.h stdint.h unistd.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:4464: 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 4470 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:4476: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4479: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:4482: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4485: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4495: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:4505: checking whether char is unsigned" >&5
|
|
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
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4511 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !(((char) -1) < 0)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:4523: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4526: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:4529: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4532: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_char_unsigned=no
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_c_char_unsigned=yes
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4542: result: $ac_cv_c_char_unsigned" >&5
|
|
echo "${ECHO_T}$ac_cv_c_char_unsigned" >&6
|
|
if test $ac_cv_c_char_unsigned = yes && test "$GCC" != yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define __CHAR_UNSIGNED__ 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
ac_header_dirent=no
|
|
for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
|
|
as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
|
|
echo "$as_me:4554: checking for $ac_hdr that defines DIR" >&5
|
|
echo $ECHO_N "checking for $ac_hdr that defines DIR... $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 4560 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <$ac_hdr>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((DIR *) 0)
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:4575: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4578: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:4581: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4584: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4594: 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_hdr" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
ac_header_dirent=$ac_hdr; break
|
|
fi
|
|
|
|
done
|
|
# Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
|
|
if test $ac_header_dirent = dirent.h; then
|
|
echo "$as_me:4607: checking for opendir in -ldir" >&5
|
|
echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_dir_opendir+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-ldir $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4615 "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 opendir ();
|
|
int
|
|
main ()
|
|
{
|
|
opendir ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:4634: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4637: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4640: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4643: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_dir_opendir=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_dir_opendir=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:4654: result: $ac_cv_lib_dir_opendir" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6
|
|
if test $ac_cv_lib_dir_opendir = yes; then
|
|
LIBS="$LIBS -ldir"
|
|
fi
|
|
|
|
else
|
|
echo "$as_me:4661: checking for opendir in -lx" >&5
|
|
echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_x_opendir+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lx $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4669 "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 opendir ();
|
|
int
|
|
main ()
|
|
{
|
|
opendir ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:4688: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4691: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4694: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4697: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_x_opendir=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_x_opendir=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:4708: result: $ac_cv_lib_x_opendir" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6
|
|
if test $ac_cv_lib_x_opendir = yes; then
|
|
LIBS="$LIBS -lx"
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:4716: checking whether time.h and sys/time.h may both be included" >&5
|
|
echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
|
|
if test "${ac_cv_header_time+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4722 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <time.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if ((struct tm *) 0)
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:4738: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4741: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:4744: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4747: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_header_time=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_header_time=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:4757: result: $ac_cv_header_time" >&5
|
|
echo "${ECHO_T}$ac_cv_header_time" >&6
|
|
if test $ac_cv_header_time = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define TIME_WITH_SYS_TIME 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
for ac_header in inttypes.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:4770: 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 4776 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:4780: \"$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:4786: \$? = $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:4805: 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 unistd.h stdlib.h stdarg.h varargs.h limits.h string.h \
|
|
memory.h locale.h termcap.h termio.h termios.h dlfcn.h \
|
|
stddef.h stdint.h netdb.h grp.h strings.h regex.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:4820: 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 4826 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:4830: \"$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:4836: \$? = $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:4855: 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 sys/ptem.h sys/pte.h sys/stream.h sys/select.h sys/file.h \
|
|
sys/resource.h sys/param.h sys/socket.h \
|
|
sys/time.h sys/times.h sys/wait.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:4870: 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 4876 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:4880: \"$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:4886: \$? = $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:4905: 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 netinet/in.h arpa/inet.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:4918: 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 4924 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:4928: \"$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:4934: \$? = $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:4953: 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
|
|
|
|
# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
|
|
# for constant arguments. Useless!
|
|
echo "$as_me:4965: checking for working alloca.h" >&5
|
|
echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
|
|
if test "${ac_cv_working_alloca_h+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 4971 "configure"
|
|
#include "confdefs.h"
|
|
#include <alloca.h>
|
|
int
|
|
main ()
|
|
{
|
|
char *p = (char *) alloca (2 * sizeof (int));
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:4983: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4986: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:4989: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:4992: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_working_alloca_h=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_working_alloca_h=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5002: result: $ac_cv_working_alloca_h" >&5
|
|
echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
|
|
if test $ac_cv_working_alloca_h = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_ALLOCA_H 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:5012: checking for alloca" >&5
|
|
echo $ECHO_N "checking for alloca... $ECHO_C" >&6
|
|
if test "${ac_cv_func_alloca_works+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5018 "configure"
|
|
#include "confdefs.h"
|
|
#ifdef __GNUC__
|
|
# define alloca __builtin_alloca
|
|
#else
|
|
# ifdef _MSC_VER
|
|
# include <malloc.h>
|
|
# define alloca _alloca
|
|
# else
|
|
# if HAVE_ALLOCA_H
|
|
# include <alloca.h>
|
|
# else
|
|
# ifdef _AIX
|
|
#pragma alloca
|
|
# else
|
|
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
|
char *alloca ();
|
|
# endif
|
|
# endif
|
|
# endif
|
|
# endif
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
char *p = (char *) alloca (1);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:5050: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5053: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5056: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5059: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_alloca_works=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_alloca_works=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5069: result: $ac_cv_func_alloca_works" >&5
|
|
echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
|
|
|
|
if test $ac_cv_func_alloca_works = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_ALLOCA 1
|
|
EOF
|
|
|
|
else
|
|
# The SVR3 libPW and SVR4 libucb both contain incompatible functions
|
|
# that cause trouble. Some versions do not even contain alloca or
|
|
# contain a buggy version. If you still want to use their alloca,
|
|
# use ar to extract alloca.o from them instead of compiling alloca.c.
|
|
|
|
ALLOCA=alloca.$ac_objext
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define C_ALLOCA 1
|
|
EOF
|
|
|
|
echo "$as_me:5090: checking whether \`alloca.c' needs Cray hooks" >&5
|
|
echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
|
|
if test "${ac_cv_os_cray+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5096 "configure"
|
|
#include "confdefs.h"
|
|
#if defined(CRAY) && ! defined(CRAY2)
|
|
webecray
|
|
#else
|
|
wenotbecray
|
|
#endif
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "webecray" >/dev/null 2>&1; then
|
|
ac_cv_os_cray=yes
|
|
else
|
|
ac_cv_os_cray=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:5114: result: $ac_cv_os_cray" >&5
|
|
echo "${ECHO_T}$ac_cv_os_cray" >&6
|
|
if test $ac_cv_os_cray = yes; then
|
|
for ac_func in _getb67 GETB67 getb67; do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:5119: 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 5125 "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:5156: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5159: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5162: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5165: \$? = $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:5175: 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 CRAY_STACKSEG_END $ac_func
|
|
EOF
|
|
|
|
break
|
|
fi
|
|
|
|
done
|
|
fi
|
|
|
|
echo "$as_me:5189: checking stack direction for C alloca" >&5
|
|
echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
|
|
if test "${ac_cv_c_stack_direction+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
ac_cv_c_stack_direction=0
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5198 "configure"
|
|
#include "confdefs.h"
|
|
int
|
|
find_stack_direction ()
|
|
{
|
|
static char *addr = 0;
|
|
auto char dummy;
|
|
if (addr == 0)
|
|
{
|
|
addr = &dummy;
|
|
return find_stack_direction ();
|
|
}
|
|
else
|
|
return (&dummy > addr) ? 1 : -1;
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
exit (find_stack_direction () < 0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:5221: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5224: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5226: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5229: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_c_stack_direction=1
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_c_stack_direction=-1
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:5241: result: $ac_cv_c_stack_direction" >&5
|
|
echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define STACK_DIRECTION $ac_cv_c_stack_direction
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:5250: checking whether getpgrp takes no argument" >&5
|
|
echo $ECHO_N "checking whether getpgrp takes no argument... $ECHO_C" >&6
|
|
if test "${ac_cv_func_getpgrp_void+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
# Use it with a single arg.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5257 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
getpgrp (0);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:5269: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5272: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:5275: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5278: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_func_getpgrp_1=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_func_getpgrp_1=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
# Use it with no arg.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5289 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
getpgrp ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:5301: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5304: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:5307: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5310: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_func_getpgrp_0=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_func_getpgrp_0=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
# If both static checks agree, we are done.
|
|
case $ac_func_getpgrp_0:$ac_func_getpgrp_1 in
|
|
yes:no) ac_cv_func_getpgrp_void=yes;;
|
|
no:yes) ac_cv_func_getpgrp_void=false;;
|
|
*) if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:5324: error: cannot check getpgrp if cross compiling" >&5
|
|
echo "$as_me: error: cannot check getpgrp if cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5329 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
|
|
/*
|
|
* If this system has a BSD-style getpgrp(),
|
|
* which takes a pid argument, exit unsuccessfully.
|
|
*
|
|
* Snarfed from Chet Ramey's bash pgrp.c test program
|
|
*/
|
|
|
|
int pid;
|
|
int pg1, pg2, pg3, pg4;
|
|
int ng, np, s, child;
|
|
|
|
int
|
|
main ()
|
|
{
|
|
pid = getpid ();
|
|
pg1 = getpgrp (0);
|
|
pg2 = getpgrp ();
|
|
pg3 = getpgrp (pid);
|
|
pg4 = getpgrp (1);
|
|
|
|
/* If all of these values are the same, it's pretty sure that we're
|
|
on a system that ignores getpgrp's first argument. */
|
|
if (pg2 == pg4 && pg1 == pg3 && pg2 == pg3)
|
|
exit (0);
|
|
|
|
child = fork ();
|
|
if (child < 0)
|
|
exit(1);
|
|
else if (child == 0)
|
|
{
|
|
np = getpid ();
|
|
/* If this is Sys V, this will not work; pgrp will be set to np
|
|
because setpgrp just changes a pgrp to be the same as the
|
|
pid. */
|
|
setpgrp (np, pg1);
|
|
ng = getpgrp (0); /* Same result for Sys V and BSD */
|
|
if (ng == pg1)
|
|
exit (1);
|
|
else
|
|
exit (0);
|
|
}
|
|
else
|
|
{
|
|
wait (&s);
|
|
exit (s>>8);
|
|
}
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:5383: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5386: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5388: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5391: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_getpgrp_void=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_getpgrp_void=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi;;
|
|
esac # $ac_func_getpgrp_0:$ac_func_getpgrp_1
|
|
|
|
fi
|
|
echo "$as_me:5405: result: $ac_cv_func_getpgrp_void" >&5
|
|
echo "${ECHO_T}$ac_cv_func_getpgrp_void" >&6
|
|
if test $ac_cv_func_getpgrp_void = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define GETPGRP_VOID 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:5415: checking whether setvbuf arguments are reversed" >&5
|
|
echo $ECHO_N "checking whether setvbuf arguments are reversed... $ECHO_C" >&6
|
|
if test "${ac_cv_func_setvbuf_reversed+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:5421: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5426 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
/* If setvbuf has the reversed format, exit 0. */
|
|
int
|
|
main ()
|
|
{
|
|
/* This call has the arguments reversed.
|
|
A reversed system may check and see that the address of main
|
|
is not _IOLBF, _IONBF, or _IOFBF, and return nonzero. */
|
|
if (setvbuf(stdout, _IOLBF, (char *) main, BUFSIZ) != 0)
|
|
exit(1);
|
|
putc('\r', stdout);
|
|
exit(0); /* Non-reversed systems segv here. */
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:5443: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5446: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5448: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5451: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_setvbuf_reversed=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_setvbuf_reversed=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
rm -f core core.* *.core
|
|
fi
|
|
echo "$as_me:5464: result: $ac_cv_func_setvbuf_reversed" >&5
|
|
echo "${ECHO_T}$ac_cv_func_setvbuf_reversed" >&6
|
|
if test $ac_cv_func_setvbuf_reversed = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define SETVBUF_REVERSED 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
for ac_func in vprintf
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:5477: 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 5483 "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:5514: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5517: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5520: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5523: \$? = $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:5533: 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
|
|
|
|
echo "$as_me:5540: checking for _doprnt" >&5
|
|
echo $ECHO_N "checking for _doprnt... $ECHO_C" >&6
|
|
if test "${ac_cv_func__doprnt+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5546 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char _doprnt (); 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 _doprnt ();
|
|
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__doprnt) || defined (__stub____doprnt)
|
|
choke me
|
|
#else
|
|
f = _doprnt;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:5577: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5580: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5583: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5586: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func__doprnt=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func__doprnt=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5596: result: $ac_cv_func__doprnt" >&5
|
|
echo "${ECHO_T}$ac_cv_func__doprnt" >&6
|
|
if test $ac_cv_func__doprnt = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_DOPRNT 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:5609: checking for working strcoll" >&5
|
|
echo $ECHO_N "checking for working strcoll... $ECHO_C" >&6
|
|
if test "${ac_cv_func_strcoll_works+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
ac_cv_func_strcoll_works=no
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5618 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
exit (strcoll ("abc", "def") >= 0 ||
|
|
strcoll ("ABC", "DEF") >= 0 ||
|
|
strcoll ("123", "456") >= 0)
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:5632: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5635: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5637: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5640: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_strcoll_works=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_strcoll_works=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:5652: result: $ac_cv_func_strcoll_works" >&5
|
|
echo "${ECHO_T}$ac_cv_func_strcoll_works" >&6
|
|
if test $ac_cv_func_strcoll_works = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRCOLL 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_alloca_works" = "no" && test "$opt_bash_malloc" = "no"; then
|
|
MALLOC_TARGET=alloca
|
|
MALLOC_SRC=alloca.c
|
|
|
|
MALLOC_LIB='-lmalloc'
|
|
MALLOC_LIBRARY='$(ALLOC_LIBDIR)/libmalloc.a'
|
|
MALLOC_LDFLAGS='-L$(ALLOC_LIBDIR)'
|
|
MALLOC_DEP='$(MALLOC_LIBRARY)'
|
|
fi
|
|
|
|
if test "$ac_cv_func_vprintf" = no; then
|
|
echo "$as_me:5673: checking for declaration of vprintf in stdio.h" >&5
|
|
echo $ECHO_N "checking for declaration of vprintf in stdio.h... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5676 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "[int[ ]*vprintf[^a-zA-Z0-9]]" >/dev/null 2>&1; then
|
|
ac_cv_func_vprintf=yes
|
|
fi
|
|
rm -f conftest*
|
|
|
|
echo "$as_me:5687: result: $ac_cv_func_vprintf" >&5
|
|
echo "${ECHO_T}$ac_cv_func_vprintf" >&6
|
|
if test $ac_cv_func_vprintf = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_VPRINTF 1
|
|
EOF
|
|
|
|
fi
|
|
fi
|
|
|
|
if test "$ac_cv_func_vprintf" = no && test "$ac_cv_func__doprnt" = "yes"; then
|
|
LIBOBJS="$LIBOBJS vprint.$ac_objext"
|
|
fi
|
|
|
|
echo "$as_me:5701: checking return type of signal handlers" >&5
|
|
echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6
|
|
if test "${ac_cv_type_signal+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5707 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
#ifdef signal
|
|
# undef signal
|
|
#endif
|
|
#ifdef __cplusplus
|
|
extern "C" void (*signal (int, void (*)(int)))(int);
|
|
#else
|
|
void (*signal ()) ();
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int i;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:5729: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5732: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:5735: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5738: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_signal=void
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_signal=int
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5748: result: $ac_cv_type_signal" >&5
|
|
echo "${ECHO_T}$ac_cv_type_signal" >&6
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define RETSIGTYPE $ac_cv_type_signal
|
|
EOF
|
|
|
|
echo "$as_me:5755: checking for __setostype" >&5
|
|
echo $ECHO_N "checking for __setostype... $ECHO_C" >&6
|
|
if test "${ac_cv_func___setostype+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5761 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char __setostype (); 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 __setostype ();
|
|
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___setostype) || defined (__stub_____setostype)
|
|
choke me
|
|
#else
|
|
f = __setostype;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:5792: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5795: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5798: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5801: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func___setostype=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func___setostype=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5811: result: $ac_cv_func___setostype" >&5
|
|
echo "${ECHO_T}$ac_cv_func___setostype" >&6
|
|
if test $ac_cv_func___setostype = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_SETOSTYPE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:5820: checking for wait3" >&5
|
|
echo $ECHO_N "checking for wait3... $ECHO_C" >&6
|
|
if test "${ac_cv_func_wait3+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5826 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char wait3 (); 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 wait3 ();
|
|
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_wait3) || defined (__stub___wait3)
|
|
choke me
|
|
#else
|
|
f = wait3;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:5857: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5860: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5863: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5866: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_wait3=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_wait3=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5876: result: $ac_cv_func_wait3" >&5
|
|
echo "${ECHO_T}$ac_cv_func_wait3" >&6
|
|
if test $ac_cv_func_wait3 = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_WAIT3 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:5885: checking for isinf" >&5
|
|
echo $ECHO_N "checking for isinf... $ECHO_C" >&6
|
|
if test "${ac_cv_func_isinf+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5891 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char isinf (); 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 isinf ();
|
|
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_isinf) || defined (__stub___isinf)
|
|
choke me
|
|
#else
|
|
f = isinf;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:5922: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5925: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5928: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5931: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_isinf=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_isinf=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:5941: result: $ac_cv_func_isinf" >&5
|
|
echo "${ECHO_T}$ac_cv_func_isinf" >&6
|
|
if test $ac_cv_func_isinf = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_ISINF_IN_LIBC 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:5950: checking for mkfifo" >&5
|
|
echo $ECHO_N "checking for mkfifo... $ECHO_C" >&6
|
|
if test "${ac_cv_func_mkfifo+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 5956 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char mkfifo (); 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 mkfifo ();
|
|
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_mkfifo) || defined (__stub___mkfifo)
|
|
choke me
|
|
#else
|
|
f = mkfifo;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:5987: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5990: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:5993: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:5996: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_mkfifo=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_mkfifo=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6006: result: $ac_cv_func_mkfifo" >&5
|
|
echo "${ECHO_T}$ac_cv_func_mkfifo" >&6
|
|
if test $ac_cv_func_mkfifo = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_MKFIFO 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<\EOF
|
|
#define MKFIFO_MISSING 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
for ac_func in dup2 select getdtablesize getgroups gethostname \
|
|
setdtablesize getpagesize killpg lstat getpeername sbrk \
|
|
getrlimit getrusage gettimeofday waitpid tcgetpgrp \
|
|
readlink
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:6026: 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 6032 "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:6063: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6066: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6069: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6072: \$? = $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:6082: 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 rename
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:6095: 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 6101 "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:6132: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6135: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6138: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6141: \$? = $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:6151: 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
|
|
|
|
else
|
|
LIBOBJS="$LIBOBJS $ac_func.$ac_objext"
|
|
fi
|
|
done
|
|
|
|
for ac_func in bcopy bzero confstr sysconf pathconf setenv putenv unsetenv \
|
|
setlinebuf setvbuf setlocale strchr tcgetattr uname \
|
|
ulimit tzset siginterrupt memmove ttyname times \
|
|
getaddrinfo gethostbyname getservbyname getservent inet_aton \
|
|
vsnprintf snprintf vasprintf asprintf fnmatch regcomp regexec
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:6170: 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 6176 "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:6207: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6210: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6213: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6216: \$? = $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:6226: 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 isascii isblank isgraph isprint isspace isxdigit
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:6239: 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 6245 "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:6276: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6279: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6282: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6285: \$? = $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:6295: 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 getcwd strcasecmp strerror strftime strpbrk memset strstr
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:6308: 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 6314 "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:6345: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6348: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6351: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6354: \$? = $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:6364: 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
|
|
|
|
else
|
|
LIBOBJS="$LIBOBJS $ac_func.$ac_objext"
|
|
fi
|
|
done
|
|
|
|
for ac_func in strtod strtol strtoul strtoll strtoull strtoimax strtoumax
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:6379: 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 6385 "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:6416: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6419: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6422: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6425: \$? = $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:6435: 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
|
|
|
|
else
|
|
LIBOBJS="$LIBOBJS $ac_func.$ac_objext"
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:6447: checking whether confstr is declared" >&5
|
|
echo $ECHO_N "checking whether confstr is declared... $ECHO_C" >&6
|
|
if test "${ac_cv_have_decl_confstr+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6453 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
#ifndef confstr
|
|
char *p = (char *) confstr;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:6468: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6471: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:6474: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6477: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_have_decl_confstr=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_have_decl_confstr=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6487: result: $ac_cv_have_decl_confstr" >&5
|
|
echo "${ECHO_T}$ac_cv_have_decl_confstr" >&6
|
|
if test $ac_cv_have_decl_confstr = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_CONFSTR 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_CONFSTR 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:6502: checking whether printf is declared" >&5
|
|
echo $ECHO_N "checking whether printf is declared... $ECHO_C" >&6
|
|
if test "${ac_cv_have_decl_printf+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6508 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
#ifndef printf
|
|
char *p = (char *) printf;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:6523: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6526: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:6529: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6532: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_have_decl_printf=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_have_decl_printf=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6542: result: $ac_cv_have_decl_printf" >&5
|
|
echo "${ECHO_T}$ac_cv_have_decl_printf" >&6
|
|
if test $ac_cv_have_decl_printf = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_PRINTF 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_PRINTF 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:6557: checking whether sbrk is declared" >&5
|
|
echo $ECHO_N "checking whether sbrk is declared... $ECHO_C" >&6
|
|
if test "${ac_cv_have_decl_sbrk+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6563 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
#ifndef sbrk
|
|
char *p = (char *) sbrk;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:6578: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6581: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:6584: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6587: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_have_decl_sbrk=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_have_decl_sbrk=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6597: result: $ac_cv_have_decl_sbrk" >&5
|
|
echo "${ECHO_T}$ac_cv_have_decl_sbrk" >&6
|
|
if test $ac_cv_have_decl_sbrk = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_SBRK 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_SBRK 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:6612: checking whether strcpy is declared" >&5
|
|
echo $ECHO_N "checking whether strcpy is declared... $ECHO_C" >&6
|
|
if test "${ac_cv_have_decl_strcpy+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6618 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
#ifndef strcpy
|
|
char *p = (char *) strcpy;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:6633: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6636: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:6639: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6642: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_have_decl_strcpy=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_have_decl_strcpy=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6652: result: $ac_cv_have_decl_strcpy" >&5
|
|
echo "${ECHO_T}$ac_cv_have_decl_strcpy" >&6
|
|
if test $ac_cv_have_decl_strcpy = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_STRCPY 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_STRCPY 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:6667: checking whether strsignal is declared" >&5
|
|
echo $ECHO_N "checking whether strsignal is declared... $ECHO_C" >&6
|
|
if test "${ac_cv_have_decl_strsignal+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6673 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
#ifndef strsignal
|
|
char *p = (char *) strsignal;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:6688: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6691: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:6694: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6697: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_have_decl_strsignal=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_have_decl_strsignal=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6707: result: $ac_cv_have_decl_strsignal" >&5
|
|
echo "${ECHO_T}$ac_cv_have_decl_strsignal" >&6
|
|
if test $ac_cv_have_decl_strsignal = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_STRSIGNAL 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_STRSIGNAL 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:6722: checking whether strtold is declared" >&5
|
|
echo $ECHO_N "checking whether strtold is declared... $ECHO_C" >&6
|
|
if test "${ac_cv_have_decl_strtold+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6728 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
#ifndef strtold
|
|
char *p = (char *) strtold;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:6743: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6746: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:6749: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6752: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_have_decl_strtold=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_have_decl_strtold=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6762: result: $ac_cv_have_decl_strtold" >&5
|
|
echo "${ECHO_T}$ac_cv_have_decl_strtold" >&6
|
|
if test $ac_cv_have_decl_strtold = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_STRTOLD 1
|
|
EOF
|
|
|
|
echo "$as_me:6770: checking for broken strtold" >&5
|
|
echo $ECHO_N "checking for broken strtold... $ECHO_C" >&6
|
|
if test "${bash_cv_strtold_broken+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6776 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
int
|
|
main ()
|
|
{
|
|
int main() { long double r; char *foo, bar; r = strtold(foo, &bar);}
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:6788: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6791: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:6794: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6797: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_strtold_broken=no
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_strtold_broken=yes
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:6809: result: $bash_cv_strtold_broken" >&5
|
|
echo "${ECHO_T}$bash_cv_strtold_broken" >&6
|
|
if test "$bash_cv_strtold_broken" = "yes" ; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define STRTOLD_BROKEN 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_DECL_STRTOLD 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:6825: checking for declaration of strtoimax" >&5
|
|
echo $ECHO_N "checking for declaration of strtoimax... $ECHO_C" >&6
|
|
if test "${bash_cv_decl_strtoimax+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6831 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if STDC_HEADERS
|
|
# include <stdlib.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
# include <inttypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return !strtoimax;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6850: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6853: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6856: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6859: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_decl_strtoimax=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_decl_strtoimax=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6869: result: $bash_cv_decl_strtoimax" >&5
|
|
echo "${ECHO_T}$bash_cv_decl_strtoimax" >&6
|
|
bash_tr_func=HAVE_DECL_`echo strtoimax | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
|
|
if test $bash_cv_decl_strtoimax = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:6884: checking for declaration of strtol" >&5
|
|
echo $ECHO_N "checking for declaration of strtol... $ECHO_C" >&6
|
|
if test "${bash_cv_decl_strtol+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6890 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if STDC_HEADERS
|
|
# include <stdlib.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
# include <inttypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return !strtol;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6909: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6912: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6915: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6918: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_decl_strtol=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_decl_strtol=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6928: result: $bash_cv_decl_strtol" >&5
|
|
echo "${ECHO_T}$bash_cv_decl_strtol" >&6
|
|
bash_tr_func=HAVE_DECL_`echo strtol | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
|
|
if test $bash_cv_decl_strtol = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:6943: checking for declaration of strtoll" >&5
|
|
echo $ECHO_N "checking for declaration of strtoll... $ECHO_C" >&6
|
|
if test "${bash_cv_decl_strtoll+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 6949 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if STDC_HEADERS
|
|
# include <stdlib.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
# include <inttypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return !strtoll;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:6968: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6971: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:6974: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:6977: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_decl_strtoll=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_decl_strtoll=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:6987: result: $bash_cv_decl_strtoll" >&5
|
|
echo "${ECHO_T}$bash_cv_decl_strtoll" >&6
|
|
bash_tr_func=HAVE_DECL_`echo strtoll | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
|
|
if test $bash_cv_decl_strtoll = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:7002: checking for declaration of strtoul" >&5
|
|
echo $ECHO_N "checking for declaration of strtoul... $ECHO_C" >&6
|
|
if test "${bash_cv_decl_strtoul+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7008 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if STDC_HEADERS
|
|
# include <stdlib.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
# include <inttypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return !strtoul;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7027: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7030: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7033: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7036: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_decl_strtoul=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_decl_strtoul=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7046: result: $bash_cv_decl_strtoul" >&5
|
|
echo "${ECHO_T}$bash_cv_decl_strtoul" >&6
|
|
bash_tr_func=HAVE_DECL_`echo strtoul | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
|
|
if test $bash_cv_decl_strtoul = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:7061: checking for declaration of strtoull" >&5
|
|
echo $ECHO_N "checking for declaration of strtoull... $ECHO_C" >&6
|
|
if test "${bash_cv_decl_strtoull+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7067 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if STDC_HEADERS
|
|
# include <stdlib.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
# include <inttypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return !strtoull;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7086: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7089: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7092: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7095: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_decl_strtoull=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_decl_strtoull=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7105: result: $bash_cv_decl_strtoull" >&5
|
|
echo "${ECHO_T}$bash_cv_decl_strtoull" >&6
|
|
bash_tr_func=HAVE_DECL_`echo strtoull | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
|
|
if test $bash_cv_decl_strtoull = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:7120: checking for declaration of strtoumax" >&5
|
|
echo $ECHO_N "checking for declaration of strtoumax... $ECHO_C" >&6
|
|
if test "${bash_cv_decl_strtoumax+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7126 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if STDC_HEADERS
|
|
# include <stdlib.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
# include <inttypes.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return !strtoumax;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7145: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7148: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7151: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7154: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_decl_strtoumax=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_decl_strtoumax=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7164: result: $bash_cv_decl_strtoumax" >&5
|
|
echo "${ECHO_T}$bash_cv_decl_strtoumax" >&6
|
|
bash_tr_func=HAVE_DECL_`echo strtoumax | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
|
|
if test $bash_cv_decl_strtoumax = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 1
|
|
EOF
|
|
|
|
else
|
|
cat >>confdefs.h <<EOF
|
|
#define $bash_tr_func 0
|
|
EOF
|
|
|
|
fi
|
|
|
|
for ac_header in sys/time.h unistd.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:7182: 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 7188 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:7192: \"$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:7198: \$? = $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:7217: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
for ac_func in alarm
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:7230: 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 7236 "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:7267: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7270: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7273: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7276: \$? = $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:7286: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:7296: checking for working mktime" >&5
|
|
echo $ECHO_N "checking for working mktime... $ECHO_C" >&6
|
|
if test "${ac_cv_func_working_mktime+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
ac_cv_func_working_mktime=no
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7305 "configure"
|
|
#include "confdefs.h"
|
|
/* Test program from Paul Eggert and Tony Leneis. */
|
|
#if TIME_WITH_SYS_TIME
|
|
# include <sys/time.h>
|
|
# include <time.h>
|
|
#else
|
|
# if HAVE_SYS_TIME_H
|
|
# include <sys/time.h>
|
|
# else
|
|
# include <time.h>
|
|
# endif
|
|
#endif
|
|
|
|
#if HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif
|
|
|
|
#if !HAVE_ALARM
|
|
# define alarm(X) /* empty */
|
|
#endif
|
|
|
|
/* Work around redefinition to rpl_putenv by other config tests. */
|
|
#undef putenv
|
|
|
|
static time_t time_t_max;
|
|
|
|
/* Values we'll use to set the TZ environment variable. */
|
|
static const char *const tz_strings[] = {
|
|
(const char *) 0, "TZ=GMT0", "TZ=JST-9",
|
|
"TZ=EST+3EDT+2,M10.1.0/00:00:00,M2.3.0/00:00:00"
|
|
};
|
|
#define N_STRINGS (sizeof (tz_strings) / sizeof (tz_strings[0]))
|
|
|
|
/* Fail if mktime fails to convert a date in the spring-forward gap.
|
|
Based on a problem report from Andreas Jaeger. */
|
|
static void
|
|
spring_forward_gap ()
|
|
{
|
|
/* glibc (up to about 1998-10-07) failed this test. */
|
|
struct tm tm;
|
|
|
|
/* Use the portable POSIX.1 specification "TZ=PST8PDT,M4.1.0,M10.5.0"
|
|
instead of "TZ=America/Vancouver" in order to detect the bug even
|
|
on systems that don't support the Olson extension, or don't have the
|
|
full zoneinfo tables installed. */
|
|
putenv ("TZ=PST8PDT,M4.1.0,M10.5.0");
|
|
|
|
tm.tm_year = 98;
|
|
tm.tm_mon = 3;
|
|
tm.tm_mday = 5;
|
|
tm.tm_hour = 2;
|
|
tm.tm_min = 0;
|
|
tm.tm_sec = 0;
|
|
tm.tm_isdst = -1;
|
|
if (mktime (&tm) == (time_t)-1)
|
|
exit (1);
|
|
}
|
|
|
|
static void
|
|
mktime_test (now)
|
|
time_t now;
|
|
{
|
|
struct tm *lt;
|
|
if ((lt = localtime (&now)) && mktime (lt) != now)
|
|
exit (1);
|
|
now = time_t_max - now;
|
|
if ((lt = localtime (&now)) && mktime (lt) != now)
|
|
exit (1);
|
|
}
|
|
|
|
static void
|
|
irix_6_4_bug ()
|
|
{
|
|
/* Based on code from Ariel Faigon. */
|
|
struct tm tm;
|
|
tm.tm_year = 96;
|
|
tm.tm_mon = 3;
|
|
tm.tm_mday = 0;
|
|
tm.tm_hour = 0;
|
|
tm.tm_min = 0;
|
|
tm.tm_sec = 0;
|
|
tm.tm_isdst = -1;
|
|
mktime (&tm);
|
|
if (tm.tm_mon != 2 || tm.tm_mday != 31)
|
|
exit (1);
|
|
}
|
|
|
|
static void
|
|
bigtime_test (j)
|
|
int j;
|
|
{
|
|
struct tm tm;
|
|
time_t now;
|
|
tm.tm_year = tm.tm_mon = tm.tm_mday = tm.tm_hour = tm.tm_min = tm.tm_sec = j;
|
|
now = mktime (&tm);
|
|
if (now != (time_t) -1)
|
|
{
|
|
struct tm *lt = localtime (&now);
|
|
if (! (lt
|
|
&& lt->tm_year == tm.tm_year
|
|
&& lt->tm_mon == tm.tm_mon
|
|
&& lt->tm_mday == tm.tm_mday
|
|
&& lt->tm_hour == tm.tm_hour
|
|
&& lt->tm_min == tm.tm_min
|
|
&& lt->tm_sec == tm.tm_sec
|
|
&& lt->tm_yday == tm.tm_yday
|
|
&& lt->tm_wday == tm.tm_wday
|
|
&& ((lt->tm_isdst < 0 ? -1 : 0 < lt->tm_isdst)
|
|
== (tm.tm_isdst < 0 ? -1 : 0 < tm.tm_isdst))))
|
|
exit (1);
|
|
}
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
time_t t, delta;
|
|
int i, j;
|
|
|
|
/* This test makes some buggy mktime implementations loop.
|
|
Give up after 60 seconds; a mktime slower than that
|
|
isn't worth using anyway. */
|
|
alarm (60);
|
|
|
|
for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2)
|
|
continue;
|
|
time_t_max--;
|
|
delta = time_t_max / 997; /* a suitable prime number */
|
|
for (i = 0; i < N_STRINGS; i++)
|
|
{
|
|
if (tz_strings[i])
|
|
putenv (tz_strings[i]);
|
|
|
|
for (t = 0; t <= time_t_max - delta; t += delta)
|
|
mktime_test (t);
|
|
mktime_test ((time_t) 60 * 60);
|
|
mktime_test ((time_t) 60 * 60 * 24);
|
|
|
|
for (j = 1; 0 < j; j *= 2)
|
|
bigtime_test (j);
|
|
bigtime_test (j - 1);
|
|
}
|
|
irix_6_4_bug ();
|
|
spring_forward_gap ();
|
|
exit (0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:7454: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7457: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7459: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7462: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_working_mktime=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_working_mktime=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
echo "$as_me:7474: result: $ac_cv_func_working_mktime" >&5
|
|
echo "${ECHO_T}$ac_cv_func_working_mktime" >&6
|
|
if test $ac_cv_func_working_mktime = no; then
|
|
LIBOBJS="$LIBOBJS mktime.$ac_objext"
|
|
fi
|
|
|
|
for ac_header in libintl.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:7483: 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 7489 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:7493: \"$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:7499: \$? = $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:7518: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
for ac_func in gettext textdomain bindtextdomain
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:7531: 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 7537 "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:7568: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7571: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7574: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7577: \$? = $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:7587: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
if test "$ac_cv_func_bindtextdomain" = "no"; then
|
|
|
|
echo "$as_me:7599: checking for bindtextdomain in -lintl" >&5
|
|
echo $ECHO_N "checking for bindtextdomain in -lintl... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lintl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7607 "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 bindtextdomain ();
|
|
int
|
|
main ()
|
|
{
|
|
bindtextdomain ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7626: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7629: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7632: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7635: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_intl_bindtextdomain=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_intl_bindtextdomain=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:7646: result: $ac_cv_lib_intl_bindtextdomain" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_intl_bindtextdomain" >&6
|
|
if test $ac_cv_lib_intl_bindtextdomain = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_LIBINTL 1
|
|
EOF
|
|
|
|
LIBS="-lintl $LIBS"
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_lib_intl" = "yes"; then
|
|
|
|
for ac_func in gettext textdomain bindtextdomain
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:7662: 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 7668 "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:7699: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7702: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7705: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7708: \$? = $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:7718: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
fi
|
|
|
|
for ac_header in wctype.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:7734: 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 7740 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:7744: \"$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:7750: \$? = $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:7769: 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 wchar.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:7782: 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 7788 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:7792: \"$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:7798: \$? = $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:7817: 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 langinfo.h
|
|
do
|
|
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
echo "$as_me:7830: 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 7836 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:7840: \"$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:7846: \$? = $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:7865: result: `eval echo '${'$as_ac_Header'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
|
|
if test `eval echo '${'$as_ac_Header'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
echo "$as_me:7875: checking for mbsrtowcs" >&5
|
|
echo $ECHO_N "checking for mbsrtowcs... $ECHO_C" >&6
|
|
if test "${ac_cv_func_mbsrtowcs+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7881 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char mbsrtowcs (); 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 mbsrtowcs ();
|
|
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_mbsrtowcs) || defined (__stub___mbsrtowcs)
|
|
choke me
|
|
#else
|
|
f = mbsrtowcs;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7912: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7915: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7918: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7921: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_mbsrtowcs=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_mbsrtowcs=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7931: result: $ac_cv_func_mbsrtowcs" >&5
|
|
echo "${ECHO_T}$ac_cv_func_mbsrtowcs" >&6
|
|
if test $ac_cv_func_mbsrtowcs = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_MBSRTOWCS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:7940: checking for mbrtowc" >&5
|
|
echo $ECHO_N "checking for mbrtowc... $ECHO_C" >&6
|
|
if test "${ac_cv_func_mbrtowc+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 7946 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char mbrtowc (); 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 mbrtowc ();
|
|
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_mbrtowc) || defined (__stub___mbrtowc)
|
|
choke me
|
|
#else
|
|
f = mbrtowc;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:7977: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7980: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:7983: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:7986: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_mbrtowc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_mbrtowc=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:7996: result: $ac_cv_func_mbrtowc" >&5
|
|
echo "${ECHO_T}$ac_cv_func_mbrtowc" >&6
|
|
if test $ac_cv_func_mbrtowc = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_MBRTOWC 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:8005: checking for mbrlen" >&5
|
|
echo $ECHO_N "checking for mbrlen... $ECHO_C" >&6
|
|
if test "${ac_cv_func_mbrlen+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8011 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char mbrlen (); 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 mbrlen ();
|
|
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_mbrlen) || defined (__stub___mbrlen)
|
|
choke me
|
|
#else
|
|
f = mbrlen;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8042: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8045: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8048: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8051: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_mbrlen=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_mbrlen=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8061: result: $ac_cv_func_mbrlen" >&5
|
|
echo "${ECHO_T}$ac_cv_func_mbrlen" >&6
|
|
if test $ac_cv_func_mbrlen = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_MBRLEN 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:8070: checking for wctomb" >&5
|
|
echo $ECHO_N "checking for wctomb... $ECHO_C" >&6
|
|
if test "${ac_cv_func_wctomb+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8076 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char wctomb (); 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 wctomb ();
|
|
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_wctomb) || defined (__stub___wctomb)
|
|
choke me
|
|
#else
|
|
f = wctomb;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8107: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8110: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8113: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8116: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_wctomb=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_wctomb=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8126: result: $ac_cv_func_wctomb" >&5
|
|
echo "${ECHO_T}$ac_cv_func_wctomb" >&6
|
|
if test $ac_cv_func_wctomb = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_WCTOMB 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:8135: checking for wcwidth" >&5
|
|
echo $ECHO_N "checking for wcwidth... $ECHO_C" >&6
|
|
if test "${ac_cv_func_wcwidth+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8141 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char wcwidth (); 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 wcwidth ();
|
|
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_wcwidth) || defined (__stub___wcwidth)
|
|
choke me
|
|
#else
|
|
f = wcwidth;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8172: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8175: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8178: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8181: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_wcwidth=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_wcwidth=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8191: result: $ac_cv_func_wcwidth" >&5
|
|
echo "${ECHO_T}$ac_cv_func_wcwidth" >&6
|
|
if test $ac_cv_func_wcwidth = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_WCWIDTH 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:8200: checking for mbstate_t" >&5
|
|
echo $ECHO_N "checking for mbstate_t... $ECHO_C" >&6
|
|
if test "${bash_cv_have_mbstate_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8206 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <wchar.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
mbstate_t ps;
|
|
mbstate_t *psp;
|
|
psp = (mbstate_t *)0;
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:8223: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8226: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:8229: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8232: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_have_mbstate_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_have_mbstate_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8242: result: $bash_cv_have_mbstate_t" >&5
|
|
echo "${ECHO_T}$bash_cv_have_mbstate_t" >&6
|
|
if test $bash_cv_have_mbstate_t = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_MBSTATE_T 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:8251: checking for nl_langinfo and CODESET" >&5
|
|
echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
|
|
if test "${bash_cv_langinfo_codeset+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8257 "configure"
|
|
#include "confdefs.h"
|
|
#include <langinfo.h>
|
|
int
|
|
main ()
|
|
{
|
|
char* cs = nl_langinfo(CODESET);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8269: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8272: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8275: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8278: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_langinfo_codeset=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_langinfo_codeset=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8288: result: $bash_cv_langinfo_codeset" >&5
|
|
echo "${ECHO_T}$bash_cv_langinfo_codeset" >&6
|
|
if test $bash_cv_langinfo_codeset = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_LANGINFO_CODESET 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$opt_static_link" != yes; then
|
|
|
|
echo "$as_me:8299: checking for dlopen in -ldl" >&5
|
|
echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_dl_dlopen+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-ldl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8307 "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 dlopen ();
|
|
int
|
|
main ()
|
|
{
|
|
dlopen ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8326: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8329: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8332: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8335: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_dl_dlopen=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_dl_dlopen=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:8346: result: $ac_cv_lib_dl_dlopen" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6
|
|
if test $ac_cv_lib_dl_dlopen = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_LIBDL 1
|
|
EOF
|
|
|
|
LIBS="-ldl $LIBS"
|
|
|
|
fi
|
|
|
|
for ac_func in dlopen dlclose dlsym
|
|
do
|
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
|
echo "$as_me:8360: 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 8366 "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:8397: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8400: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8403: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8406: \$? = $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:8416: result: `eval echo '${'$as_ac_var'}'`" >&5
|
|
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
|
|
if test `eval echo '${'$as_ac_var'}'` = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
|
|
EOF
|
|
|
|
fi
|
|
done
|
|
|
|
fi
|
|
|
|
echo "$as_me:8428: checking for sys_siglist declaration in signal.h or unistd.h" >&5
|
|
echo $ECHO_N "checking for sys_siglist declaration in signal.h or unistd.h... $ECHO_C" >&6
|
|
if test "${ac_cv_decl_sys_siglist+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8434 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
/* NetBSD declares sys_siglist in unistd.h. */
|
|
#if HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
char *msg = *(sys_siglist + 1);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:8452: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8455: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:8458: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8461: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_decl_sys_siglist=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_decl_sys_siglist=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8471: result: $ac_cv_decl_sys_siglist" >&5
|
|
echo "${ECHO_T}$ac_cv_decl_sys_siglist" >&6
|
|
if test $ac_cv_decl_sys_siglist = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define SYS_SIGLIST_DECLARED 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_inet_aton" != 'yes'; then
|
|
|
|
echo "$as_me:8483: checking for inet_aton" >&5
|
|
echo $ECHO_N "checking for inet_aton... $ECHO_C" >&6
|
|
if test "${bash_cv_func_inet_aton+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8489 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
struct in_addr ap;
|
|
int
|
|
main ()
|
|
{
|
|
inet_aton("127.0.0.1", &ap);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8505: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8508: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8511: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8514: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_func_inet_aton=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_func_inet_aton=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8524: result: $bash_cv_func_inet_aton" >&5
|
|
echo "${ECHO_T}$bash_cv_func_inet_aton" >&6
|
|
if test $bash_cv_func_inet_aton = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_INET_ATON 1
|
|
EOF
|
|
|
|
else
|
|
LIBOBJS="$LIBOBJS inet_aton.$ac_objext"
|
|
fi
|
|
|
|
fi
|
|
|
|
case "$host_os" in
|
|
irix4*)
|
|
echo "$as_me:8539: checking for getpwent in -lsun" >&5
|
|
echo $ECHO_N "checking for getpwent in -lsun... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_sun_getpwent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lsun $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8547 "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 getpwent ();
|
|
int
|
|
main ()
|
|
{
|
|
getpwent ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8566: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8569: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8572: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8575: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_sun_getpwent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_sun_getpwent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:8586: result: $ac_cv_lib_sun_getpwent" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_sun_getpwent" >&6
|
|
if test $ac_cv_lib_sun_getpwent = yes; then
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_LIBSUN 1
|
|
EOF
|
|
|
|
LIBS="-lsun $LIBS"
|
|
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
if test "$ac_cv_func_getpeername" = no; then
|
|
|
|
if test "X$bash_cv_have_socklib" = "X"; then
|
|
_bash_needmsg=
|
|
else
|
|
echo "$as_me:8604: checking for socket library" >&5
|
|
echo $ECHO_N "checking for socket library... $ECHO_C" >&6
|
|
_bash_needmsg=yes
|
|
fi
|
|
if test "${bash_cv_have_socklib+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
echo "$as_me:8611: checking for getpeername in -lsocket" >&5
|
|
echo $ECHO_N "checking for getpeername in -lsocket... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_socket_getpeername+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lsocket -lnsl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8619 "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 getpeername ();
|
|
int
|
|
main ()
|
|
{
|
|
getpeername ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8638: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8641: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8644: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8647: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_socket_getpeername=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_socket_getpeername=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:8658: result: $ac_cv_lib_socket_getpeername" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_socket_getpeername" >&6
|
|
if test $ac_cv_lib_socket_getpeername = yes; then
|
|
bash_cv_have_socklib=yes
|
|
else
|
|
bash_cv_have_socklib=no
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "X$_bash_needmsg" = Xyes; then
|
|
echo "$as_me:8669: result: $bash_cv_have_socklib" >&5
|
|
echo "${ECHO_T}$bash_cv_have_socklib" >&6
|
|
_bash_needmsg=
|
|
fi
|
|
if test $bash_cv_have_socklib = yes; then
|
|
# check for libnsl, add it to LIBS if present
|
|
if test "X$bash_cv_have_libnsl" = "X"; then
|
|
_bash_needmsg=
|
|
else
|
|
echo "$as_me:8678: checking for libnsl" >&5
|
|
echo $ECHO_N "checking for libnsl... $ECHO_C" >&6
|
|
_bash_needmsg=yes
|
|
fi
|
|
if test "${bash_cv_have_libnsl+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
echo "$as_me:8685: checking for t_open in -lnsl" >&5
|
|
echo $ECHO_N "checking for t_open in -lnsl... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_nsl_t_open+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lnsl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8693 "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 t_open ();
|
|
int
|
|
main ()
|
|
{
|
|
t_open ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8712: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8715: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8718: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8721: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_nsl_t_open=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_nsl_t_open=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:8732: result: $ac_cv_lib_nsl_t_open" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_nsl_t_open" >&6
|
|
if test $ac_cv_lib_nsl_t_open = yes; then
|
|
bash_cv_have_libnsl=yes
|
|
else
|
|
bash_cv_have_libnsl=no
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "X$_bash_needmsg" = Xyes; then
|
|
echo "$as_me:8743: result: $bash_cv_have_libnsl" >&5
|
|
echo "${ECHO_T}$bash_cv_have_libnsl" >&6
|
|
_bash_needmsg=
|
|
fi
|
|
if test $bash_cv_have_libnsl = yes; then
|
|
LIBS="-lsocket -lnsl $LIBS"
|
|
else
|
|
LIBS="-lsocket $LIBS"
|
|
fi
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_LIBSOCKET 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_GETPEERNAME 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
if test "$ac_cv_func_gethostbyname" = no; then
|
|
if test "X$bash_cv_have_gethostbyname" = "X"; then
|
|
_bash_needmsg=yes
|
|
else
|
|
echo "$as_me:8767: checking for gethostbyname in socket library" >&5
|
|
echo $ECHO_N "checking for gethostbyname in socket library... $ECHO_C" >&6
|
|
_bash_needmsg=
|
|
fi
|
|
if test "${bash_cv_have_gethostbyname+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8775 "configure"
|
|
#include "confdefs.h"
|
|
#include <netdb.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct hostent *hp;
|
|
hp = gethostbyname("localhost");
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:8789: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8792: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8795: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8798: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_have_gethostbyname=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_have_gethostbyname=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
if test "X$_bash_needmsg" = Xyes; then
|
|
echo "$as_me:8811: checking for gethostbyname in socket library" >&5
|
|
echo $ECHO_N "checking for gethostbyname in socket library... $ECHO_C" >&6
|
|
fi
|
|
echo "$as_me:8814: result: $bash_cv_have_gethostbyname" >&5
|
|
echo "${ECHO_T}$bash_cv_have_gethostbyname" >&6
|
|
if test "$bash_cv_have_gethostbyname" = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_GETHOSTBYNAME 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:8825: checking for uid_t in sys/types.h" >&5
|
|
echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6
|
|
if test "${ac_cv_type_uid_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8831 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "uid_t" >/dev/null 2>&1; then
|
|
ac_cv_type_uid_t=yes
|
|
else
|
|
ac_cv_type_uid_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:8845: result: $ac_cv_type_uid_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_uid_t" >&6
|
|
if test $ac_cv_type_uid_t = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define uid_t int
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define gid_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:8859: checking type of array argument to getgroups" >&5
|
|
echo $ECHO_N "checking type of array argument to getgroups... $ECHO_C" >&6
|
|
if test "${ac_cv_type_getgroups+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
ac_cv_type_getgroups=cross
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8868 "configure"
|
|
#include "confdefs.h"
|
|
/* Thanks to Mike Rendell for this test. */
|
|
#include <sys/types.h>
|
|
#define NGID 256
|
|
#undef MAX
|
|
#define MAX(x, y) ((x) > (y) ? (x) : (y))
|
|
|
|
int
|
|
main ()
|
|
{
|
|
gid_t gidset[NGID];
|
|
int i, n;
|
|
union { gid_t gval; long lval; } val;
|
|
|
|
val.lval = -1;
|
|
for (i = 0; i < NGID; i++)
|
|
gidset[i] = val.gval;
|
|
n = getgroups (sizeof (gidset) / MAX (sizeof (int), sizeof (gid_t)) - 1,
|
|
gidset);
|
|
/* Exit non-zero if getgroups seems to require an array of ints. This
|
|
happens when gid_t is short but getgroups modifies an array of ints. */
|
|
exit ((n > 0 && gidset[n] != val.gval) ? 1 : 0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:8894: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8897: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:8899: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8902: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_getgroups=gid_t
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_getgroups=int
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
if test $ac_cv_type_getgroups = cross; then
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8915 "configure"
|
|
#include "confdefs.h"
|
|
#include <unistd.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "getgroups.*int.*gid_t" >/dev/null 2>&1; then
|
|
ac_cv_type_getgroups=gid_t
|
|
else
|
|
ac_cv_type_getgroups=int
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
fi
|
|
echo "$as_me:8930: result: $ac_cv_type_getgroups" >&5
|
|
echo "${ECHO_T}$ac_cv_type_getgroups" >&6
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define GETGROUPS_T $ac_cv_type_getgroups
|
|
EOF
|
|
|
|
echo "$as_me:8937: checking for off_t" >&5
|
|
echo $ECHO_N "checking for off_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_off_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8943 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((off_t *) 0)
|
|
return 0;
|
|
if (sizeof (off_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:8958: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8961: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:8964: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:8967: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_off_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_off_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:8977: result: $ac_cv_type_off_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_off_t" >&6
|
|
if test $ac_cv_type_off_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define off_t long
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:8989: checking for mode_t" >&5
|
|
echo $ECHO_N "checking for mode_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_mode_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 8995 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((mode_t *) 0)
|
|
return 0;
|
|
if (sizeof (mode_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9010: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9013: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9016: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9019: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_mode_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_mode_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9029: result: $ac_cv_type_mode_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_mode_t" >&6
|
|
if test $ac_cv_type_mode_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define mode_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:9041: checking for uid_t in sys/types.h" >&5
|
|
echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6
|
|
if test "${ac_cv_type_uid_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9047 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "uid_t" >/dev/null 2>&1; then
|
|
ac_cv_type_uid_t=yes
|
|
else
|
|
ac_cv_type_uid_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:9061: result: $ac_cv_type_uid_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_uid_t" >&6
|
|
if test $ac_cv_type_uid_t = no; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define uid_t int
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define gid_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:9075: checking for pid_t" >&5
|
|
echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_pid_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9081 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((pid_t *) 0)
|
|
return 0;
|
|
if (sizeof (pid_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9096: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9099: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9102: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9105: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_pid_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_pid_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9115: result: $ac_cv_type_pid_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_pid_t" >&6
|
|
if test $ac_cv_type_pid_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define pid_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:9127: checking for size_t" >&5
|
|
echo $ECHO_N "checking for size_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_size_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9133 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((size_t *) 0)
|
|
return 0;
|
|
if (sizeof (size_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9148: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9151: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9154: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9157: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_size_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_size_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9167: result: $ac_cv_type_size_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_size_t" >&6
|
|
if test $ac_cv_type_size_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define size_t unsigned
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:9179: checking for ssize_t" >&5
|
|
echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_ssize_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9185 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((ssize_t *) 0)
|
|
return 0;
|
|
if (sizeof (ssize_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9200: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9203: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9206: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9209: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_ssize_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_ssize_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9219: result: $ac_cv_type_ssize_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_ssize_t" >&6
|
|
if test $ac_cv_type_ssize_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define ssize_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:9231: checking for time_t" >&5
|
|
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
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9237 "configure"
|
|
#include "confdefs.h"
|
|
$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
|
|
if { (eval echo "$as_me:9252: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9255: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9258: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9261: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_time_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_time_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9271: result: $ac_cv_type_time_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_time_t" >&6
|
|
if test $ac_cv_type_time_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define time_t long
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:9283: checking for long long" >&5
|
|
echo $ECHO_N "checking for long long... $ECHO_C" >&6
|
|
if test "${bash_cv_type_long_long+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9289 "configure"
|
|
#include "confdefs.h"
|
|
|
|
long long ll = 1; int i = 63;
|
|
int
|
|
main ()
|
|
{
|
|
|
|
long long llm = (long long) -1;
|
|
return ll << i | ll >> i | llm / ll | llm % ll;
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9305: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9308: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9311: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9314: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_type_long_long='long long'
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_type_long_long='long'
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9324: result: $bash_cv_type_long_long" >&5
|
|
echo "${ECHO_T}$bash_cv_type_long_long" >&6
|
|
if test "$bash_cv_type_long_long" = 'long long'; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_LONG_LONG 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:9333: checking for unsigned long long" >&5
|
|
echo $ECHO_N "checking for unsigned long long... $ECHO_C" >&6
|
|
if test "${bash_cv_type_unsigned_long_long+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9339 "configure"
|
|
#include "confdefs.h"
|
|
|
|
unsigned long long ull = 1; int i = 63;
|
|
int
|
|
main ()
|
|
{
|
|
|
|
unsigned long long ullmax = (unsigned long long) -1;
|
|
return ull << i | ull >> i | ullmax / ull | ullmax % ull;
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:9355: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9358: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9361: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9364: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_type_unsigned_long_long='unsigned long long'
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_type_unsigned_long_long='unsigned long'
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9374: result: $bash_cv_type_unsigned_long_long" >&5
|
|
echo "${ECHO_T}$bash_cv_type_unsigned_long_long" >&6
|
|
if test "$bash_cv_type_unsigned_long_long" = 'unsigned long long'; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_UNSIGNED_LONG_LONG 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:9383: checking return type of signal handlers" >&5
|
|
echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6
|
|
if test "${ac_cv_type_signal+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9389 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
#ifdef signal
|
|
# undef signal
|
|
#endif
|
|
#ifdef __cplusplus
|
|
extern "C" void (*signal (int, void (*)(int)))(int);
|
|
#else
|
|
void (*signal ()) ();
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int i;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9411: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9414: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9417: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9420: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_signal=void
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_signal=int
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9430: result: $ac_cv_type_signal" >&5
|
|
echo "${ECHO_T}$ac_cv_type_signal" >&6
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define RETSIGTYPE $ac_cv_type_signal
|
|
EOF
|
|
|
|
echo "$as_me:9437: checking for char" >&5
|
|
echo $ECHO_N "checking for char... $ECHO_C" >&6
|
|
if test "${ac_cv_type_char+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9443 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((char *) 0)
|
|
return 0;
|
|
if (sizeof (char))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9458: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9461: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9464: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9467: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_char=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_char=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9477: result: $ac_cv_type_char" >&5
|
|
echo "${ECHO_T}$ac_cv_type_char" >&6
|
|
|
|
echo "$as_me:9480: checking size of char" >&5
|
|
echo $ECHO_N "checking size of char... $ECHO_C" >&6
|
|
if test "${ac_cv_sizeof_char+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$ac_cv_type_char" = yes; then
|
|
if test "$cross_compiling" = yes; then
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9489 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (char)) >= 0)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9501: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9504: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9507: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9510: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_lo=0 ac_mid=0
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9515 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (char)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9527: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9530: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9533: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9536: \$? = $ac_status" >&5
|
|
(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
|
|
else
|
|
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
|
|
#line 9552 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (char)) >= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9564: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9567: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9570: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9573: \$? = $ac_status" >&5
|
|
(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
|
|
#line 9589 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (char)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9601: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9604: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9607: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9610: \$? = $ac_status" >&5
|
|
(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_char=$ac_lo
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:9623: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9628 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
FILE *f = fopen ("conftest.val", "w");
|
|
if (!f)
|
|
exit (1);
|
|
fprintf (f, "%d", (sizeof (char)));
|
|
fclose (f);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:9644: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9647: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9649: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9652: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_sizeof_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
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
else
|
|
ac_cv_sizeof_char=0
|
|
fi
|
|
fi
|
|
echo "$as_me:9668: result: $ac_cv_sizeof_char" >&5
|
|
echo "${ECHO_T}$ac_cv_sizeof_char" >&6
|
|
cat >>confdefs.h <<EOF
|
|
#define SIZEOF_CHAR $ac_cv_sizeof_char
|
|
EOF
|
|
|
|
echo "$as_me:9674: checking for short" >&5
|
|
echo $ECHO_N "checking for short... $ECHO_C" >&6
|
|
if test "${ac_cv_type_short+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9680 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((short *) 0)
|
|
return 0;
|
|
if (sizeof (short))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9695: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9698: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9701: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9704: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_short=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_short=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:9714: result: $ac_cv_type_short" >&5
|
|
echo "${ECHO_T}$ac_cv_type_short" >&6
|
|
|
|
echo "$as_me:9717: checking size of short" >&5
|
|
echo $ECHO_N "checking size of short... $ECHO_C" >&6
|
|
if test "${ac_cv_sizeof_short+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$ac_cv_type_short" = yes; then
|
|
if test "$cross_compiling" = yes; then
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9726 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (short)) >= 0)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9738: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9741: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9744: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9747: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_lo=0 ac_mid=0
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9752 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (short)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9764: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9767: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9770: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9773: \$? = $ac_status" >&5
|
|
(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
|
|
else
|
|
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
|
|
#line 9789 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (short)) >= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9801: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9804: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9807: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9810: \$? = $ac_status" >&5
|
|
(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
|
|
#line 9826 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (short)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9838: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9841: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9844: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9847: \$? = $ac_status" >&5
|
|
(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_short=$ac_lo
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:9860: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9865 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
FILE *f = fopen ("conftest.val", "w");
|
|
if (!f)
|
|
exit (1);
|
|
fprintf (f, "%d", (sizeof (short)));
|
|
fclose (f);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f 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='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:9886: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9889: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_sizeof_short=`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
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
else
|
|
ac_cv_sizeof_short=0
|
|
fi
|
|
fi
|
|
echo "$as_me:9905: result: $ac_cv_sizeof_short" >&5
|
|
echo "${ECHO_T}$ac_cv_sizeof_short" >&6
|
|
cat >>confdefs.h <<EOF
|
|
#define SIZEOF_SHORT $ac_cv_sizeof_short
|
|
EOF
|
|
|
|
echo "$as_me:9911: checking for int" >&5
|
|
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
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9917 "configure"
|
|
#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
|
|
if { (eval echo "$as_me:9932: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9935: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9938: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9941: \$? = $ac_status" >&5
|
|
(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
|
|
echo "$as_me:9951: result: $ac_cv_type_int" >&5
|
|
echo "${ECHO_T}$ac_cv_type_int" >&6
|
|
|
|
echo "$as_me:9954: checking size of int" >&5
|
|
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
|
|
if test "$cross_compiling" = yes; then
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9963 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (int)) >= 0)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:9975: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9978: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:9981: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:9984: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_lo=0 ac_mid=0
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 9989 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10001: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10004: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10007: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10010: \$? = $ac_status" >&5
|
|
(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
|
|
else
|
|
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
|
|
#line 10026 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10038: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10041: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10044: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10047: \$? = $ac_status" >&5
|
|
(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
|
|
#line 10063 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10075: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10078: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10081: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10084: \$? = $ac_status" >&5
|
|
(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
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:10097: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10102 "configure"
|
|
#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
|
|
if { (eval echo "$as_me:10118: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10121: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10123: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10126: \$? = $ac_status" >&5
|
|
(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
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
else
|
|
ac_cv_sizeof_int=0
|
|
fi
|
|
fi
|
|
echo "$as_me:10142: result: $ac_cv_sizeof_int" >&5
|
|
echo "${ECHO_T}$ac_cv_sizeof_int" >&6
|
|
cat >>confdefs.h <<EOF
|
|
#define SIZEOF_INT $ac_cv_sizeof_int
|
|
EOF
|
|
|
|
echo "$as_me:10148: checking for long" >&5
|
|
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
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10154 "configure"
|
|
#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
|
|
if { (eval echo "$as_me:10169: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10172: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10175: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10178: \$? = $ac_status" >&5
|
|
(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
|
|
echo "$as_me:10188: result: $ac_cv_type_long" >&5
|
|
echo "${ECHO_T}$ac_cv_type_long" >&6
|
|
|
|
echo "$as_me:10191: checking size of long" >&5
|
|
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
|
|
if test "$cross_compiling" = yes; then
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10200 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (long)) >= 0)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10212: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10215: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10218: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10221: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_lo=0 ac_mid=0
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10226 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10238: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10241: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10244: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10247: \$? = $ac_status" >&5
|
|
(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
|
|
else
|
|
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
|
|
#line 10263 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10275: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10278: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10281: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10284: \$? = $ac_status" >&5
|
|
(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
|
|
#line 10300 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10312: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10315: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10318: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10321: \$? = $ac_status" >&5
|
|
(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
|
|
{ { echo "$as_me:10334: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10339 "configure"
|
|
#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
|
|
if { (eval echo "$as_me:10355: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10358: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10360: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10363: \$? = $ac_status" >&5
|
|
(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
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
else
|
|
ac_cv_sizeof_long=0
|
|
fi
|
|
fi
|
|
echo "$as_me:10379: result: $ac_cv_sizeof_long" >&5
|
|
echo "${ECHO_T}$ac_cv_sizeof_long" >&6
|
|
cat >>confdefs.h <<EOF
|
|
#define SIZEOF_LONG $ac_cv_sizeof_long
|
|
EOF
|
|
|
|
echo "$as_me:10385: checking for char *" >&5
|
|
echo $ECHO_N "checking for char *... $ECHO_C" >&6
|
|
if test "${ac_cv_type_char_p+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10391 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((char * *) 0)
|
|
return 0;
|
|
if (sizeof (char *))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10406: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10409: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10412: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10415: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_char_p=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_char_p=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10425: result: $ac_cv_type_char_p" >&5
|
|
echo "${ECHO_T}$ac_cv_type_char_p" >&6
|
|
|
|
echo "$as_me:10428: checking size of char *" >&5
|
|
echo $ECHO_N "checking size of char *... $ECHO_C" >&6
|
|
if test "${ac_cv_sizeof_char_p+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$ac_cv_type_char_p" = yes; then
|
|
if test "$cross_compiling" = yes; then
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10437 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (char *)) >= 0)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10449: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10452: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10455: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10458: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_lo=0 ac_mid=0
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10463 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (char *)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10475: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10478: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10481: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10484: \$? = $ac_status" >&5
|
|
(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
|
|
else
|
|
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
|
|
#line 10500 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (char *)) >= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10512: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10515: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10518: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10521: \$? = $ac_status" >&5
|
|
(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
|
|
#line 10537 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (char *)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10549: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10552: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10555: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10558: \$? = $ac_status" >&5
|
|
(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_char_p=$ac_lo
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:10571: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10576 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
FILE *f = fopen ("conftest.val", "w");
|
|
if (!f)
|
|
exit (1);
|
|
fprintf (f, "%d", (sizeof (char *)));
|
|
fclose (f);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:10592: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10595: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10597: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10600: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_sizeof_char_p=`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
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
else
|
|
ac_cv_sizeof_char_p=0
|
|
fi
|
|
fi
|
|
echo "$as_me:10616: result: $ac_cv_sizeof_char_p" >&5
|
|
echo "${ECHO_T}$ac_cv_sizeof_char_p" >&6
|
|
cat >>confdefs.h <<EOF
|
|
#define SIZEOF_CHAR_P $ac_cv_sizeof_char_p
|
|
EOF
|
|
|
|
echo "$as_me:10622: checking for double" >&5
|
|
echo $ECHO_N "checking for double... $ECHO_C" >&6
|
|
if test "${ac_cv_type_double+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10628 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((double *) 0)
|
|
return 0;
|
|
if (sizeof (double))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10643: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10646: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10649: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10652: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_double=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_double=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10662: result: $ac_cv_type_double" >&5
|
|
echo "${ECHO_T}$ac_cv_type_double" >&6
|
|
|
|
echo "$as_me:10665: checking size of double" >&5
|
|
echo $ECHO_N "checking size of double... $ECHO_C" >&6
|
|
if test "${ac_cv_sizeof_double+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$ac_cv_type_double" = yes; then
|
|
if test "$cross_compiling" = yes; then
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10674 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (double)) >= 0)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10686: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10689: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10692: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10695: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_lo=0 ac_mid=0
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10700 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (double)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10712: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10715: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10718: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10721: \$? = $ac_status" >&5
|
|
(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
|
|
else
|
|
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
|
|
#line 10737 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (double)) >= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10749: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10752: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10755: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10758: \$? = $ac_status" >&5
|
|
(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
|
|
#line 10774 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (double)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10786: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10789: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10792: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10795: \$? = $ac_status" >&5
|
|
(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_double=$ac_lo
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:10808: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10813 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
FILE *f = fopen ("conftest.val", "w");
|
|
if (!f)
|
|
exit (1);
|
|
fprintf (f, "%d", (sizeof (double)));
|
|
fclose (f);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:10829: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10832: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:10834: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10837: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_sizeof_double=`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
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
else
|
|
ac_cv_sizeof_double=0
|
|
fi
|
|
fi
|
|
echo "$as_me:10853: result: $ac_cv_sizeof_double" >&5
|
|
echo "${ECHO_T}$ac_cv_sizeof_double" >&6
|
|
cat >>confdefs.h <<EOF
|
|
#define SIZEOF_DOUBLE $ac_cv_sizeof_double
|
|
EOF
|
|
|
|
echo "$as_me:10859: checking for long long" >&5
|
|
echo $ECHO_N "checking for long long... $ECHO_C" >&6
|
|
if test "${ac_cv_type_long_long+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10865 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((long long *) 0)
|
|
return 0;
|
|
if (sizeof (long long))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10880: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10883: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10886: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10889: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_long_long=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_long_long=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:10899: result: $ac_cv_type_long_long" >&5
|
|
echo "${ECHO_T}$ac_cv_type_long_long" >&6
|
|
|
|
echo "$as_me:10902: checking size of long long" >&5
|
|
echo $ECHO_N "checking size of long long... $ECHO_C" >&6
|
|
if test "${ac_cv_sizeof_long_long+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$ac_cv_type_long_long" = yes; then
|
|
if test "$cross_compiling" = yes; then
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10911 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (long long)) >= 0)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10923: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10926: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10929: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10932: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_lo=0 ac_mid=0
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10937 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (long long)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10949: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10952: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10955: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10958: \$? = $ac_status" >&5
|
|
(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
|
|
else
|
|
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
|
|
#line 10974 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (long long)) >= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:10986: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10989: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:10992: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:10995: \$? = $ac_status" >&5
|
|
(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
|
|
#line 11011 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
int _array_ [1 - 2 * !((sizeof (long long)) <= $ac_mid)]
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11023: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11026: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11029: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11032: \$? = $ac_status" >&5
|
|
(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_long=$ac_lo
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ { echo "$as_me:11045: error: cannot run test program while cross compiling" >&5
|
|
echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11050 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
FILE *f = fopen ("conftest.val", "w");
|
|
if (!f)
|
|
exit (1);
|
|
fprintf (f, "%d", (sizeof (long long)));
|
|
fclose (f);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:11066: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11069: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:11071: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11074: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_sizeof_long_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
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
else
|
|
ac_cv_sizeof_long_long=0
|
|
fi
|
|
fi
|
|
echo "$as_me:11090: result: $ac_cv_sizeof_long_long" >&5
|
|
echo "${ECHO_T}$ac_cv_sizeof_long_long" >&6
|
|
cat >>confdefs.h <<EOF
|
|
#define SIZEOF_LONG_LONG $ac_cv_sizeof_long_long
|
|
EOF
|
|
|
|
echo "$as_me:11096: checking for u_int" >&5
|
|
echo $ECHO_N "checking for u_int... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_int+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11102 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_int *) 0)
|
|
return 0;
|
|
if (sizeof (u_int))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11117: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11120: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11123: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11126: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_int=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_int=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11136: result: $ac_cv_type_u_int" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_int" >&6
|
|
if test $ac_cv_type_u_int = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define u_int unsigned int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:11148: checking for u_long" >&5
|
|
echo $ECHO_N "checking for u_long... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_long+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11154 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_long *) 0)
|
|
return 0;
|
|
if (sizeof (u_long))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11169: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11172: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11175: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11178: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_long=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_long=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11188: result: $ac_cv_type_u_long" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_long" >&6
|
|
if test $ac_cv_type_u_long = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define u_long unsigned long
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_sizeof_short" = 2; then
|
|
echo "$as_me:11201: checking for bits16_t" >&5
|
|
echo $ECHO_N "checking for bits16_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits16_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11207 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits16_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits16_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11222: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11225: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11228: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11231: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits16_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits16_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11241: result: $ac_cv_type_bits16_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits16_t" >&6
|
|
if test $ac_cv_type_bits16_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits16_t short
|
|
EOF
|
|
|
|
fi
|
|
|
|
elif test "$ac_cv_sizeof_char" = 2; then
|
|
echo "$as_me:11254: checking for bits16_t" >&5
|
|
echo $ECHO_N "checking for bits16_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits16_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11260 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits16_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits16_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11275: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11278: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11281: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11284: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits16_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits16_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11294: result: $ac_cv_type_bits16_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits16_t" >&6
|
|
if test $ac_cv_type_bits16_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits16_t char
|
|
EOF
|
|
|
|
fi
|
|
|
|
else
|
|
echo "$as_me:11307: checking for bits16_t" >&5
|
|
echo $ECHO_N "checking for bits16_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits16_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11313 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits16_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits16_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11328: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11331: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11334: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11337: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits16_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits16_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11347: result: $ac_cv_type_bits16_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits16_t" >&6
|
|
if test $ac_cv_type_bits16_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits16_t short
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_sizeof_short" = 2; then
|
|
echo "$as_me:11362: checking for u_bits16_t" >&5
|
|
echo $ECHO_N "checking for u_bits16_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_bits16_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11368 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_bits16_t *) 0)
|
|
return 0;
|
|
if (sizeof (u_bits16_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11383: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11386: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11389: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11392: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_bits16_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_bits16_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11402: result: $ac_cv_type_u_bits16_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_bits16_t" >&6
|
|
if test $ac_cv_type_u_bits16_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define u_bits16_t unsigned short
|
|
EOF
|
|
|
|
fi
|
|
|
|
elif test "$ac_cv_sizeof_char" = 2; then
|
|
echo "$as_me:11415: checking for u_bits16_t" >&5
|
|
echo $ECHO_N "checking for u_bits16_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_bits16_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11421 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_bits16_t *) 0)
|
|
return 0;
|
|
if (sizeof (u_bits16_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11436: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11439: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11442: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11445: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_bits16_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_bits16_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11455: result: $ac_cv_type_u_bits16_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_bits16_t" >&6
|
|
if test $ac_cv_type_u_bits16_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define u_bits16_t unsigned char
|
|
EOF
|
|
|
|
fi
|
|
|
|
else
|
|
echo "$as_me:11468: checking for u_bits16_t" >&5
|
|
echo $ECHO_N "checking for u_bits16_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_bits16_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11474 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_bits16_t *) 0)
|
|
return 0;
|
|
if (sizeof (u_bits16_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11489: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11492: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11495: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11498: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_bits16_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_bits16_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11508: result: $ac_cv_type_u_bits16_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_bits16_t" >&6
|
|
if test $ac_cv_type_u_bits16_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define u_bits16_t unsigned short
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_sizeof_int" = 4; then
|
|
echo "$as_me:11523: checking for bits32_t" >&5
|
|
echo $ECHO_N "checking for bits32_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits32_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11529 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits32_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits32_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11544: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11547: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11550: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11553: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits32_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits32_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11563: result: $ac_cv_type_bits32_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits32_t" >&6
|
|
if test $ac_cv_type_bits32_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits32_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
elif test "$ac_cv_sizeof_long" = 4; then
|
|
echo "$as_me:11576: checking for bits32_t" >&5
|
|
echo $ECHO_N "checking for bits32_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits32_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11582 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits32_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits32_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11597: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11600: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11603: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11606: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits32_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits32_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11616: result: $ac_cv_type_bits32_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits32_t" >&6
|
|
if test $ac_cv_type_bits32_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits32_t long
|
|
EOF
|
|
|
|
fi
|
|
|
|
else
|
|
echo "$as_me:11629: checking for bits32_t" >&5
|
|
echo $ECHO_N "checking for bits32_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits32_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11635 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits32_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits32_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11650: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11653: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11656: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11659: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits32_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits32_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11669: result: $ac_cv_type_bits32_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits32_t" >&6
|
|
if test $ac_cv_type_bits32_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits32_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_sizeof_int" = 4; then
|
|
echo "$as_me:11684: checking for u_bits32_t" >&5
|
|
echo $ECHO_N "checking for u_bits32_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_bits32_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11690 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_bits32_t *) 0)
|
|
return 0;
|
|
if (sizeof (u_bits32_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11705: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11708: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11711: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11714: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_bits32_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_bits32_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11724: result: $ac_cv_type_u_bits32_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_bits32_t" >&6
|
|
if test $ac_cv_type_u_bits32_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define u_bits32_t unsigned int
|
|
EOF
|
|
|
|
fi
|
|
|
|
elif test "$ac_cv_sizeof_long" = 4; then
|
|
echo "$as_me:11737: checking for u_bits32_t" >&5
|
|
echo $ECHO_N "checking for u_bits32_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_bits32_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11743 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_bits32_t *) 0)
|
|
return 0;
|
|
if (sizeof (u_bits32_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11758: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11761: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11764: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11767: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_bits32_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_bits32_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11777: result: $ac_cv_type_u_bits32_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_bits32_t" >&6
|
|
if test $ac_cv_type_u_bits32_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define u_bits32_t unsigned long
|
|
EOF
|
|
|
|
fi
|
|
|
|
else
|
|
echo "$as_me:11790: checking for u_bits32_t" >&5
|
|
echo $ECHO_N "checking for u_bits32_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_u_bits32_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11796 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((u_bits32_t *) 0)
|
|
return 0;
|
|
if (sizeof (u_bits32_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11811: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11814: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11817: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11820: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_u_bits32_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_u_bits32_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11830: result: $ac_cv_type_u_bits32_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_u_bits32_t" >&6
|
|
if test $ac_cv_type_u_bits32_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define u_bits32_t unsigned int
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_sizeof_char_p" = 8; then
|
|
echo "$as_me:11845: checking for bits64_t" >&5
|
|
echo $ECHO_N "checking for bits64_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits64_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11851 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits64_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits64_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11866: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11869: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11872: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11875: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits64_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits64_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11885: result: $ac_cv_type_bits64_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits64_t" >&6
|
|
if test $ac_cv_type_bits64_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits64_t char *
|
|
EOF
|
|
|
|
fi
|
|
|
|
elif test "$ac_cv_sizeof_double" = 8; then
|
|
echo "$as_me:11898: checking for bits64_t" >&5
|
|
echo $ECHO_N "checking for bits64_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits64_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11904 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits64_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits64_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11919: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11922: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11925: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11928: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits64_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits64_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11938: result: $ac_cv_type_bits64_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits64_t" >&6
|
|
if test $ac_cv_type_bits64_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits64_t double
|
|
EOF
|
|
|
|
fi
|
|
|
|
elif test -n "$ac_cv_type_long_long" && test "$ac_cv_sizeof_long_long" = 8; then
|
|
echo "$as_me:11951: checking for bits64_t" >&5
|
|
echo $ECHO_N "checking for bits64_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits64_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 11957 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits64_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits64_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:11972: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11975: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:11978: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:11981: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits64_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits64_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:11991: result: $ac_cv_type_bits64_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits64_t" >&6
|
|
if test $ac_cv_type_bits64_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits64_t long long
|
|
EOF
|
|
|
|
fi
|
|
|
|
elif test "$ac_cv_sizeof_long" = 8; then
|
|
echo "$as_me:12004: checking for bits64_t" >&5
|
|
echo $ECHO_N "checking for bits64_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits64_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12010 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits64_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits64_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12025: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12028: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12031: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12034: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits64_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits64_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12044: result: $ac_cv_type_bits64_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits64_t" >&6
|
|
if test $ac_cv_type_bits64_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits64_t long
|
|
EOF
|
|
|
|
fi
|
|
|
|
else
|
|
echo "$as_me:12057: checking for bits64_t" >&5
|
|
echo $ECHO_N "checking for bits64_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_bits64_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12063 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((bits64_t *) 0)
|
|
return 0;
|
|
if (sizeof (bits64_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12078: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12081: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12084: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12087: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_bits64_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_bits64_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12097: result: $ac_cv_type_bits64_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_bits64_t" >&6
|
|
if test $ac_cv_type_bits64_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define bits64_t double
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_sizeof_int" = "$ac_cv_sizeof_char_p"; then
|
|
echo "$as_me:12112: checking for ptrdiff_t" >&5
|
|
echo $ECHO_N "checking for ptrdiff_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_ptrdiff_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12118 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((ptrdiff_t *) 0)
|
|
return 0;
|
|
if (sizeof (ptrdiff_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12133: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12136: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12139: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12142: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_ptrdiff_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_ptrdiff_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12152: result: $ac_cv_type_ptrdiff_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_ptrdiff_t" >&6
|
|
if test $ac_cv_type_ptrdiff_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define ptrdiff_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
elif test "$ac_cv_sizeof_long" = "$ac_cv_sizeof_char_p"; then
|
|
echo "$as_me:12165: checking for ptrdiff_t" >&5
|
|
echo $ECHO_N "checking for ptrdiff_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_ptrdiff_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12171 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((ptrdiff_t *) 0)
|
|
return 0;
|
|
if (sizeof (ptrdiff_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12186: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12189: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12192: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12195: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_ptrdiff_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_ptrdiff_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12205: result: $ac_cv_type_ptrdiff_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_ptrdiff_t" >&6
|
|
if test $ac_cv_type_ptrdiff_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define ptrdiff_t long
|
|
EOF
|
|
|
|
fi
|
|
|
|
elif test "$ac_cv_type_long_long" = yes && test "$ac_cv_sizeof_long_long" = "$ac_cv_sizeof_char_p"; then
|
|
echo "$as_me:12218: checking for ptrdiff_t" >&5
|
|
echo $ECHO_N "checking for ptrdiff_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_ptrdiff_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12224 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((ptrdiff_t *) 0)
|
|
return 0;
|
|
if (sizeof (ptrdiff_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12239: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12242: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12245: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12248: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_ptrdiff_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_ptrdiff_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12258: result: $ac_cv_type_ptrdiff_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_ptrdiff_t" >&6
|
|
if test $ac_cv_type_ptrdiff_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define ptrdiff_t long long
|
|
EOF
|
|
|
|
fi
|
|
|
|
else
|
|
echo "$as_me:12271: checking for ptrdiff_t" >&5
|
|
echo $ECHO_N "checking for ptrdiff_t... $ECHO_C" >&6
|
|
if test "${ac_cv_type_ptrdiff_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12277 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
if ((ptrdiff_t *) 0)
|
|
return 0;
|
|
if (sizeof (ptrdiff_t))
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12292: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12295: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12298: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12301: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_type_ptrdiff_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_type_ptrdiff_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12311: result: $ac_cv_type_ptrdiff_t" >&5
|
|
echo "${ECHO_T}$ac_cv_type_ptrdiff_t" >&6
|
|
if test $ac_cv_type_ptrdiff_t = yes; then
|
|
:
|
|
else
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define ptrdiff_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:12325: checking whether stat file-mode macros are broken" >&5
|
|
echo $ECHO_N "checking whether stat file-mode macros are broken... $ECHO_C" >&6
|
|
if test "${ac_cv_header_stat_broken+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12331 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
#if defined(S_ISBLK) && defined(S_IFDIR)
|
|
# if S_ISBLK (S_IFDIR)
|
|
You lose.
|
|
# endif
|
|
#endif
|
|
|
|
#if defined(S_ISBLK) && defined(S_IFCHR)
|
|
# if S_ISBLK (S_IFCHR)
|
|
You lose.
|
|
# endif
|
|
#endif
|
|
|
|
#if defined(S_ISLNK) && defined(S_IFREG)
|
|
# if S_ISLNK (S_IFREG)
|
|
You lose.
|
|
# endif
|
|
#endif
|
|
|
|
#if defined(S_ISSOCK) && defined(S_IFREG)
|
|
# if S_ISSOCK (S_IFREG)
|
|
You lose.
|
|
# endif
|
|
#endif
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "You lose" >/dev/null 2>&1; then
|
|
ac_cv_header_stat_broken=yes
|
|
else
|
|
ac_cv_header_stat_broken=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:12370: result: $ac_cv_header_stat_broken" >&5
|
|
echo "${ECHO_T}$ac_cv_header_stat_broken" >&6
|
|
if test $ac_cv_header_stat_broken = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define STAT_MACROS_BROKEN 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12380: checking whether #! works in shell scripts" >&5
|
|
echo $ECHO_N "checking whether #! works in shell scripts... $ECHO_C" >&6
|
|
if test "${ac_cv_sys_interpreter+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
echo '#! /bin/cat
|
|
exit 69
|
|
' >conftest
|
|
chmod u+x conftest
|
|
(SHELL=/bin/sh; export SHELL; ./conftest >/dev/null)
|
|
if test $? -ne 69; then
|
|
ac_cv_sys_interpreter=yes
|
|
else
|
|
ac_cv_sys_interpreter=no
|
|
fi
|
|
rm -f conftest
|
|
fi
|
|
echo "$as_me:12397: result: $ac_cv_sys_interpreter" >&5
|
|
echo "${ECHO_T}$ac_cv_sys_interpreter" >&6
|
|
interpval=$ac_cv_sys_interpreter
|
|
|
|
if test $ac_cv_sys_interpreter = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_HASH_BANG_EXEC 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_lstat" = "no"; then
|
|
echo "$as_me:12409: checking for lstat" >&5
|
|
echo $ECHO_N "checking for lstat... $ECHO_C" >&6
|
|
if test "${bash_cv_func_lstat+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12415 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
lstat(".",(struct stat *)0);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:12430: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12433: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:12436: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12439: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_func_lstat=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_func_lstat=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12449: result: $bash_cv_func_lstat" >&5
|
|
echo "${ECHO_T}$bash_cv_func_lstat" >&6
|
|
if test $bash_cv_func_lstat = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_LSTAT 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:12460: checking whether the ctype macros accept non-ascii characters" >&5
|
|
echo $ECHO_N "checking whether the ctype macros accept non-ascii characters... $ECHO_C" >&6
|
|
if test "${bash_cv_func_ctype_nonascii+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:12466: WARNING: cannot check ctype macros if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check ctype macros if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_func_ctype_nonascii=no
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12472 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_LOCALE_H
|
|
#include <locale.h>
|
|
#endif
|
|
#include <stdio.h>
|
|
#include <ctype.h>
|
|
|
|
main(c, v)
|
|
int c;
|
|
char *v[];
|
|
{
|
|
char *deflocale;
|
|
unsigned char x;
|
|
int r1, r2;
|
|
|
|
#ifdef HAVE_SETLOCALE
|
|
/* We take a shot here. If that locale is not known, try the
|
|
system default. We try this one because '\342' (226) is
|
|
known to be a printable character in that locale. */
|
|
deflocale = setlocale(LC_ALL, "en_US.ISO8859-1");
|
|
if (deflocale == 0)
|
|
deflocale = setlocale(LC_ALL, "");
|
|
#endif
|
|
|
|
x = '\342';
|
|
r1 = isprint(x);
|
|
x -= 128;
|
|
r2 = isprint(x);
|
|
exit (r1 == 0 || r2 == 0);
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:12507: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12510: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:12512: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12515: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_func_ctype_nonascii=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_func_ctype_nonascii=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:12528: result: $bash_cv_func_ctype_nonascii" >&5
|
|
echo "${ECHO_T}$bash_cv_func_ctype_nonascii" >&6
|
|
if test $bash_cv_func_ctype_nonascii = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define CTYPE_NON_ASCII 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12537: checking if dup2 fails to clear the close-on-exec flag" >&5
|
|
echo $ECHO_N "checking if dup2 fails to clear the close-on-exec flag... $ECHO_C" >&6
|
|
if test "${bash_cv_dup2_broken+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:12543: WARNING: cannot check dup2 if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check dup2 if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_dup2_broken=no
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12548 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
main()
|
|
{
|
|
int fd1, fd2, fl;
|
|
fd1 = open("/dev/null", 2);
|
|
if (fcntl(fd1, 2, 1) < 0)
|
|
exit(1);
|
|
fd2 = dup2(fd1, 1);
|
|
if (fd2 < 0)
|
|
exit(2);
|
|
fl = fcntl(fd2, 1, 0);
|
|
/* fl will be 1 if dup2 did not reset the close-on-exec flag. */
|
|
exit(fl != 1);
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:12569: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12572: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:12574: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12577: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_dup2_broken=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_dup2_broken=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:12591: result: $bash_cv_dup2_broken" >&5
|
|
echo "${ECHO_T}$bash_cv_dup2_broken" >&6
|
|
if test $bash_cv_dup2_broken = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define DUP2_BROKEN 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12600: checking whether pgrps need synchronization" >&5
|
|
echo $ECHO_N "checking whether pgrps need synchronization... $ECHO_C" >&6
|
|
if test "${bash_cv_pgrp_pipe+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:12606: WARNING: cannot check pgrp synchronization if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check pgrp synchronization if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_pgrp_pipe=no
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12611 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif
|
|
main()
|
|
{
|
|
# ifdef GETPGRP_VOID
|
|
# define getpgID() getpgrp()
|
|
# else
|
|
# define getpgID() getpgrp(0)
|
|
# define setpgid(x,y) setpgrp(x,y)
|
|
# endif
|
|
int pid1, pid2, fds[2];
|
|
int status;
|
|
char ok;
|
|
|
|
switch (pid1 = fork()) {
|
|
case -1:
|
|
exit(1);
|
|
case 0:
|
|
setpgid(0, getpid());
|
|
exit(0);
|
|
}
|
|
setpgid(pid1, pid1);
|
|
|
|
sleep(2); /* let first child die */
|
|
|
|
if (pipe(fds) < 0)
|
|
exit(2);
|
|
|
|
switch (pid2 = fork()) {
|
|
case -1:
|
|
exit(3);
|
|
case 0:
|
|
setpgid(0, pid1);
|
|
ok = getpgID() == pid1;
|
|
write(fds[1], &ok, 1);
|
|
exit(0);
|
|
}
|
|
setpgid(pid2, pid1);
|
|
|
|
close(fds[1]);
|
|
if (read(fds[0], &ok, 1) != 1)
|
|
exit(4);
|
|
wait(&status);
|
|
wait(&status);
|
|
exit(ok ? 0 : 5);
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:12664: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12667: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:12669: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12672: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_pgrp_pipe=no
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_pgrp_pipe=yes
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:12686: result: $bash_cv_pgrp_pipe" >&5
|
|
echo "${ECHO_T}$bash_cv_pgrp_pipe" >&6
|
|
if test $bash_cv_pgrp_pipe = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define PGRP_PIPE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12695: checking for type of signal functions" >&5
|
|
echo $ECHO_N "checking for type of signal functions... $ECHO_C" >&6
|
|
if test "${bash_cv_signal_vintage+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12702 "configure"
|
|
#include "confdefs.h"
|
|
#include <signal.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
sigset_t ss;
|
|
struct sigaction sa;
|
|
sigemptyset(&ss); sigsuspend(&ss);
|
|
sigaction(SIGINT, &sa, (struct sigaction *) 0);
|
|
sigprocmask(SIG_BLOCK, &ss, (sigset_t *) 0);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:12720: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12723: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:12726: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12729: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_signal_vintage=posix
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12737 "configure"
|
|
#include "confdefs.h"
|
|
#include <signal.h>
|
|
int
|
|
main ()
|
|
{
|
|
|
|
int mask = sigmask(SIGINT);
|
|
sigsetmask(mask); sigblock(mask); sigpause(mask);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:12752: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12755: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:12758: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12761: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_signal_vintage=4.2bsd
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12769 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <signal.h>
|
|
RETSIGTYPE foo() { }
|
|
int
|
|
main ()
|
|
{
|
|
|
|
int mask = sigmask(SIGINT);
|
|
sigset(SIGINT, foo); sigrelse(SIGINT);
|
|
sighold(SIGINT); sigpause(SIGINT);
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:12787: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12790: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:12793: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12796: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_signal_vintage=svr3
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_signal_vintage=v7
|
|
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:12815: result: $bash_cv_signal_vintage" >&5
|
|
echo "${ECHO_T}$bash_cv_signal_vintage" >&6
|
|
if test "$bash_cv_signal_vintage" = posix; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_POSIX_SIGNALS 1
|
|
EOF
|
|
|
|
elif test "$bash_cv_signal_vintage" = "4.2bsd"; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_BSD_SIGNALS 1
|
|
EOF
|
|
|
|
elif test "$bash_cv_signal_vintage" = svr3; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_USG_SIGHOLD 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12834: checking for sys_errlist and sys_nerr" >&5
|
|
echo $ECHO_N "checking for sys_errlist and sys_nerr... $ECHO_C" >&6
|
|
if test "${bash_cv_sys_errlist+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12840 "configure"
|
|
#include "confdefs.h"
|
|
#include <errno.h>
|
|
int
|
|
main ()
|
|
{
|
|
extern char *sys_errlist[];
|
|
extern int sys_nerr;
|
|
char *msg = sys_errlist[sys_nerr - 1];
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:12854: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12857: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:12860: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12863: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_sys_errlist=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_sys_errlist=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12873: result: $bash_cv_sys_errlist" >&5
|
|
echo "${ECHO_T}$bash_cv_sys_errlist" >&6
|
|
if test $bash_cv_sys_errlist = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_SYS_ERRLIST 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12882: checking for sys_siglist in system C library" >&5
|
|
echo $ECHO_N "checking for sys_siglist in system C library... $ECHO_C" >&6
|
|
if test "${bash_cv_sys_siglist+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:12888: WARNING: cannot check for sys_siglist if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check for sys_siglist if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_sys_siglist=no
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12893 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#ifndef SYS_SIGLIST_DECLARED
|
|
extern char *sys_siglist[];
|
|
#endif
|
|
main()
|
|
{
|
|
char *msg = sys_siglist[2];
|
|
exit(msg == 0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:12911: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12914: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:12916: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12919: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_sys_siglist=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_sys_siglist=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:12932: result: $bash_cv_sys_siglist" >&5
|
|
echo "${ECHO_T}$bash_cv_sys_siglist" >&6
|
|
if test $bash_cv_sys_siglist = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_SYS_SIGLIST 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12941: checking for _sys_siglist in signal.h or unistd.h" >&5
|
|
echo $ECHO_N "checking for _sys_siglist in signal.h or unistd.h... $ECHO_C" >&6
|
|
if test "${bash_cv_decl_under_sys_siglist+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 12947 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
int
|
|
main ()
|
|
{
|
|
char *msg = _sys_siglist[2];
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:12964: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12967: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:12970: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:12973: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_decl_under_sys_siglist=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_decl_under_sys_siglist=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:12983: result: $bash_cv_decl_under_sys_siglist" >&5
|
|
echo "${ECHO_T}$bash_cv_decl_under_sys_siglist" >&6
|
|
if test $bash_cv_decl_under_sys_siglist = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define UNDER_SYS_SIGLIST_DECLARED 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:12992: checking for _sys_siglist in system C library" >&5
|
|
echo $ECHO_N "checking for _sys_siglist in system C library... $ECHO_C" >&6
|
|
if test "${bash_cv_under_sys_siglist+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:12998: WARNING: cannot check for _sys_siglist if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check for _sys_siglist if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_under_sys_siglist=no
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13003 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#ifndef UNDER_SYS_SIGLIST_DECLARED
|
|
extern char *_sys_siglist[];
|
|
#endif
|
|
main()
|
|
{
|
|
char *msg = (char *)_sys_siglist[2];
|
|
exit(msg == 0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:13021: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13024: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:13026: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13029: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_under_sys_siglist=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_under_sys_siglist=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:13042: result: $bash_cv_under_sys_siglist" >&5
|
|
echo "${ECHO_T}$bash_cv_under_sys_siglist" >&6
|
|
if test $bash_cv_under_sys_siglist = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_UNDER_SYS_SIGLIST 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13051: checking whether signal handlers are of type void" >&5
|
|
echo $ECHO_N "checking whether signal handlers are of type void... $ECHO_C" >&6
|
|
if test "${bash_cv_void_sighandler+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13057 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
#ifdef signal
|
|
#undef signal
|
|
#endif
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
void (*signal ()) ();
|
|
int
|
|
main ()
|
|
{
|
|
int i;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13077: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13080: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13083: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13086: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_void_sighandler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_void_sighandler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:13096: result: $bash_cv_void_sighandler" >&5
|
|
echo "${ECHO_T}$bash_cv_void_sighandler" >&6
|
|
if test $bash_cv_void_sighandler = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define VOID_SIGHANDLER 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13105: checking for clock_t" >&5
|
|
echo $ECHO_N "checking for clock_t... $ECHO_C" >&6
|
|
if test "${bash_cv_type_clock_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13111 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#include <sys/times.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "clock_t" >/dev/null 2>&1; then
|
|
bash_cv_type_clock_t=yes
|
|
else
|
|
bash_cv_type_clock_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
echo "$as_me:13134: result: $bash_cv_type_clock_t" >&5
|
|
echo "${ECHO_T}$bash_cv_type_clock_t" >&6
|
|
|
|
if test $bash_cv_type_clock_t = no; then
|
|
cat >>confdefs.h <<EOF
|
|
#define clock_t long
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13144: checking for sigset_t" >&5
|
|
echo $ECHO_N "checking for sigset_t... $ECHO_C" >&6
|
|
if test "${bash_cv_type_sigset_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13150 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#include <signal.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "sigset_t" >/dev/null 2>&1; then
|
|
bash_cv_type_sigset_t=yes
|
|
else
|
|
bash_cv_type_sigset_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
echo "$as_me:13173: result: $bash_cv_type_sigset_t" >&5
|
|
echo "${ECHO_T}$bash_cv_type_sigset_t" >&6
|
|
|
|
if test $bash_cv_type_sigset_t = no; then
|
|
cat >>confdefs.h <<EOF
|
|
#define sigset_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13183: checking for quad_t" >&5
|
|
echo $ECHO_N "checking for quad_t... $ECHO_C" >&6
|
|
if test "${bash_cv_type_quad_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13189 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "quad_t" >/dev/null 2>&1; then
|
|
bash_cv_type_quad_t=yes
|
|
else
|
|
bash_cv_type_quad_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
echo "$as_me:13211: result: $bash_cv_type_quad_t" >&5
|
|
echo "${ECHO_T}$bash_cv_type_quad_t" >&6
|
|
if test $bash_cv_type_quad_t = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_QUAD_T 1
|
|
EOF
|
|
|
|
fi
|
|
if test $bash_cv_type_quad_t = no; then
|
|
cat >>confdefs.h <<EOF
|
|
#define quad_t long
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13226: checking for intmax_t" >&5
|
|
echo $ECHO_N "checking for intmax_t... $ECHO_C" >&6
|
|
if test "${bash_cv_type_intmax_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13232 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "intmax_t" >/dev/null 2>&1; then
|
|
bash_cv_type_intmax_t=yes
|
|
else
|
|
bash_cv_type_intmax_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
echo "$as_me:13254: result: $bash_cv_type_intmax_t" >&5
|
|
echo "${ECHO_T}$bash_cv_type_intmax_t" >&6
|
|
|
|
if test $bash_cv_type_intmax_t = no; then
|
|
cat >>confdefs.h <<EOF
|
|
#define intmax_t $bash_cv_type_long_long
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13264: checking for uintmax_t" >&5
|
|
echo $ECHO_N "checking for uintmax_t... $ECHO_C" >&6
|
|
if test "${bash_cv_type_uintmax_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13270 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "uintmax_t" >/dev/null 2>&1; then
|
|
bash_cv_type_uintmax_t=yes
|
|
else
|
|
bash_cv_type_uintmax_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
echo "$as_me:13292: result: $bash_cv_type_uintmax_t" >&5
|
|
echo "${ECHO_T}$bash_cv_type_uintmax_t" >&6
|
|
|
|
if test $bash_cv_type_uintmax_t = no; then
|
|
cat >>confdefs.h <<EOF
|
|
#define uintmax_t $bash_cv_type_unsigned_long_long
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_header_sys_socket_h" = "yes"; then
|
|
|
|
echo "$as_me:13304: checking for socklen_t" >&5
|
|
echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6
|
|
if test "${bash_cv_type_socklen_t+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13310 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#if HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
#include <sys/socket.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "socklen_t" >/dev/null 2>&1; then
|
|
bash_cv_type_socklen_t=yes
|
|
else
|
|
bash_cv_type_socklen_t=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
echo "$as_me:13333: result: $bash_cv_type_socklen_t" >&5
|
|
echo "${ECHO_T}$bash_cv_type_socklen_t" >&6
|
|
if test $bash_cv_type_socklen_t = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_SOCKLEN_T 1
|
|
EOF
|
|
|
|
fi
|
|
if test $bash_cv_type_socklen_t = no; then
|
|
cat >>confdefs.h <<EOF
|
|
#define socklen_t int
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
echo "$as_me:13349: checking for size and type of struct rlimit fields" >&5
|
|
echo $ECHO_N "checking for size and type of struct rlimit fields... $ECHO_C" >&6
|
|
if test "${bash_cv_type_rlimit+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13355 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/resource.h>
|
|
int
|
|
main ()
|
|
{
|
|
rlim_t xxx;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13368: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13371: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13374: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13377: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_type_rlimit=rlim_t
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:13385: WARNING: cannot check quad_t if cross compiling -- defaulting to long" >&5
|
|
echo "$as_me: WARNING: cannot check quad_t if cross compiling -- defaulting to long" >&2;}
|
|
bash_cv_type_rlimit=long
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13390 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <sys/resource.h>
|
|
main()
|
|
{
|
|
#ifdef HAVE_QUAD_T
|
|
struct rlimit rl;
|
|
if (sizeof(rl.rlim_cur) == sizeof(quad_t))
|
|
exit(0);
|
|
#endif
|
|
exit(1);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:13407: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13410: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:13412: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13415: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_type_rlimit=quad_t
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_type_rlimit=long
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
|
|
echo "$as_me:13431: result: $bash_cv_type_rlimit" >&5
|
|
echo "${ECHO_T}$bash_cv_type_rlimit" >&6
|
|
if test $bash_cv_type_rlimit = quad_t; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define RLIMTYPE quad_t
|
|
EOF
|
|
|
|
elif test $bash_cv_type_rlimit = rlim_t; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define RLIMTYPE rlim_t
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13445: checking for struct termios.c_line" >&5
|
|
echo $ECHO_N "checking for struct termios.c_line... $ECHO_C" >&6
|
|
if test "${ac_cv_member_struct_termios_c_line+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13451 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <termios.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
static struct termios ac_aggr;
|
|
if (ac_aggr.c_line)
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13468: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13471: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13474: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13477: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_member_struct_termios_c_line=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_member_struct_termios_c_line=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:13487: result: $ac_cv_member_struct_termios_c_line" >&5
|
|
echo "${ECHO_T}$ac_cv_member_struct_termios_c_line" >&6
|
|
if test $ac_cv_member_struct_termios_c_line = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define TERMIOS_LDISC 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13496: checking for struct termio.c_line" >&5
|
|
echo $ECHO_N "checking for struct termio.c_line... $ECHO_C" >&6
|
|
if test "${ac_cv_member_struct_termio_c_line+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13502 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <termio.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
static struct termio ac_aggr;
|
|
if (ac_aggr.c_line)
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13519: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13522: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13525: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13528: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_member_struct_termio_c_line=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_member_struct_termio_c_line=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:13538: result: $ac_cv_member_struct_termio_c_line" >&5
|
|
echo "${ECHO_T}$ac_cv_member_struct_termio_c_line" >&6
|
|
if test $ac_cv_member_struct_termio_c_line = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define TERMIO_LDISC 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13547: checking if struct dirent has a d_ino member" >&5
|
|
echo $ECHO_N "checking if struct dirent has a d_ino member... $ECHO_C" >&6
|
|
if test "${bash_cv_dirent_has_dino+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13553 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif /* HAVE_UNISTD_H */
|
|
#if defined(HAVE_DIRENT_H)
|
|
# include <dirent.h>
|
|
#else
|
|
# define dirent direct
|
|
# ifdef HAVE_SYS_NDIR_H
|
|
# include <sys/ndir.h>
|
|
# endif /* SYSNDIR */
|
|
# ifdef HAVE_SYS_DIR_H
|
|
# include <sys/dir.h>
|
|
# endif /* SYSDIR */
|
|
# ifdef HAVE_NDIR_H
|
|
# include <ndir.h>
|
|
# endif
|
|
#endif /* HAVE_DIRENT_H */
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
struct dirent d; int z; z = d.d_ino;
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13587: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13590: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13593: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13596: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_dirent_has_dino=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_dirent_has_dino=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
echo "$as_me:13607: result: $bash_cv_dirent_has_dino" >&5
|
|
echo "${ECHO_T}$bash_cv_dirent_has_dino" >&6
|
|
if test $bash_cv_dirent_has_dino = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define STRUCT_DIRENT_HAS_D_INO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13616: checking if struct dirent has a d_fileno member" >&5
|
|
echo $ECHO_N "checking if struct dirent has a d_fileno member... $ECHO_C" >&6
|
|
if test "${bash_cv_dirent_has_d_fileno+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13622 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif /* HAVE_UNISTD_H */
|
|
#if defined(HAVE_DIRENT_H)
|
|
# include <dirent.h>
|
|
#else
|
|
# define dirent direct
|
|
# ifdef HAVE_SYS_NDIR_H
|
|
# include <sys/ndir.h>
|
|
# endif /* SYSNDIR */
|
|
# ifdef HAVE_SYS_DIR_H
|
|
# include <sys/dir.h>
|
|
# endif /* SYSDIR */
|
|
# ifdef HAVE_NDIR_H
|
|
# include <ndir.h>
|
|
# endif
|
|
#endif /* HAVE_DIRENT_H */
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
struct dirent d; int z; z = d.d_fileno;
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13656: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13659: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13662: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13665: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_dirent_has_d_fileno=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_dirent_has_d_fileno=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
echo "$as_me:13676: result: $bash_cv_dirent_has_d_fileno" >&5
|
|
echo "${ECHO_T}$bash_cv_dirent_has_d_fileno" >&6
|
|
if test $bash_cv_dirent_has_d_fileno = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define STRUCT_DIRENT_HAS_D_FILENO 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13685: checking for struct winsize in sys/ioctl.h and termios.h" >&5
|
|
echo $ECHO_N "checking for struct winsize in sys/ioctl.h and termios.h... $ECHO_C" >&6
|
|
if test "${bash_cv_struct_winsize_header+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13691 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/ioctl.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct winsize x;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13704: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13707: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13710: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13713: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_struct_winsize_header=ioctl_h
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13720 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <termios.h>
|
|
int
|
|
main ()
|
|
{
|
|
struct winsize x;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13733: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13736: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13739: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13742: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_struct_winsize_header=termios_h
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_struct_winsize_header=other
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
if test $bash_cv_struct_winsize_header = ioctl_h; then
|
|
echo "$as_me:13757: result: sys/ioctl.h" >&5
|
|
echo "${ECHO_T}sys/ioctl.h" >&6
|
|
cat >>confdefs.h <<\EOF
|
|
#define STRUCT_WINSIZE_IN_SYS_IOCTL 1
|
|
EOF
|
|
|
|
elif test $bash_cv_struct_winsize_header = termios_h; then
|
|
echo "$as_me:13764: result: termios.h" >&5
|
|
echo "${ECHO_T}termios.h" >&6
|
|
cat >>confdefs.h <<\EOF
|
|
#define STRUCT_WINSIZE_IN_TERMIOS 1
|
|
EOF
|
|
|
|
else
|
|
echo "$as_me:13771: result: not found" >&5
|
|
echo "${ECHO_T}not found" >&6
|
|
fi
|
|
|
|
echo "$as_me:13775: checking for struct timeval in sys/time.h and time.h" >&5
|
|
echo $ECHO_N "checking for struct timeval in sys/time.h and time.h... $ECHO_C" >&6
|
|
if test "${bash_cv_struct_timeval+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13782 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/time.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "struct timeval" >/dev/null 2>&1; then
|
|
bash_cv_struct_timeval=yes
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13792 "configure"
|
|
#include "confdefs.h"
|
|
#include <time.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "struct timeval" >/dev/null 2>&1; then
|
|
bash_cv_struct_timeval=yes
|
|
else
|
|
bash_cv_struct_timeval=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
echo "$as_me:13810: result: $bash_cv_struct_timeval" >&5
|
|
echo "${ECHO_T}$bash_cv_struct_timeval" >&6
|
|
if test $bash_cv_struct_timeval = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_TIMEVAL 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13819: checking for struct stat.st_blocks" >&5
|
|
echo $ECHO_N "checking for struct stat.st_blocks... $ECHO_C" >&6
|
|
if test "${ac_cv_member_struct_stat_st_blocks+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13825 "configure"
|
|
#include "confdefs.h"
|
|
$ac_includes_default
|
|
int
|
|
main ()
|
|
{
|
|
static struct stat ac_aggr;
|
|
if (ac_aggr.st_blocks)
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13839: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13842: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13845: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13848: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_member_struct_stat_st_blocks=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_member_struct_stat_st_blocks=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:13858: result: $ac_cv_member_struct_stat_st_blocks" >&5
|
|
echo "${ECHO_T}$ac_cv_member_struct_stat_st_blocks" >&6
|
|
if test $ac_cv_member_struct_stat_st_blocks = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_STRUCT_STAT_ST_BLOCKS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13868: checking whether struct tm is in sys/time.h or time.h" >&5
|
|
echo $ECHO_N "checking whether struct tm is in sys/time.h or time.h... $ECHO_C" >&6
|
|
if test "${ac_cv_struct_tm+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13874 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <time.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
struct tm *tp; tp->tm_sec;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13888: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13891: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13894: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13897: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_struct_tm=time.h
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_struct_tm=sys/time.h
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:13907: result: $ac_cv_struct_tm" >&5
|
|
echo "${ECHO_T}$ac_cv_struct_tm" >&6
|
|
if test $ac_cv_struct_tm = sys/time.h; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define TM_IN_SYS_TIME 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:13917: checking for struct tm.tm_zone" >&5
|
|
echo $ECHO_N "checking for struct tm.tm_zone... $ECHO_C" >&6
|
|
if test "${ac_cv_member_struct_tm_tm_zone+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13923 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <$ac_cv_struct_tm>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
static struct tm ac_aggr;
|
|
if (ac_aggr.tm_zone)
|
|
return 0;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:13939: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13942: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:13945: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:13948: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_member_struct_tm_tm_zone=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_member_struct_tm_tm_zone=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:13958: result: $ac_cv_member_struct_tm_tm_zone" >&5
|
|
echo "${ECHO_T}$ac_cv_member_struct_tm_tm_zone" >&6
|
|
if test $ac_cv_member_struct_tm_tm_zone = yes; then
|
|
|
|
cat >>confdefs.h <<EOF
|
|
#define HAVE_STRUCT_TM_TM_ZONE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_member_struct_tm_tm_zone" = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_TM_ZONE 1
|
|
EOF
|
|
|
|
else
|
|
echo "$as_me:13975: checking for tzname" >&5
|
|
echo $ECHO_N "checking for tzname... $ECHO_C" >&6
|
|
if test "${ac_cv_var_tzname+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 13981 "configure"
|
|
#include "confdefs.h"
|
|
#include <time.h>
|
|
#ifndef tzname /* For SGI. */
|
|
extern char *tzname[]; /* RS6000 and others reject char **tzname. */
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
atoi(*tzname);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:13997: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14000: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14003: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14006: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_var_tzname=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_var_tzname=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:14016: result: $ac_cv_var_tzname" >&5
|
|
echo "${ECHO_T}$ac_cv_var_tzname" >&6
|
|
if test $ac_cv_var_tzname = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_TZNAME 1
|
|
EOF
|
|
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:14027: checking for struct timezone in sys/time.h and time.h" >&5
|
|
echo $ECHO_N "checking for struct timezone in sys/time.h and time.h... $ECHO_C" >&6
|
|
if test "${bash_cv_struct_timezone+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14034 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/time.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "struct timezone" >/dev/null 2>&1; then
|
|
bash_cv_struct_timezone=yes
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14044 "configure"
|
|
#include "confdefs.h"
|
|
#include <time.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "struct timezone" >/dev/null 2>&1; then
|
|
bash_cv_struct_timezone=yes
|
|
else
|
|
bash_cv_struct_timezone=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
echo "$as_me:14062: result: $bash_cv_struct_timezone" >&5
|
|
echo "${ECHO_T}$bash_cv_struct_timezone" >&6
|
|
if test $bash_cv_struct_timezone = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRUCT_TIMEZONE 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:14071: checking for the existence of strsignal" >&5
|
|
echo $ECHO_N "checking for the existence of strsignal... $ECHO_C" >&6
|
|
if test "${bash_cv_have_strsignal+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14077 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
int
|
|
main ()
|
|
{
|
|
char *s = (char *)strsignal(2);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:14090: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14093: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14096: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14099: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_have_strsignal=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_have_strsignal=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
|
|
echo "$as_me:14110: result: $bash_cv_have_strsignal" >&5
|
|
echo "${ECHO_T}$bash_cv_have_strsignal" >&6
|
|
if test $bash_cv_have_strsignal = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STRSIGNAL 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:14119: checking if opendir() opens non-directories" >&5
|
|
echo $ECHO_N "checking if opendir() opens non-directories... $ECHO_C" >&6
|
|
if test "${bash_cv_opendir_not_robust+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:14125: WARNING: cannot check opendir if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check opendir if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_opendir_not_robust=no
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14131 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif /* HAVE_UNISTD_H */
|
|
#if defined(HAVE_DIRENT_H)
|
|
# include <dirent.h>
|
|
#else
|
|
# define dirent direct
|
|
# ifdef HAVE_SYS_NDIR_H
|
|
# include <sys/ndir.h>
|
|
# endif /* SYSNDIR */
|
|
# ifdef HAVE_SYS_DIR_H
|
|
# include <sys/dir.h>
|
|
# endif /* SYSDIR */
|
|
# ifdef HAVE_NDIR_H
|
|
# include <ndir.h>
|
|
# endif
|
|
#endif /* HAVE_DIRENT_H */
|
|
main()
|
|
{
|
|
DIR *dir;
|
|
int fd, err;
|
|
err = mkdir("/tmp/bash-aclocal", 0700);
|
|
if (err < 0) {
|
|
perror("mkdir");
|
|
exit(1);
|
|
}
|
|
unlink("/tmp/bash-aclocal/not_a_directory");
|
|
fd = open("/tmp/bash-aclocal/not_a_directory", O_WRONLY|O_CREAT|O_EXCL, 0666);
|
|
write(fd, "\n", 1);
|
|
close(fd);
|
|
dir = opendir("/tmp/bash-aclocal/not_a_directory");
|
|
unlink("/tmp/bash-aclocal/not_a_directory");
|
|
rmdir("/tmp/bash-aclocal");
|
|
exit (dir == 0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:14174: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14177: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14179: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14182: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_opendir_not_robust=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_opendir_not_robust=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:14195: result: $bash_cv_opendir_not_robust" >&5
|
|
echo "${ECHO_T}$bash_cv_opendir_not_robust" >&6
|
|
if test $bash_cv_opendir_not_robust = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define OPENDIR_NOT_ROBUST 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:14204: checking whether ulimit can substitute for getdtablesize" >&5
|
|
echo $ECHO_N "checking whether ulimit can substitute for getdtablesize... $ECHO_C" >&6
|
|
if test "${bash_cv_ulimit_maxfds+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:14210: WARNING: cannot check ulimit if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check ulimit if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_ulimit_maxfds=no
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14216 "configure"
|
|
#include "confdefs.h"
|
|
|
|
main()
|
|
{
|
|
long maxfds = ulimit(4, 0L);
|
|
exit (maxfds == -1L);
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:14227: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14230: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14232: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14235: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_ulimit_maxfds=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_ulimit_maxfds=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:14248: result: $bash_cv_ulimit_maxfds" >&5
|
|
echo "${ECHO_T}$bash_cv_ulimit_maxfds" >&6
|
|
if test $bash_cv_ulimit_maxfds = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define ULIMIT_MAXFDS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:14257: checking to see if getenv can be redefined" >&5
|
|
echo $ECHO_N "checking to see if getenv can be redefined... $ECHO_C" >&6
|
|
if test "${bash_cv_getenv_redef+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:14263: WARNING: cannot check getenv redefinition if cross compiling -- defaulting to yes" >&5
|
|
echo "$as_me: WARNING: cannot check getenv redefinition if cross compiling -- defaulting to yes" >&2;}
|
|
bash_cv_getenv_redef=yes
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14269 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif
|
|
#ifndef __STDC__
|
|
# ifndef const
|
|
# define const
|
|
# endif
|
|
#endif
|
|
char *
|
|
getenv (name)
|
|
#if defined (__linux__) || defined (__bsdi__) || defined (convex)
|
|
const char *name;
|
|
#else
|
|
char const *name;
|
|
#endif /* !__linux__ && !__bsdi__ && !convex */
|
|
{
|
|
return "42";
|
|
}
|
|
main()
|
|
{
|
|
char *s;
|
|
/* The next allows this program to run, but does not allow bash to link
|
|
when it redefines getenv. I'm not really interested in figuring out
|
|
why not. */
|
|
#if defined (NeXT)
|
|
exit(1);
|
|
#endif
|
|
s = getenv("ABCDE");
|
|
exit(s == 0); /* force optimizer to leave getenv in */
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:14305: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14308: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14310: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14313: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_getenv_redef=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_getenv_redef=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:14326: result: $bash_cv_getenv_redef" >&5
|
|
echo "${ECHO_T}$bash_cv_getenv_redef" >&6
|
|
if test $bash_cv_getenv_redef = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define CAN_REDEFINE_GETENV 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_getcwd" = "yes"; then
|
|
echo "$as_me:14336: checking if getcwd() calls popen()" >&5
|
|
echo $ECHO_N "checking if getcwd() calls popen()... $ECHO_C" >&6
|
|
if test "${bash_cv_getcwd_calls_popen+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:14342: WARNING: cannot check whether getcwd calls popen if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check whether getcwd calls popen if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_getcwd_calls_popen=no
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14348 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#ifndef __STDC__
|
|
#ifndef const
|
|
#define const
|
|
#endif
|
|
#endif
|
|
|
|
int popen_called;
|
|
|
|
FILE *
|
|
popen(command, type)
|
|
const char *command;
|
|
const char *type;
|
|
{
|
|
popen_called = 1;
|
|
return (FILE *)NULL;
|
|
}
|
|
|
|
FILE *_popen(command, type)
|
|
const char *command;
|
|
const char *type;
|
|
{
|
|
return (popen (command, type));
|
|
}
|
|
|
|
int
|
|
pclose(stream)
|
|
FILE *stream;
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
_pclose(stream)
|
|
FILE *stream;
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
main()
|
|
{
|
|
char lbuf[32];
|
|
popen_called = 0;
|
|
getcwd(lbuf, 32);
|
|
exit (popen_called);
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:14404: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14407: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14409: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14412: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_getcwd_calls_popen=no
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_getcwd_calls_popen=yes
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:14425: result: $bash_cv_getcwd_calls_popen" >&5
|
|
echo "${ECHO_T}$bash_cv_getcwd_calls_popen" >&6
|
|
if test $bash_cv_getcwd_calls_popen = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define GETCWD_BROKEN 1
|
|
EOF
|
|
|
|
LIBOBJS="$LIBOBJS getcwd.$ac_objext"
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:14437: checking for presence of POSIX-style sigsetjmp/siglongjmp" >&5
|
|
echo $ECHO_N "checking for presence of POSIX-style sigsetjmp/siglongjmp... $ECHO_C" >&6
|
|
if test "${bash_cv_func_sigsetjmp+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:14443: WARNING: cannot check for sigsetjmp/siglongjmp if cross-compiling -- defaulting to missing" >&5
|
|
echo "$as_me: WARNING: cannot check for sigsetjmp/siglongjmp if cross-compiling -- defaulting to missing" >&2;}
|
|
bash_cv_func_sigsetjmp=missing
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14449 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
#include <setjmp.h>
|
|
|
|
main()
|
|
{
|
|
#if !defined (_POSIX_VERSION) || !defined (HAVE_POSIX_SIGNALS)
|
|
exit (1);
|
|
#else
|
|
|
|
int code;
|
|
sigset_t set, oset;
|
|
sigjmp_buf xx;
|
|
|
|
/* get the mask */
|
|
sigemptyset(&set);
|
|
sigemptyset(&oset);
|
|
sigprocmask(SIG_BLOCK, (sigset_t *)NULL, &set);
|
|
sigprocmask(SIG_BLOCK, (sigset_t *)NULL, &oset);
|
|
|
|
/* save it */
|
|
code = sigsetjmp(xx, 1);
|
|
if (code)
|
|
exit(0); /* could get sigmask and compare to oset here. */
|
|
|
|
/* change it */
|
|
sigaddset(&set, SIGINT);
|
|
sigprocmask(SIG_BLOCK, &set, (sigset_t *)NULL);
|
|
|
|
/* and siglongjmp */
|
|
siglongjmp(xx, 10);
|
|
exit(1);
|
|
#endif
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:14491: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14494: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14496: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14499: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_func_sigsetjmp=present
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_func_sigsetjmp=missing
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:14512: result: $bash_cv_func_sigsetjmp" >&5
|
|
echo "${ECHO_T}$bash_cv_func_sigsetjmp" >&6
|
|
if test $bash_cv_func_sigsetjmp = present; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_POSIX_SIGSETJMP 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:14521: checking whether or not strcoll and strcmp differ" >&5
|
|
echo $ECHO_N "checking whether or not strcoll and strcmp differ... $ECHO_C" >&6
|
|
if test "${bash_cv_func_strcoll_broken+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:14527: WARNING: cannot check strcoll if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check strcoll if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_func_strcoll_broken=no
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14533 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#if defined (HAVE_LOCALE_H)
|
|
#include <locale.h>
|
|
#endif
|
|
|
|
main(c, v)
|
|
int c;
|
|
char *v[];
|
|
{
|
|
int r1, r2;
|
|
char *deflocale, *defcoll;
|
|
|
|
#ifdef HAVE_SETLOCALE
|
|
deflocale = setlocale(LC_ALL, "");
|
|
defcoll = setlocale(LC_COLLATE, "");
|
|
#endif
|
|
|
|
#ifdef HAVE_STRCOLL
|
|
/* These two values are taken from tests/glob-test. */
|
|
r1 = strcoll("abd", "aXd");
|
|
#else
|
|
r1 = 0;
|
|
#endif
|
|
r2 = strcmp("abd", "aXd");
|
|
|
|
/* These two should both be greater than 0. It is permissible for
|
|
a system to return different values, as long as the sign is the
|
|
same. */
|
|
|
|
/* Exit with 1 (failure) if these two values are both > 0, since
|
|
this tests whether strcoll(3) is broken with respect to strcmp(3)
|
|
in the default locale. */
|
|
exit (r1 > 0 && r2 > 0);
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:14573: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14576: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14578: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14581: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_func_strcoll_broken=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_func_strcoll_broken=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:14594: result: $bash_cv_func_strcoll_broken" >&5
|
|
echo "${ECHO_T}$bash_cv_func_strcoll_broken" >&6
|
|
if test $bash_cv_func_strcoll_broken = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define STRCOLL_BROKEN 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$ac_cv_func_putenv" = "yes"; then
|
|
|
|
echo "$as_me:14605: checking for standard-conformant putenv declaration" >&5
|
|
echo $ECHO_N "checking for standard-conformant putenv declaration... $ECHO_C" >&6
|
|
if test "${bash_cv_std_putenv+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14611 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#ifndef __STDC__
|
|
# ifndef const
|
|
# define const
|
|
# endif
|
|
#endif
|
|
#ifdef PROTOTYPES
|
|
extern int putenv (char *);
|
|
#else
|
|
extern int putenv ();
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return (putenv == 0);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:14638: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14641: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14644: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14647: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_std_putenv=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_std_putenv=no
|
|
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:14658: result: $bash_cv_std_putenv" >&5
|
|
echo "${ECHO_T}$bash_cv_std_putenv" >&6
|
|
if test $bash_cv_std_putenv = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STD_PUTENV 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
else
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STD_PUTENV 1
|
|
EOF
|
|
|
|
fi
|
|
if test "$ac_cv_func_unsetenv" = "yes"; then
|
|
|
|
echo "$as_me:14675: checking for standard-conformant unsetenv declaration" >&5
|
|
echo $ECHO_N "checking for standard-conformant unsetenv declaration... $ECHO_C" >&6
|
|
if test "${bash_cv_std_unsetenv+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14681 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#ifndef __STDC__
|
|
# ifndef const
|
|
# define const
|
|
# endif
|
|
#endif
|
|
#ifdef PROTOTYPES
|
|
extern int unsetenv (const char *);
|
|
#else
|
|
extern int unsetenv ();
|
|
#endif
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return (unsetenv == 0);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:14708: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14711: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14714: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14717: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_std_unsetenv=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_std_unsetenv=no
|
|
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:14728: result: $bash_cv_std_unsetenv" >&5
|
|
echo "${ECHO_T}$bash_cv_std_unsetenv" >&6
|
|
if test $bash_cv_std_unsetenv = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STD_UNSETENV 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
else
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_STD_UNSETENV 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:14744: checking for printf floating point output in hex notation" >&5
|
|
echo $ECHO_N "checking for printf floating point output in hex notation... $ECHO_C" >&6
|
|
if test "${bash_cv_printf_a_format+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:14750: WARNING: cannot check printf if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check printf if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_printf_a_format=no
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14756 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int
|
|
main()
|
|
{
|
|
double y = 0.0;
|
|
char abuf[1024];
|
|
|
|
sprintf(abuf, "%A", y);
|
|
exit(strchr(abuf, 'P') == (char *)0);
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:14774: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14777: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14779: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14782: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_printf_a_format=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_printf_a_format=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:14795: result: $bash_cv_printf_a_format" >&5
|
|
echo "${ECHO_T}$bash_cv_printf_a_format" >&6
|
|
if test $bash_cv_printf_a_format = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_PRINTF_A_FORMAT 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:14804: checking if signal handlers must be reinstalled when invoked" >&5
|
|
echo $ECHO_N "checking if signal handlers must be reinstalled when invoked... $ECHO_C" >&6
|
|
if test "${bash_cv_must_reinstall_sighandlers+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:14810: WARNING: cannot check signal handling if cross compiling -- defaulting to no" >&5
|
|
echo "$as_me: WARNING: cannot check signal handling if cross compiling -- defaulting to no" >&2;}
|
|
bash_cv_must_reinstall_sighandlers=no
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14816 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <signal.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
typedef RETSIGTYPE sigfunc();
|
|
|
|
int nsigint;
|
|
|
|
#ifdef HAVE_POSIX_SIGNALS
|
|
sigfunc *
|
|
set_signal_handler(sig, handler)
|
|
int sig;
|
|
sigfunc *handler;
|
|
{
|
|
struct sigaction act, oact;
|
|
act.sa_handler = handler;
|
|
act.sa_flags = 0;
|
|
sigemptyset (&act.sa_mask);
|
|
sigemptyset (&oact.sa_mask);
|
|
sigaction (sig, &act, &oact);
|
|
return (oact.sa_handler);
|
|
}
|
|
#else
|
|
#define set_signal_handler(s, h) signal(s, h)
|
|
#endif
|
|
|
|
RETSIGTYPE
|
|
sigint(s)
|
|
int s;
|
|
{
|
|
nsigint++;
|
|
}
|
|
|
|
main()
|
|
{
|
|
nsigint = 0;
|
|
set_signal_handler(SIGINT, sigint);
|
|
kill((int)getpid(), SIGINT);
|
|
kill((int)getpid(), SIGINT);
|
|
exit(nsigint != 2);
|
|
}
|
|
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:14864: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14867: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14869: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14872: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_must_reinstall_sighandlers=no
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_must_reinstall_sighandlers=yes
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:14885: result: $bash_cv_must_reinstall_sighandlers" >&5
|
|
echo "${ECHO_T}$bash_cv_must_reinstall_sighandlers" >&6
|
|
if test $bash_cv_must_reinstall_sighandlers = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define MUST_REINSTALL_SIGHANDLERS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:14894: checking for presence of necessary job control definitions" >&5
|
|
echo $ECHO_N "checking for presence of necessary job control definitions... $ECHO_C" >&6
|
|
if test "${bash_cv_job_control_missing+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:14900: WARNING: cannot check job control if cross-compiling -- defaulting to missing" >&5
|
|
echo "$as_me: WARNING: cannot check job control if cross-compiling -- defaulting to missing" >&2;}
|
|
bash_cv_job_control_missing=missing
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14906 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#ifdef HAVE_SYS_WAIT_H
|
|
#include <sys/wait.h>
|
|
#endif
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#include <signal.h>
|
|
|
|
/* Add more tests in here as appropriate. */
|
|
main()
|
|
{
|
|
/* signal type */
|
|
#if !defined (HAVE_POSIX_SIGNALS) && !defined (HAVE_BSD_SIGNALS)
|
|
exit(1);
|
|
#endif
|
|
|
|
/* signals and tty control. */
|
|
#if !defined (SIGTSTP) || !defined (SIGSTOP) || !defined (SIGCONT)
|
|
exit (1);
|
|
#endif
|
|
|
|
/* process control */
|
|
#if !defined (WNOHANG) || !defined (WUNTRACED)
|
|
exit(1);
|
|
#endif
|
|
|
|
/* Posix systems have tcgetpgrp and waitpid. */
|
|
#if defined (_POSIX_VERSION) && !defined (HAVE_TCGETPGRP)
|
|
exit(1);
|
|
#endif
|
|
|
|
#if defined (_POSIX_VERSION) && !defined (HAVE_WAITPID)
|
|
exit(1);
|
|
#endif
|
|
|
|
/* Other systems have TIOCSPGRP/TIOCGPRGP and wait3. */
|
|
#if !defined (_POSIX_VERSION) && !defined (HAVE_WAIT3)
|
|
exit(1);
|
|
#endif
|
|
|
|
exit(0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:14954: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14957: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:14959: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:14962: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_job_control_missing=present
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_job_control_missing=missing
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:14975: result: $bash_cv_job_control_missing" >&5
|
|
echo "${ECHO_T}$bash_cv_job_control_missing" >&6
|
|
if test $bash_cv_job_control_missing = missing; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define JOB_CONTROL_MISSING 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:14984: checking for presence of named pipes" >&5
|
|
echo $ECHO_N "checking for presence of named pipes... $ECHO_C" >&6
|
|
if test "${bash_cv_sys_named_pipes+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:14990: WARNING: cannot check for named pipes if cross-compiling -- defaulting to missing" >&5
|
|
echo "$as_me: WARNING: cannot check for named pipes if cross-compiling -- defaulting to missing" >&2;}
|
|
bash_cv_sys_named_pipes=missing
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 14996 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
/* Add more tests in here as appropriate. */
|
|
main()
|
|
{
|
|
int fd, err;
|
|
|
|
#if defined (HAVE_MKFIFO)
|
|
exit (0);
|
|
#endif
|
|
|
|
#if !defined (S_IFIFO) && (defined (_POSIX_VERSION) && !defined (S_ISFIFO))
|
|
exit (1);
|
|
#endif
|
|
|
|
#if defined (NeXT)
|
|
exit (1);
|
|
#endif
|
|
err = mkdir("/tmp/bash-aclocal", 0700);
|
|
if (err < 0) {
|
|
perror ("mkdir");
|
|
exit(1);
|
|
}
|
|
fd = mknod ("/tmp/bash-aclocal/sh-np-autoconf", 0666 | S_IFIFO, 0);
|
|
if (fd == -1) {
|
|
rmdir ("/tmp/bash-aclocal");
|
|
exit (1);
|
|
}
|
|
close(fd);
|
|
unlink ("/tmp/bash-aclocal/sh-np-autoconf");
|
|
rmdir ("/tmp/bash-aclocal");
|
|
exit(0);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:15038: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15041: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15043: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15046: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_sys_named_pipes=present
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_sys_named_pipes=missing
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:15059: result: $bash_cv_sys_named_pipes" >&5
|
|
echo "${ECHO_T}$bash_cv_sys_named_pipes" >&6
|
|
if test $bash_cv_sys_named_pipes = missing; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define NAMED_PIPES_MISSING 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:15068: checking POSIX termios" >&5
|
|
echo $ECHO_N "checking POSIX termios... $ECHO_C" >&6
|
|
if test "${ac_cv_sys_posix_termios+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15074 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#include <termios.h>
|
|
int
|
|
main ()
|
|
{
|
|
/* SunOS 4.0.3 has termios.h but not the library calls. */
|
|
tcgetattr(0, 0);
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15089: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15092: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15095: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15098: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_sys_posix_termios=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_sys_posix_termios=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:15108: result: $ac_cv_sys_posix_termios" >&5
|
|
echo "${ECHO_T}$ac_cv_sys_posix_termios" >&6
|
|
|
|
if test $ac_cv_sys_posix_termios = yes; then
|
|
echo "$as_me:15112: checking whether termios.h defines TIOCGWINSZ" >&5
|
|
echo $ECHO_N "checking whether termios.h defines TIOCGWINSZ... $ECHO_C" >&6
|
|
if test "${ac_cv_sys_tiocgwinsz_in_termios_h+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15118 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <termios.h>
|
|
#ifdef TIOCGWINSZ
|
|
yes
|
|
#endif
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
ac_cv_sys_tiocgwinsz_in_termios_h=yes
|
|
else
|
|
ac_cv_sys_tiocgwinsz_in_termios_h=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:15136: result: $ac_cv_sys_tiocgwinsz_in_termios_h" >&5
|
|
echo "${ECHO_T}$ac_cv_sys_tiocgwinsz_in_termios_h" >&6
|
|
|
|
fi
|
|
if test $ac_cv_sys_tiocgwinsz_in_termios_h != yes; then
|
|
echo "$as_me:15141: checking whether sys/ioctl.h defines TIOCGWINSZ" >&5
|
|
echo $ECHO_N "checking whether sys/ioctl.h defines TIOCGWINSZ... $ECHO_C" >&6
|
|
if test "${ac_cv_sys_tiocgwinsz_in_sys_ioctl_h+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15147 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/ioctl.h>
|
|
#ifdef TIOCGWINSZ
|
|
yes
|
|
#endif
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "yes" >/dev/null 2>&1; then
|
|
ac_cv_sys_tiocgwinsz_in_sys_ioctl_h=yes
|
|
else
|
|
ac_cv_sys_tiocgwinsz_in_sys_ioctl_h=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
echo "$as_me:15165: result: $ac_cv_sys_tiocgwinsz_in_sys_ioctl_h" >&5
|
|
echo "${ECHO_T}$ac_cv_sys_tiocgwinsz_in_sys_ioctl_h" >&6
|
|
|
|
if test $ac_cv_sys_tiocgwinsz_in_sys_ioctl_h = yes; then
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define GWINSZ_IN_SYS_IOCTL 1
|
|
EOF
|
|
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:15177: checking for TIOCSTAT in sys/ioctl.h" >&5
|
|
echo $ECHO_N "checking for TIOCSTAT in sys/ioctl.h... $ECHO_C" >&6
|
|
if test "${bash_cv_tiocstat_in_ioctl+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15183 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/ioctl.h>
|
|
int
|
|
main ()
|
|
{
|
|
int x = TIOCSTAT;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:15196: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15199: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:15202: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15205: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_tiocstat_in_ioctl=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_tiocstat_in_ioctl=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
echo "$as_me:15216: result: $bash_cv_tiocstat_in_ioctl" >&5
|
|
echo "${ECHO_T}$bash_cv_tiocstat_in_ioctl" >&6
|
|
if test $bash_cv_tiocstat_in_ioctl = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define TIOCSTAT_IN_SYS_IOCTL 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:15225: checking for FIONREAD in sys/ioctl.h" >&5
|
|
echo $ECHO_N "checking for FIONREAD in sys/ioctl.h... $ECHO_C" >&6
|
|
if test "${bash_cv_fionread_in_ioctl+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15231 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/ioctl.h>
|
|
int
|
|
main ()
|
|
{
|
|
int x = FIONREAD;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:15244: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15247: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:15250: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15253: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_fionread_in_ioctl=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_fionread_in_ioctl=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
echo "$as_me:15264: result: $bash_cv_fionread_in_ioctl" >&5
|
|
echo "${ECHO_T}$bash_cv_fionread_in_ioctl" >&6
|
|
if test $bash_cv_fionread_in_ioctl = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define FIONREAD_IN_SYS_IOCTL 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:15273: checking for speed_t in sys/types.h" >&5
|
|
echo $ECHO_N "checking for speed_t in sys/types.h... $ECHO_C" >&6
|
|
if test "${bash_cv_speed_t_in_sys_types+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15279 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
int
|
|
main ()
|
|
{
|
|
speed_t x;
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:15291: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15294: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:15297: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15300: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_speed_t_in_sys_types=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_speed_t_in_sys_types=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
echo "$as_me:15311: result: $bash_cv_speed_t_in_sys_types" >&5
|
|
echo "${ECHO_T}$bash_cv_speed_t_in_sys_types" >&6
|
|
if test $bash_cv_speed_t_in_sys_types = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define SPEED_T_IN_SYS_TYPES 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:15320: checking whether getpw functions are declared in pwd.h" >&5
|
|
echo $ECHO_N "checking whether getpw functions are declared in pwd.h... $ECHO_C" >&6
|
|
if test "${bash_cv_getpw_declared+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15326 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif
|
|
#include <pwd.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
egrep "getpwuid" >/dev/null 2>&1; then
|
|
bash_cv_getpw_declared=yes
|
|
else
|
|
bash_cv_getpw_declared=no
|
|
fi
|
|
rm -f conftest*
|
|
|
|
fi
|
|
|
|
echo "$as_me:15346: result: $bash_cv_getpw_declared" >&5
|
|
echo "${ECHO_T}$bash_cv_getpw_declared" >&6
|
|
if test $bash_cv_getpw_declared = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_GETPW_DECLS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:15355: checking for unusable real-time signals due to large values" >&5
|
|
echo $ECHO_N "checking for unusable real-time signals due to large values... $ECHO_C" >&6
|
|
if test "${bash_cv_unusable_rtsigs+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
{ echo "$as_me:15361: WARNING: cannot check real-time signals if cross compiling -- defaulting to yes" >&5
|
|
echo "$as_me: WARNING: cannot check real-time signals if cross compiling -- defaulting to yes" >&2;}
|
|
bash_cv_unusable_rtsigs=yes
|
|
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15367 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <signal.h>
|
|
|
|
#ifndef NSIG
|
|
# define NSIG 64
|
|
#endif
|
|
|
|
main ()
|
|
{
|
|
int n_sigs = 2 * NSIG;
|
|
#ifdef SIGRTMIN
|
|
int rtmin = SIGRTMIN;
|
|
#else
|
|
int rtmin = 0;
|
|
#endif
|
|
|
|
exit(rtmin < n_sigs);
|
|
}
|
|
_ACEOF
|
|
rm -f conftest$ac_exeext
|
|
if { (eval echo "$as_me:15390: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15393: \$? = $ac_status" >&5
|
|
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15395: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15398: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_unusable_rtsigs=yes
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_unusable_rtsigs=no
|
|
fi
|
|
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
|
|
echo "$as_me:15411: result: $bash_cv_unusable_rtsigs" >&5
|
|
echo "${ECHO_T}$bash_cv_unusable_rtsigs" >&6
|
|
if test $bash_cv_unusable_rtsigs = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define UNUSABLE_RT_SIGNALS 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test "$bash_cv_sys_siglist" = no && test "$bash_cv_under_sys_siglist" = no && test "$bash_cv_have_strsignal" = no; then
|
|
SIGLIST_O=siglist.o
|
|
else
|
|
SIGLIST_O=
|
|
fi
|
|
|
|
case "$host_os" in
|
|
hpux*) echo "$as_me:15427: checking whether $host_os needs _KERNEL for RLIMIT defines" >&5
|
|
echo $ECHO_N "checking whether $host_os needs _KERNEL for RLIMIT defines... $ECHO_C" >&6
|
|
if test "${bash_cv_kernel_rlimit+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15433 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/resource.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
int f;
|
|
f = RLIMIT_DATA;
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:15451: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15454: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:15457: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15460: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_kernel_rlimit=no
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15467 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <sys/types.h>
|
|
#define _KERNEL
|
|
#include <sys/resource.h>
|
|
#undef _KERNEL
|
|
|
|
int
|
|
main ()
|
|
{
|
|
|
|
int f;
|
|
f = RLIMIT_DATA;
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext
|
|
if { (eval echo "$as_me:15487: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15490: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest.$ac_objext'
|
|
{ (eval echo "$as_me:15493: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15496: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
bash_cv_kernel_rlimit=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
bash_cv_kernel_rlimit=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
|
|
echo "$as_me:15510: result: $bash_cv_kernel_rlimit" >&5
|
|
echo "${ECHO_T}$bash_cv_kernel_rlimit" >&6
|
|
if test $bash_cv_kernel_rlimit = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define RLIMIT_NEEDS_KERNEL 1
|
|
EOF
|
|
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
if test "$opt_readline" = yes; then
|
|
case "$host_os" in
|
|
aix*) prefer_curses=yes ;;
|
|
esac
|
|
|
|
if test "X$bash_cv_termcap_lib" = "X"; then
|
|
_bash_needmsg=yes
|
|
else
|
|
echo "$as_me:15529: checking which library has the termcap functions" >&5
|
|
echo $ECHO_N "checking which library has the termcap functions... $ECHO_C" >&6
|
|
_bash_needmsg=
|
|
fi
|
|
if test "${bash_cv_termcap_lib+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
echo "$as_me:15536: checking for tgetent" >&5
|
|
echo $ECHO_N "checking for tgetent... $ECHO_C" >&6
|
|
if test "${ac_cv_func_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15542 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char tgetent (); 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 tgetent ();
|
|
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_tgetent) || defined (__stub___tgetent)
|
|
choke me
|
|
#else
|
|
f = tgetent;
|
|
#endif
|
|
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15573: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15576: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15579: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15582: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_func_tgetent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_func_tgetent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:15592: result: $ac_cv_func_tgetent" >&5
|
|
echo "${ECHO_T}$ac_cv_func_tgetent" >&6
|
|
if test $ac_cv_func_tgetent = yes; then
|
|
bash_cv_termcap_lib=libc
|
|
else
|
|
echo "$as_me:15597: checking for tgetent in -ltermcap" >&5
|
|
echo $ECHO_N "checking for tgetent in -ltermcap... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_termcap_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-ltermcap $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15605 "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 tgetent ();
|
|
int
|
|
main ()
|
|
{
|
|
tgetent ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15624: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15627: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15630: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15633: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_termcap_tgetent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_termcap_tgetent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:15644: result: $ac_cv_lib_termcap_tgetent" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_termcap_tgetent" >&6
|
|
if test $ac_cv_lib_termcap_tgetent = yes; then
|
|
bash_cv_termcap_lib=libtermcap
|
|
else
|
|
echo "$as_me:15649: checking for tgetent in -ltinfo" >&5
|
|
echo $ECHO_N "checking for tgetent in -ltinfo... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_tinfo_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-ltinfo $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15657 "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 tgetent ();
|
|
int
|
|
main ()
|
|
{
|
|
tgetent ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15676: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15679: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15682: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15685: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_tinfo_tgetent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_tinfo_tgetent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:15696: result: $ac_cv_lib_tinfo_tgetent" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_tinfo_tgetent" >&6
|
|
if test $ac_cv_lib_tinfo_tgetent = yes; then
|
|
bash_cv_termcap_lib=libtinfo
|
|
else
|
|
echo "$as_me:15701: checking for tgetent in -lcurses" >&5
|
|
echo $ECHO_N "checking for tgetent in -lcurses... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_curses_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lcurses $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15709 "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 tgetent ();
|
|
int
|
|
main ()
|
|
{
|
|
tgetent ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15728: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15731: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15734: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15737: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_curses_tgetent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_curses_tgetent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:15748: result: $ac_cv_lib_curses_tgetent" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_curses_tgetent" >&6
|
|
if test $ac_cv_lib_curses_tgetent = yes; then
|
|
bash_cv_termcap_lib=libcurses
|
|
else
|
|
echo "$as_me:15753: checking for tgetent in -lncurses" >&5
|
|
echo $ECHO_N "checking for tgetent in -lncurses... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_ncurses_tgetent+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
LIBS="-lncurses $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 15761 "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 tgetent ();
|
|
int
|
|
main ()
|
|
{
|
|
tgetent ();
|
|
;
|
|
return 0;
|
|
}
|
|
_ACEOF
|
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
|
if { (eval echo "$as_me:15780: \"$ac_link\"") >&5
|
|
(eval $ac_link) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15783: \$? = $ac_status" >&5
|
|
(exit $ac_status); } &&
|
|
{ ac_try='test -s conftest$ac_exeext'
|
|
{ (eval echo "$as_me:15786: \"$ac_try\"") >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
echo "$as_me:15789: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
ac_cv_lib_ncurses_tgetent=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
cat conftest.$ac_ext >&5
|
|
ac_cv_lib_ncurses_tgetent=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LIBS=$ac_check_lib_save_LIBS
|
|
fi
|
|
echo "$as_me:15800: result: $ac_cv_lib_ncurses_tgetent" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_ncurses_tgetent" >&6
|
|
if test $ac_cv_lib_ncurses_tgetent = yes; then
|
|
bash_cv_termcap_lib=libncurses
|
|
else
|
|
bash_cv_termcap_lib=gnutermcap
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "X$_bash_needmsg" = "Xyes"; then
|
|
echo "$as_me:15819: checking which library has the termcap functions" >&5
|
|
echo $ECHO_N "checking which library has the termcap functions... $ECHO_C" >&6
|
|
fi
|
|
echo "$as_me:15822: result: using $bash_cv_termcap_lib" >&5
|
|
echo "${ECHO_T}using $bash_cv_termcap_lib" >&6
|
|
if test $bash_cv_termcap_lib = gnutermcap && test -z "$prefer_curses"; then
|
|
LDFLAGS="$LDFLAGS -L./lib/termcap"
|
|
TERMCAP_LIB="./lib/termcap/libtermcap.a"
|
|
TERMCAP_DEP="./lib/termcap/libtermcap.a"
|
|
elif test $bash_cv_termcap_lib = libtermcap && test -z "$prefer_curses"; then
|
|
TERMCAP_LIB=-ltermcap
|
|
TERMCAP_DEP=
|
|
elif test $bash_cv_termcap_lib = libtinfo; then
|
|
TERMCAP_LIB=-ltinfo
|
|
TERMCAP_DEP=
|
|
elif test $bash_cv_termcap_lib = libncurses; then
|
|
TERMCAP_LIB=-lncurses
|
|
TERMCAP_DEP=
|
|
elif test $bash_cv_termcap_lib = libc; then
|
|
TERMCAP_LIB=
|
|
TERMCAP_DEP=
|
|
else
|
|
TERMCAP_LIB=-lcurses
|
|
TERMCAP_DEP=
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:15847: checking whether /dev/fd is available" >&5
|
|
echo $ECHO_N "checking whether /dev/fd is available... $ECHO_C" >&6
|
|
if test "${bash_cv_dev_fd+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -d /dev/fd && test -r /dev/fd/0 < /dev/null; then
|
|
bash_cv_dev_fd=standard
|
|
elif test -d /proc/self/fd && test -r /proc/self/fd/0 < /dev/null; then
|
|
bash_cv_dev_fd=whacky
|
|
else
|
|
bash_cv_dev_fd=absent
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:15862: result: $bash_cv_dev_fd" >&5
|
|
echo "${ECHO_T}$bash_cv_dev_fd" >&6
|
|
if test $bash_cv_dev_fd = "standard"; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_DEV_FD 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define DEV_FD_PREFIX "/dev/fd/"
|
|
EOF
|
|
|
|
elif test $bash_cv_dev_fd = "whacky"; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_DEV_FD 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define DEV_FD_PREFIX "/proc/self/fd/"
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:15884: checking whether /dev/stdin stdout stderr are available" >&5
|
|
echo $ECHO_N "checking whether /dev/stdin stdout stderr are available... $ECHO_C" >&6
|
|
if test "${bash_cv_dev_stdin+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -d /dev/fd && test -r /dev/stdin < /dev/null; then
|
|
bash_cv_dev_stdin=present
|
|
elif test -d /proc/self/fd && test -r /dev/stdin < /dev/null; then
|
|
bash_cv_dev_stdin=present
|
|
else
|
|
bash_cv_dev_stdin=absent
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:15899: result: $bash_cv_dev_stdin" >&5
|
|
echo "${ECHO_T}$bash_cv_dev_stdin" >&6
|
|
if test $bash_cv_dev_stdin = "present"; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define HAVE_DEV_STDIN 1
|
|
EOF
|
|
|
|
fi
|
|
|
|
echo "$as_me:15908: checking for default mail directory" >&5
|
|
echo $ECHO_N "checking for default mail directory... $ECHO_C" >&6
|
|
if test "${bash_cv_mail_dir+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
if test -d /var/mail; then
|
|
bash_cv_mail_dir=/var/mail
|
|
elif test -d /var/spool/mail; then
|
|
bash_cv_mail_dir=/var/spool/mail
|
|
elif test -d /usr/mail; then
|
|
bash_cv_mail_dir=/usr/mail
|
|
elif test -d /usr/spool/mail; then
|
|
bash_cv_mail_dir=/usr/spool/mail
|
|
else
|
|
bash_cv_mail_dir=unknown
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$as_me:15927: result: $bash_cv_mail_dir" >&5
|
|
echo "${ECHO_T}$bash_cv_mail_dir" >&6
|
|
cat >>confdefs.h <<EOF
|
|
#define DEFAULT_MAIL_DIRECTORY "$bash_cv_mail_dir"
|
|
EOF
|
|
|
|
if test "$bash_cv_job_control_missing" = missing; then
|
|
opt_job_control=no
|
|
fi
|
|
|
|
if test "$opt_job_control" = yes; then
|
|
cat >>confdefs.h <<\EOF
|
|
#define JOB_CONTROL 1
|
|
EOF
|
|
|
|
JOBS_O=jobs.o
|
|
else
|
|
JOBS_O=nojobs.o
|
|
fi
|
|
|
|
LOCAL_DEFS=-DSHELL
|
|
|
|
case "${host_os}" in
|
|
sysv4.2*) cat >>confdefs.h <<\EOF
|
|
#define SVR4_2 1
|
|
EOF
|
|
|
|
cat >>confdefs.h <<\EOF
|
|
#define SVR4 1
|
|
EOF
|
|
;;
|
|
sysv4*) cat >>confdefs.h <<\EOF
|
|
#define SVR4 1
|
|
EOF
|
|
;;
|
|
sysv5*) cat >>confdefs.h <<\EOF
|
|
#define SVR5 1
|
|
EOF
|
|
;;
|
|
hpux9*) LOCAL_CFLAGS="-DHPUX9 -DHPUX" ;;
|
|
hpux*) LOCAL_CFLAGS=-DHPUX ;;
|
|
dgux*) LOCAL_CFLAGS=-D_DGUX_SOURCE; LOCAL_LIBS=-ldgc ;;
|
|
isc*) LOCAL_CFLAGS=-Disc386 ;;
|
|
rhapsody*) LOCAL_CFLAGS=-DRHAPSODY ;;
|
|
darwin*) LOCAL_CFLAGS=-DMACOSX ;;
|
|
sco3.2v5*) LOCAL_CFLAGS="-b elf -DWAITPID_BROKEN -DPATH_MAX=1024" ;;
|
|
sco3.2v4*) LOCAL_CFLAGS="-DMUST_UNBLOCK_CHLD -DPATH_MAX=1024" ;;
|
|
sco3.2*) LOCAL_CFLAGS=-DMUST_UNBLOCK_CHLD ;;
|
|
sunos4*) LOCAL_CFLAGS=-DSunOS4 ;;
|
|
solaris2.5*) LOCAL_CFLAGS=-DSunOS5 ;;
|
|
lynxos*) LOCAL_CFLAGS=-DRECYCLES_PIDS ;;
|
|
linux*) LOCAL_LDFLAGS=-rdynamic ;; # allow dynamic loading
|
|
*qnx*) LOCAL_CFLAGS="-Dqnx -F -3s" LOCAL_LDFLAGS="-3s" LOCAL_LIBS="-lunix -lncurses" ;;
|
|
powerux*) LOCAL_LIBS="-lgen" ;;
|
|
cygwin*) LOCAL_CFLAGS=-DRECYCLES_PIDS ;;
|
|
opennt*|interix*) LOCAL_CFLAGS="-DNO_MAIN_ENV_ARG -DBROKEN_DIRENT_D_INO" ;;
|
|
esac
|
|
|
|
case "${host_os}-${CC}" in
|
|
aix4.2*-*gcc*) LOCAL_LDFLAGS="-Xlinker -bexpall -Xlinker -brtl" ;;
|
|
aix4.2*) LOCAL_LDFLAGS="-bexpall -brtl" ;;
|
|
bsdi4*-*gcc*) LOCAL_LDFLAGS="-rdynamic" ;; # allow dynamic loading, like Linux
|
|
esac
|
|
|
|
case "${host_os}" in
|
|
freebsd[3-9]*)
|
|
if test -x /usr/bin/objformat && test "`/usr/bin/objformat`" = "elf" ; then
|
|
LOCAL_LDFLAGS=-rdynamic # allow dynamic loading
|
|
fi ;;
|
|
freebsdelf*) LOCAL_LDFLAGS=-rdynamic ;; # allow dynamic loading
|
|
esac
|
|
|
|
case "$host_cpu" in
|
|
*cray*) LOCAL_CFLAGS="-DCRAY" ;; # shell var so config.h can use it
|
|
esac
|
|
|
|
case "$host_cpu-$host_os" in
|
|
ibmrt-*bsd4*) LOCAL_CFLAGS="-ma -U__STDC__" ;;
|
|
esac
|
|
|
|
case "$host_cpu-$host_vendor-$host_os" in
|
|
m88k-motorola-sysv3) LOCAL_CFLAGS=-DWAITPID_BROKEN ;;
|
|
mips-pyramid-sysv4) LOCAL_CFLAGS=-Xa ;;
|
|
esac
|
|
|
|
#
|
|
# Shared object configuration section. These values are generated by
|
|
# ${srcdir}/support/shobj-conf
|
|
#
|
|
if test "$ac_cv_func_dlopen" = "yes" && test -f ${srcdir}/support/shobj-conf
|
|
then
|
|
echo "$as_me:16018: checking shared object configuration for loadable builtins" >&5
|
|
echo $ECHO_N "checking shared object configuration for loadable builtins... $ECHO_C" >&6
|
|
eval `${CONFIG_SHELL-/bin/sh} ${srcdir}/support/shobj-conf -C "${CC}" -c "${host_cpu}" -o "${host_os}" -v "${host_vendor}"`
|
|
|
|
echo "$as_me:16022: result: $SHOBJ_STATUS" >&5
|
|
echo "${ECHO_T}$SHOBJ_STATUS" >&6
|
|
fi
|
|
|
|
# try to create a directory tree if the source is elsewhere
|
|
# this should be packaged into a script accessible via ${srcdir}/support
|
|
case "$srcdir" in
|
|
.) ;;
|
|
*) for d in doc tests support lib examples; do # dirs
|
|
test -d $d || mkdir $d
|
|
done
|
|
for ld in readline glob tilde malloc sh termcap; do # libdirs
|
|
test -d lib/$ld || mkdir lib/$ld
|
|
done
|
|
test -d examples/loadables || mkdir examples/loadables # loadable builtins
|
|
test -d examples/loadables/perl || mkdir examples/loadables/perl
|
|
;;
|
|
esac
|
|
|
|
BUILD_DIR=`pwd`
|
|
|
|
#AC_SUBST(ALLOCA_SOURCE)
|
|
#AC_SUBST(ALLOCA_OBJECT)
|
|
|
|
ac_config_files="$ac_config_files Makefile builtins/Makefile lib/readline/Makefile lib/glob/Makefile lib/malloc/Makefile lib/sh/Makefile lib/termcap/Makefile lib/tilde/Makefile doc/Makefile support/Makefile examples/loadables/Makefile examples/loadables/perl/Makefile pathnames.h"
|
|
ac_config_commands="$ac_config_commands default"
|
|
cat >confcache <<\_ACEOF
|
|
# This file is a shell script that caches the results of configure
|
|
# tests run on this system so they can be shared between configure
|
|
# scripts and configure runs, see configure's option --config-cache.
|
|
# It is not useful on other systems. If it contains results you don't
|
|
# want to keep, you may remove or edit it.
|
|
#
|
|
# config.status only pays attention to the cache file if you give it
|
|
# the --recheck option to rerun configure.
|
|
#
|
|
# `ac_cv_env_foo' variables (set or unset) will be overriden when
|
|
# loading this file, other *unset* `ac_cv_foo' will be assigned the
|
|
# following values.
|
|
|
|
_ACEOF
|
|
|
|
# The following way of writing the cache mishandles newlines in values,
|
|
# but we know of no workaround that is simple, portable, and efficient.
|
|
# So, don't put newlines in cache variables' values.
|
|
# Ultrix sh set writes to stderr and can't be redirected directly,
|
|
# and sets the high bit in the cache file unless we assign to the vars.
|
|
{
|
|
(set) 2>&1 |
|
|
case `(ac_space=' '; set | grep ac_space) 2>&1` in
|
|
*ac_space=\ *)
|
|
# `set' does not quote correctly, so add quotes (double-quote
|
|
# substitution turns \\\\ into \\, and sed turns \\ into \).
|
|
sed -n \
|
|
"s/'/'\\\\''/g;
|
|
s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
|
|
;;
|
|
*)
|
|
# `set' quotes correctly as required by POSIX, so do not add quotes.
|
|
sed -n \
|
|
"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
|
|
;;
|
|
esac;
|
|
} |
|
|
sed '
|
|
t clear
|
|
: clear
|
|
s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
|
|
t end
|
|
/^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
|
|
: end' >>confcache
|
|
if cmp -s $cache_file confcache; then :; else
|
|
if test -w $cache_file; then
|
|
test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
|
|
cat confcache >$cache_file
|
|
else
|
|
echo "not updating unwritable cache $cache_file"
|
|
fi
|
|
fi
|
|
rm -f confcache
|
|
|
|
test "x$prefix" = xNONE && prefix=$ac_default_prefix
|
|
# Let make expand exec_prefix.
|
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
|
|
|
# VPATH may cause trouble with some makes, so we remove $(srcdir),
|
|
# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
|
|
# trailing colons and then remove the whole line if VPATH becomes empty
|
|
# (actually we leave an empty line to preserve line numbers).
|
|
if test "x$srcdir" = x.; then
|
|
ac_vpsub='/^[ ]*VPATH[ ]*=/{
|
|
s/:*\$(srcdir):*/:/;
|
|
s/:*\${srcdir}:*/:/;
|
|
s/:*@srcdir@:*/:/;
|
|
s/^\([^=]*=[ ]*\):*/\1/;
|
|
s/:*$//;
|
|
s/^[^=]*=[ ]*$//;
|
|
}'
|
|
fi
|
|
|
|
DEFS=-DHAVE_CONFIG_H
|
|
|
|
: ${CONFIG_STATUS=./config.status}
|
|
ac_clean_files_save=$ac_clean_files
|
|
ac_clean_files="$ac_clean_files $CONFIG_STATUS"
|
|
{ echo "$as_me:16127: creating $CONFIG_STATUS" >&5
|
|
echo "$as_me: creating $CONFIG_STATUS" >&6;}
|
|
cat >$CONFIG_STATUS <<_ACEOF
|
|
#! $SHELL
|
|
# Generated automatically by configure.
|
|
# Run this file to recreate the current configuration.
|
|
# Compiler output produced by configure, useful for debugging
|
|
# configure, is in config.log if it exists.
|
|
|
|
debug=false
|
|
SHELL=\${CONFIG_SHELL-$SHELL}
|
|
ac_cs_invocation="\$0 \$@"
|
|
|
|
_ACEOF
|
|
|
|
cat >>$CONFIG_STATUS <<\_ACEOF
|
|
# Be Bourne compatible
|
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
|
emulate sh
|
|
NULLCMD=:
|
|
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
|
set -o posix
|
|
fi
|
|
|
|
# Name of the executable.
|
|
as_me=`echo "$0" |sed 's,.*[\\/],,'`
|
|
|
|
if expr a : '\(a\)' >/dev/null 2>&1; then
|
|
as_expr=expr
|
|
else
|
|
as_expr=false
|
|
fi
|
|
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
|
echo >conf$$.file
|
|
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
|
# We could just check for DJGPP; but this test a) works b) is more generic
|
|
# and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
|
|
if test -f conf$$.exe; then
|
|
# Don't use ln at all; we don't have any links
|
|
as_ln_s='cp -p'
|
|
else
|
|
as_ln_s='ln -s'
|
|
fi
|
|
elif ln conf$$.file conf$$ 2>/dev/null; then
|
|
as_ln_s=ln
|
|
else
|
|
as_ln_s='cp -p'
|
|
fi
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
|
|
|
as_executable_p="test -f"
|
|
|
|
# Support unset when possible.
|
|
if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
|
|
as_unset=unset
|
|
else
|
|
as_unset=false
|
|
fi
|
|
|
|
# NLS nuisances.
|
|
$as_unset LANG || test "${LANG+set}" != set || { LANG=C; export LANG; }
|
|
$as_unset LC_ALL || test "${LC_ALL+set}" != set || { LC_ALL=C; export LC_ALL; }
|
|
$as_unset LC_TIME || test "${LC_TIME+set}" != set || { LC_TIME=C; export LC_TIME; }
|
|
$as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set || { LC_CTYPE=C; export LC_CTYPE; }
|
|
$as_unset LANGUAGE || test "${LANGUAGE+set}" != set || { LANGUAGE=C; export LANGUAGE; }
|
|
$as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set || { LC_COLLATE=C; export LC_COLLATE; }
|
|
$as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set || { LC_NUMERIC=C; export LC_NUMERIC; }
|
|
$as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set || { LC_MESSAGES=C; export LC_MESSAGES; }
|
|
|
|
# IFS
|
|
# We need space, tab and new line, in precisely that order.
|
|
as_nl='
|
|
'
|
|
IFS=" $as_nl"
|
|
|
|
# CDPATH.
|
|
$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }
|
|
|
|
exec 6>&1
|
|
|
|
_ACEOF
|
|
|
|
# Files that config.status was made for.
|
|
if test -n "$ac_config_files"; then
|
|
echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
|
|
fi
|
|
|
|
if test -n "$ac_config_headers"; then
|
|
echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
|
|
fi
|
|
|
|
if test -n "$ac_config_links"; then
|
|
echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
|
|
fi
|
|
|
|
if test -n "$ac_config_commands"; then
|
|
echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
|
|
fi
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
|
|
ac_cs_usage="\
|
|
\`$as_me' instantiates files from templates according to the
|
|
current configuration.
|
|
|
|
Usage: $0 [OPTIONS] [FILE]...
|
|
|
|
-h, --help print this help, then exit
|
|
-V, --version print version number, then exit
|
|
-d, --debug don't remove temporary files
|
|
--recheck update $as_me by reconfiguring in the same conditions
|
|
--file=FILE[:TEMPLATE]
|
|
instantiate the configuration file FILE
|
|
--header=FILE[:TEMPLATE]
|
|
instantiate the configuration header FILE
|
|
|
|
Configuration files:
|
|
$config_files
|
|
|
|
Configuration headers:
|
|
$config_headers
|
|
|
|
Configuration commands:
|
|
$config_commands
|
|
|
|
Report bugs to <bug-autoconf@gnu.org>."
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<EOF
|
|
ac_cs_version="\\
|
|
bash config.status 3.0-alpha
|
|
configured by $0, generated by GNU Autoconf 2.52,
|
|
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
|
|
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
|
Free Software Foundation, Inc.
|
|
This config.status script is free software; the Free Software Foundation
|
|
gives unlimited permission to copy, distribute and modify it."
|
|
srcdir=$srcdir
|
|
INSTALL="$INSTALL"
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
# If no file are specified by the user, then we need to provide default
|
|
# value. By we need to know if files were specified by the user.
|
|
ac_need_defaults=:
|
|
while test $# != 0
|
|
do
|
|
case $1 in
|
|
--*=*)
|
|
ac_option=`expr "x$1" : 'x\([^=]*\)='`
|
|
ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
|
|
shift
|
|
set dummy "$ac_option" "$ac_optarg" ${1+"$@"}
|
|
shift
|
|
;;
|
|
-*);;
|
|
*) # This is not an option, so the user has probably given explicit
|
|
# arguments.
|
|
ac_need_defaults=false;;
|
|
esac
|
|
|
|
case $1 in
|
|
# Handling of the options.
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<EOF
|
|
-recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
|
|
echo "running $SHELL $0 " $ac_configure_args " --no-create --no-recursion"
|
|
exec $SHELL $0 $ac_configure_args --no-create --no-recursion ;;
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
--version | --vers* | -V )
|
|
echo "$ac_cs_version"; exit 0 ;;
|
|
--he | --h)
|
|
# Conflict between --help and --header
|
|
{ { echo "$as_me:16303: error: ambiguous option: $1
|
|
Try \`$0 --help' for more information." >&5
|
|
echo "$as_me: error: ambiguous option: $1
|
|
Try \`$0 --help' for more information." >&2;}
|
|
{ (exit 1); exit 1; }; };;
|
|
--help | --hel | -h )
|
|
echo "$ac_cs_usage"; exit 0 ;;
|
|
--debug | --d* | -d )
|
|
debug=: ;;
|
|
--file | --fil | --fi | --f )
|
|
shift
|
|
CONFIG_FILES="$CONFIG_FILES $1"
|
|
ac_need_defaults=false;;
|
|
--header | --heade | --head | --hea )
|
|
shift
|
|
CONFIG_HEADERS="$CONFIG_HEADERS $1"
|
|
ac_need_defaults=false;;
|
|
|
|
# This is an error.
|
|
-*) { { echo "$as_me:16322: error: unrecognized option: $1
|
|
Try \`$0 --help' for more information." >&5
|
|
echo "$as_me: error: unrecognized option: $1
|
|
Try \`$0 --help' for more information." >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
|
|
*) ac_config_targets="$ac_config_targets $1" ;;
|
|
|
|
esac
|
|
shift
|
|
done
|
|
|
|
exec 5>>config.log
|
|
cat >&5 << _ACEOF
|
|
|
|
## ----------------------- ##
|
|
## Running config.status. ##
|
|
## ----------------------- ##
|
|
|
|
This file was extended by $as_me (bash 3.0-alpha) 2.52, executed with
|
|
CONFIG_FILES = $CONFIG_FILES
|
|
CONFIG_HEADERS = $CONFIG_HEADERS
|
|
CONFIG_LINKS = $CONFIG_LINKS
|
|
CONFIG_COMMANDS = $CONFIG_COMMANDS
|
|
> $ac_cs_invocation
|
|
on `(hostname || uname -n) 2>/dev/null | sed 1q`
|
|
|
|
_ACEOF
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
for ac_config_target in $ac_config_targets
|
|
do
|
|
case "$ac_config_target" in
|
|
# Handling of arguments.
|
|
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
|
"builtins/Makefile" ) CONFIG_FILES="$CONFIG_FILES builtins/Makefile" ;;
|
|
"lib/readline/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/readline/Makefile" ;;
|
|
"lib/glob/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/glob/Makefile" ;;
|
|
"lib/malloc/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/malloc/Makefile" ;;
|
|
"lib/sh/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/sh/Makefile" ;;
|
|
"lib/termcap/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/termcap/Makefile" ;;
|
|
"lib/tilde/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/tilde/Makefile" ;;
|
|
"doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
|
|
"support/Makefile" ) CONFIG_FILES="$CONFIG_FILES support/Makefile" ;;
|
|
"examples/loadables/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/loadables/Makefile" ;;
|
|
"examples/loadables/perl/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/loadables/perl/Makefile" ;;
|
|
"pathnames.h" ) CONFIG_FILES="$CONFIG_FILES pathnames.h" ;;
|
|
"default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
|
|
"config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
|
|
*) { { echo "$as_me:16372: error: invalid argument: $ac_config_target" >&5
|
|
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
|
{ (exit 1); exit 1; }; };;
|
|
esac
|
|
done
|
|
|
|
# If the user did not use the arguments to specify the items to instantiate,
|
|
# then the envvar interface is used. Set only those that are not.
|
|
# We use the long form for the default assignment because of an extremely
|
|
# bizarre bug on SunOS 4.1.3.
|
|
if $ac_need_defaults; then
|
|
test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
|
|
test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
|
|
test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
|
|
fi
|
|
|
|
# Create a temporary directory, and hook for its removal unless debugging.
|
|
$debug ||
|
|
{
|
|
trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
|
|
trap '{ (exit 1); exit 1; }' 1 2 13 15
|
|
}
|
|
|
|
# Create a (secure) tmp directory for tmp files.
|
|
: ${TMPDIR=/tmp}
|
|
{
|
|
tmp=`(umask 077 && mktemp -d -q "$TMPDIR/csXXXXXX") 2>/dev/null` &&
|
|
test -n "$tmp" && test -d "$tmp"
|
|
} ||
|
|
{
|
|
tmp=$TMPDIR/cs$$-$RANDOM
|
|
(umask 077 && mkdir $tmp)
|
|
} ||
|
|
{
|
|
echo "$me: cannot create a temporary directory in $TMPDIR" >&2
|
|
{ (exit 1); exit 1; }
|
|
}
|
|
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<EOF
|
|
|
|
#
|
|
# CONFIG_FILES section.
|
|
#
|
|
|
|
# No need to generate the scripts if there are no CONFIG_FILES.
|
|
# This happens for instance when ./config.status config.h
|
|
if test -n "\$CONFIG_FILES"; then
|
|
# Protect against being on the right side of a sed subst in config.status.
|
|
sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
|
|
s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
|
|
s,@SHELL@,$SHELL,;t t
|
|
s,@exec_prefix@,$exec_prefix,;t t
|
|
s,@prefix@,$prefix,;t t
|
|
s,@program_transform_name@,$program_transform_name,;t t
|
|
s,@bindir@,$bindir,;t t
|
|
s,@sbindir@,$sbindir,;t t
|
|
s,@libexecdir@,$libexecdir,;t t
|
|
s,@datadir@,$datadir,;t t
|
|
s,@sysconfdir@,$sysconfdir,;t t
|
|
s,@sharedstatedir@,$sharedstatedir,;t t
|
|
s,@localstatedir@,$localstatedir,;t t
|
|
s,@libdir@,$libdir,;t t
|
|
s,@includedir@,$includedir,;t t
|
|
s,@oldincludedir@,$oldincludedir,;t t
|
|
s,@infodir@,$infodir,;t t
|
|
s,@mandir@,$mandir,;t t
|
|
s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
|
|
s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
|
|
s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
|
|
s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
|
|
s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
|
|
s,@build_alias@,$build_alias,;t t
|
|
s,@host_alias@,$host_alias,;t t
|
|
s,@target_alias@,$target_alias,;t t
|
|
s,@ECHO_C@,$ECHO_C,;t t
|
|
s,@ECHO_N@,$ECHO_N,;t t
|
|
s,@ECHO_T@,$ECHO_T,;t t
|
|
s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
|
|
s,@DEFS@,$DEFS,;t t
|
|
s,@LIBS@,$LIBS,;t t
|
|
s,@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,@EMACS@,$EMACS,;t t
|
|
s,@lispdir@,$lispdir,;t t
|
|
s,@DEBUGGER_START_FILE@,$DEBUGGER_START_FILE,;t t
|
|
s,@TESTSCRIPT@,$TESTSCRIPT,;t t
|
|
s,@PURIFY@,$PURIFY,;t t
|
|
s,@MALLOC_TARGET@,$MALLOC_TARGET,;t t
|
|
s,@MALLOC_SRC@,$MALLOC_SRC,;t t
|
|
s,@MALLOC_LIB@,$MALLOC_LIB,;t t
|
|
s,@MALLOC_LIBRARY@,$MALLOC_LIBRARY,;t t
|
|
s,@MALLOC_LDFLAGS@,$MALLOC_LDFLAGS,;t t
|
|
s,@MALLOC_DEP@,$MALLOC_DEP,;t t
|
|
s,@htmldir@,$htmldir,;t t
|
|
s,@HELPDIR@,$HELPDIR,;t t
|
|
s,@HELPDIRDEFINE@,$HELPDIRDEFINE,;t t
|
|
s,@HELPINSTALL@,$HELPINSTALL,;t t
|
|
s,@CC@,$CC,;t t
|
|
s,@CFLAGS@,$CFLAGS,;t t
|
|
s,@LDFLAGS@,$LDFLAGS,;t t
|
|
s,@CPPFLAGS@,$CPPFLAGS,;t t
|
|
s,@ac_ct_CC@,$ac_ct_CC,;t t
|
|
s,@EXEEXT@,$EXEEXT,;t t
|
|
s,@OBJEXT@,$OBJEXT,;t t
|
|
s,@CPP@,$CPP,;t t
|
|
s,@SIGNAMES_H@,$SIGNAMES_H,;t t
|
|
s,@CC_FOR_BUILD@,$CC_FOR_BUILD,;t t
|
|
s,@STATIC_LD@,$STATIC_LD,;t t
|
|
s,@CFLAGS_FOR_BUILD@,$CFLAGS_FOR_BUILD,;t t
|
|
s,@CPPFLAGS_FOR_BUILD@,$CPPFLAGS_FOR_BUILD,;t t
|
|
s,@LDFLAGS_FOR_BUILD@,$LDFLAGS_FOR_BUILD,;t t
|
|
s,@RL_VERSION@,$RL_VERSION,;t t
|
|
s,@RL_MAJOR@,$RL_MAJOR,;t t
|
|
s,@RL_MINOR@,$RL_MINOR,;t t
|
|
s,@READLINE_LIB@,$READLINE_LIB,;t t
|
|
s,@READLINE_DEP@,$READLINE_DEP,;t t
|
|
s,@RL_LIBDIR@,$RL_LIBDIR,;t t
|
|
s,@RL_INCLUDEDIR@,$RL_INCLUDEDIR,;t t
|
|
s,@RL_INCLUDE@,$RL_INCLUDE,;t t
|
|
s,@HISTORY_LIB@,$HISTORY_LIB,;t t
|
|
s,@HISTORY_DEP@,$HISTORY_DEP,;t t
|
|
s,@HIST_LIBDIR@,$HIST_LIBDIR,;t t
|
|
s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
|
|
s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
|
|
s,@INSTALL_DATA@,$INSTALL_DATA,;t t
|
|
s,@AR@,$AR,;t t
|
|
s,@RANLIB@,$RANLIB,;t t
|
|
s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
|
|
s,@YACC@,$YACC,;t t
|
|
s,@SET_MAKE@,$SET_MAKE,;t t
|
|
s,@MAKE_SHELL@,$MAKE_SHELL,;t t
|
|
s,@ALLOCA@,$ALLOCA,;t t
|
|
s,@LIBOBJS@,$LIBOBJS,;t t
|
|
s,@SIGLIST_O@,$SIGLIST_O,;t t
|
|
s,@TERMCAP_LIB@,$TERMCAP_LIB,;t t
|
|
s,@TERMCAP_DEP@,$TERMCAP_DEP,;t t
|
|
s,@JOBS_O@,$JOBS_O,;t t
|
|
s,@SHOBJ_CC@,$SHOBJ_CC,;t t
|
|
s,@SHOBJ_CFLAGS@,$SHOBJ_CFLAGS,;t t
|
|
s,@SHOBJ_LD@,$SHOBJ_LD,;t t
|
|
s,@SHOBJ_LDFLAGS@,$SHOBJ_LDFLAGS,;t t
|
|
s,@SHOBJ_XLDFLAGS@,$SHOBJ_XLDFLAGS,;t t
|
|
s,@SHOBJ_LIBS@,$SHOBJ_LIBS,;t t
|
|
s,@SHOBJ_STATUS@,$SHOBJ_STATUS,;t t
|
|
s,@PROFILE_FLAGS@,$PROFILE_FLAGS,;t t
|
|
s,@incdir@,$incdir,;t t
|
|
s,@BUILD_DIR@,$BUILD_DIR,;t t
|
|
s,@ARFLAGS@,$ARFLAGS,;t t
|
|
s,@BASHVERS@,$BASHVERS,;t t
|
|
s,@RELSTATUS@,$RELSTATUS,;t t
|
|
s,@DEBUG@,$DEBUG,;t t
|
|
s,@MALLOC_DEBUG@,$MALLOC_DEBUG,;t t
|
|
s,@LOCAL_LIBS@,$LOCAL_LIBS,;t t
|
|
s,@LOCAL_CFLAGS@,$LOCAL_CFLAGS,;t t
|
|
s,@LOCAL_LDFLAGS@,$LOCAL_LDFLAGS,;t t
|
|
s,@LOCAL_DEFS@,$LOCAL_DEFS,;t t
|
|
CEOF
|
|
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
# Split the substitutions into bite-sized pieces for seds with
|
|
# small command number limits, like on Digital OSF/1 and HP-UX.
|
|
ac_max_sed_lines=48
|
|
ac_sed_frag=1 # Number of current file.
|
|
ac_beg=1 # First line for current file.
|
|
ac_end=$ac_max_sed_lines # Line after last line for current file.
|
|
ac_more_lines=:
|
|
ac_sed_cmds=
|
|
while $ac_more_lines; do
|
|
if test $ac_beg -gt 1; then
|
|
sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
|
|
else
|
|
sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
|
|
fi
|
|
if test ! -s $tmp/subs.frag; then
|
|
ac_more_lines=false
|
|
else
|
|
# The purpose of the label and of the branching condition is to
|
|
# speed up the sed processing (if there are no `@' at all, there
|
|
# is no need to browse any of the substitutions).
|
|
# These are the two extra sed commands mentioned above.
|
|
(echo ':t
|
|
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
|
|
if test -z "$ac_sed_cmds"; then
|
|
ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
|
|
else
|
|
ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
|
|
fi
|
|
ac_sed_frag=`expr $ac_sed_frag + 1`
|
|
ac_beg=$ac_end
|
|
ac_end=`expr $ac_end + $ac_max_sed_lines`
|
|
fi
|
|
done
|
|
if test -z "$ac_sed_cmds"; then
|
|
ac_sed_cmds=cat
|
|
fi
|
|
fi # test -n "$CONFIG_FILES"
|
|
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
|
|
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
|
|
case $ac_file in
|
|
- | *:- | *:-:* ) # input from stdin
|
|
cat >$tmp/stdin
|
|
ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
|
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
|
* ) ac_file_in=$ac_file.in ;;
|
|
esac
|
|
|
|
# Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
|
|
ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
X"$ac_file" : 'X\(//\)[^/]' \| \
|
|
X"$ac_file" : 'X\(//\)$' \| \
|
|
X"$ac_file" : 'X\(/\)' \| \
|
|
. : '\(.\)' 2>/dev/null ||
|
|
echo X"$ac_file" |
|
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
|
/^X\(\/\).*/{ s//\1/; q; }
|
|
s/.*/./; q'`
|
|
if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
|
|
{ case "$ac_dir" in
|
|
[\\/]* | ?:[\\/]* ) as_incr_dir=;;
|
|
*) as_incr_dir=.;;
|
|
esac
|
|
as_dummy="$ac_dir"
|
|
for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
|
|
case $as_mkdir_dir in
|
|
# Skip DOS drivespec
|
|
?:) as_incr_dir=$as_mkdir_dir ;;
|
|
*)
|
|
as_incr_dir=$as_incr_dir/$as_mkdir_dir
|
|
test -d "$as_incr_dir" || mkdir "$as_incr_dir"
|
|
;;
|
|
esac
|
|
done; }
|
|
|
|
ac_dir_suffix="/`echo $ac_dir|sed 's,^\./,,'`"
|
|
# A "../" for each directory in $ac_dir_suffix.
|
|
ac_dots=`echo "$ac_dir_suffix" | sed 's,/[^/]*,../,g'`
|
|
else
|
|
ac_dir_suffix= ac_dots=
|
|
fi
|
|
|
|
case $srcdir in
|
|
.) ac_srcdir=.
|
|
if test -z "$ac_dots"; then
|
|
ac_top_srcdir=.
|
|
else
|
|
ac_top_srcdir=`echo $ac_dots | sed 's,/$,,'`
|
|
fi ;;
|
|
[\\/]* | ?:[\\/]* )
|
|
ac_srcdir=$srcdir$ac_dir_suffix;
|
|
ac_top_srcdir=$srcdir ;;
|
|
*) # Relative path.
|
|
ac_srcdir=$ac_dots$srcdir$ac_dir_suffix
|
|
ac_top_srcdir=$ac_dots$srcdir ;;
|
|
esac
|
|
|
|
case $INSTALL in
|
|
[\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
|
|
*) ac_INSTALL=$ac_dots$INSTALL ;;
|
|
esac
|
|
|
|
if test x"$ac_file" != x-; then
|
|
{ echo "$as_me:16650: creating $ac_file" >&5
|
|
echo "$as_me: creating $ac_file" >&6;}
|
|
rm -f "$ac_file"
|
|
fi
|
|
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
|
# use $as_me), people would be surprised to read:
|
|
# /* config.h. Generated automatically by config.status. */
|
|
configure_input="Generated automatically from `echo $ac_file_in |
|
|
sed 's,.*/,,'` by configure."
|
|
|
|
# First look for the input files in the build tree, otherwise in the
|
|
# src tree.
|
|
ac_file_inputs=`IFS=:
|
|
for f in $ac_file_in; do
|
|
case $f in
|
|
-) echo $tmp/stdin ;;
|
|
[\\/$]*)
|
|
# Absolute (can't be DOS-style, as IFS=:)
|
|
test -f "$f" || { { echo "$as_me:16668: error: cannot find input file: $f" >&5
|
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
echo $f;;
|
|
*) # Relative
|
|
if test -f "$f"; then
|
|
# Build tree
|
|
echo $f
|
|
elif test -f "$srcdir/$f"; then
|
|
# Source tree
|
|
echo $srcdir/$f
|
|
else
|
|
# /dev/null tree
|
|
{ { echo "$as_me:16681: error: cannot find input file: $f" >&5
|
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi;;
|
|
esac
|
|
done` || { (exit 1); exit 1; }
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<EOF
|
|
sed "$ac_vpsub
|
|
$extrasub
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
:t
|
|
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
|
|
s,@configure_input@,$configure_input,;t t
|
|
s,@srcdir@,$ac_srcdir,;t t
|
|
s,@top_srcdir@,$ac_top_srcdir,;t t
|
|
s,@INSTALL@,$ac_INSTALL,;t t
|
|
" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
|
|
rm -f $tmp/stdin
|
|
if test x"$ac_file" != x-; then
|
|
mv $tmp/out $ac_file
|
|
else
|
|
cat $tmp/out
|
|
rm -f $tmp/out
|
|
fi
|
|
|
|
done
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
|
|
#
|
|
# CONFIG_HEADER section.
|
|
#
|
|
|
|
# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
|
|
# NAME is the cpp macro being defined and VALUE is the value it is being given.
|
|
#
|
|
# ac_d sets the value in "#define NAME VALUE" lines.
|
|
ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
|
|
ac_dB='[ ].*$,\1#\2'
|
|
ac_dC=' '
|
|
ac_dD=',;t'
|
|
# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
|
|
ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
|
|
ac_uB='$,\1#\2define\3'
|
|
ac_uC=' '
|
|
ac_uD=',;t'
|
|
|
|
for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
|
|
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
|
|
case $ac_file in
|
|
- | *:- | *:-:* ) # input from stdin
|
|
cat >$tmp/stdin
|
|
ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
|
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
|
* ) ac_file_in=$ac_file.in ;;
|
|
esac
|
|
|
|
test x"$ac_file" != x- && { echo "$as_me:16742: creating $ac_file" >&5
|
|
echo "$as_me: creating $ac_file" >&6;}
|
|
|
|
# First look for the input files in the build tree, otherwise in the
|
|
# src tree.
|
|
ac_file_inputs=`IFS=:
|
|
for f in $ac_file_in; do
|
|
case $f in
|
|
-) echo $tmp/stdin ;;
|
|
[\\/$]*)
|
|
# Absolute (can't be DOS-style, as IFS=:)
|
|
test -f "$f" || { { echo "$as_me:16753: error: cannot find input file: $f" >&5
|
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
echo $f;;
|
|
*) # Relative
|
|
if test -f "$f"; then
|
|
# Build tree
|
|
echo $f
|
|
elif test -f "$srcdir/$f"; then
|
|
# Source tree
|
|
echo $srcdir/$f
|
|
else
|
|
# /dev/null tree
|
|
{ { echo "$as_me:16766: error: cannot find input file: $f" >&5
|
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi;;
|
|
esac
|
|
done` || { (exit 1); exit 1; }
|
|
# Remove the trailing spaces.
|
|
sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
|
|
|
|
EOF
|
|
|
|
# Transform confdefs.h into two sed scripts, `conftest.defines' and
|
|
# `conftest.undefs', that substitutes the proper values into
|
|
# config.h.in to produce config.h. The first handles `#define'
|
|
# templates, and the second `#undef' templates.
|
|
# And first: Protect against being on the right side of a sed subst in
|
|
# config.status. Protect against being in an unquoted here document
|
|
# in config.status.
|
|
rm -f conftest.defines conftest.undefs
|
|
# Using a here document instead of a string reduces the quoting nightmare.
|
|
# Putting comments in sed scripts is not portable.
|
|
#
|
|
# `end' is used to avoid that the second main sed command (meant for
|
|
# 0-ary CPP macros) applies to n-ary macro definitions.
|
|
# See the Autoconf documentation for `clear'.
|
|
cat >confdef2sed.sed <<\EOF
|
|
s/[\\&,]/\\&/g
|
|
s,[\\$`],\\&,g
|
|
t clear
|
|
: clear
|
|
s,^[ ]*#[ ]*define[ ][ ]*\(\([^ (][^ (]*\)([^)]*)\)[ ]*\(.*\)$,${ac_dA}\2${ac_dB}\1${ac_dC}\3${ac_dD},gp
|
|
t end
|
|
s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
|
|
: end
|
|
EOF
|
|
# If some macros were called several times there might be several times
|
|
# the same #defines, which is useless. Nevertheless, we may not want to
|
|
# sort them, since we want the *last* AC-DEFINE to be honored.
|
|
uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
|
|
sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
|
|
rm -f confdef2sed.sed
|
|
|
|
# This sed command replaces #undef with comments. This is necessary, for
|
|
# example, in the case of _POSIX_SOURCE, which is predefined and required
|
|
# on some systems where configure will not decide to define it.
|
|
cat >>conftest.undefs <<\EOF
|
|
s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
|
|
EOF
|
|
|
|
# Break up conftest.defines because some shells have a limit on the size
|
|
# of here documents, and old seds have small limits too (100 cmds).
|
|
echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
|
|
echo ' if egrep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
|
|
echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
|
|
echo ' :' >>$CONFIG_STATUS
|
|
rm -f conftest.tail
|
|
while grep . conftest.defines >/dev/null
|
|
do
|
|
# Write a limited-size here document to $tmp/defines.sed.
|
|
echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
|
|
# Speed up: don't consider the non `#define' lines.
|
|
echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
|
|
# Work around the forget-to-reset-the-flag bug.
|
|
echo 't clr' >>$CONFIG_STATUS
|
|
echo ': clr' >>$CONFIG_STATUS
|
|
sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
|
|
echo 'CEOF
|
|
sed -f $tmp/defines.sed $tmp/in >$tmp/out
|
|
rm -f $tmp/in
|
|
mv $tmp/out $tmp/in
|
|
' >>$CONFIG_STATUS
|
|
sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
|
|
rm -f conftest.defines
|
|
mv conftest.tail conftest.defines
|
|
done
|
|
rm -f conftest.defines
|
|
echo ' fi # egrep' >>$CONFIG_STATUS
|
|
echo >>$CONFIG_STATUS
|
|
|
|
# Break up conftest.undefs because some shells have a limit on the size
|
|
# of here documents, and old seds have small limits too (100 cmds).
|
|
echo ' # Handle all the #undef templates' >>$CONFIG_STATUS
|
|
rm -f conftest.tail
|
|
while grep . conftest.undefs >/dev/null
|
|
do
|
|
# Write a limited-size here document to $tmp/undefs.sed.
|
|
echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
|
|
# Speed up: don't consider the non `#undef'
|
|
echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
|
|
# Work around the forget-to-reset-the-flag bug.
|
|
echo 't clr' >>$CONFIG_STATUS
|
|
echo ': clr' >>$CONFIG_STATUS
|
|
sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
|
|
echo 'CEOF
|
|
sed -f $tmp/undefs.sed $tmp/in >$tmp/out
|
|
rm -f $tmp/in
|
|
mv $tmp/out $tmp/in
|
|
' >>$CONFIG_STATUS
|
|
sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
|
|
rm -f conftest.undefs
|
|
mv conftest.tail conftest.undefs
|
|
done
|
|
rm -f conftest.undefs
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
|
# use $as_me), people would be surprised to read:
|
|
# /* config.h. Generated automatically by config.status. */
|
|
if test x"$ac_file" = x-; then
|
|
echo "/* Generated automatically by configure. */" >$tmp/config.h
|
|
else
|
|
echo "/* $ac_file. Generated automatically by configure. */" >$tmp/config.h
|
|
fi
|
|
cat $tmp/in >>$tmp/config.h
|
|
rm -f $tmp/in
|
|
if test x"$ac_file" != x-; then
|
|
if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
|
|
{ echo "$as_me:16883: $ac_file is unchanged" >&5
|
|
echo "$as_me: $ac_file is unchanged" >&6;}
|
|
else
|
|
ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
X"$ac_file" : 'X\(//\)[^/]' \| \
|
|
X"$ac_file" : 'X\(//\)$' \| \
|
|
X"$ac_file" : 'X\(/\)' \| \
|
|
. : '\(.\)' 2>/dev/null ||
|
|
echo X"$ac_file" |
|
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
|
/^X\(\/\).*/{ s//\1/; q; }
|
|
s/.*/./; q'`
|
|
if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
|
|
{ case "$ac_dir" in
|
|
[\\/]* | ?:[\\/]* ) as_incr_dir=;;
|
|
*) as_incr_dir=.;;
|
|
esac
|
|
as_dummy="$ac_dir"
|
|
for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
|
|
case $as_mkdir_dir in
|
|
# Skip DOS drivespec
|
|
?:) as_incr_dir=$as_mkdir_dir ;;
|
|
*)
|
|
as_incr_dir=$as_incr_dir/$as_mkdir_dir
|
|
test -d "$as_incr_dir" || mkdir "$as_incr_dir"
|
|
;;
|
|
esac
|
|
done; }
|
|
|
|
fi
|
|
rm -f $ac_file
|
|
mv $tmp/config.h $ac_file
|
|
fi
|
|
else
|
|
cat $tmp/config.h
|
|
rm -f $tmp/config.h
|
|
fi
|
|
done
|
|
EOF
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
|
|
#
|
|
# CONFIG_COMMANDS section.
|
|
#
|
|
for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
|
|
ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
|
|
ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
|
|
|
case $ac_dest in
|
|
default )
|
|
# Makefile uses this timestamp file to record whether config.h is up to date.
|
|
echo timestamp > stamp-h
|
|
;;
|
|
esac
|
|
done
|
|
EOF
|
|
|
|
cat >>$CONFIG_STATUS <<\EOF
|
|
|
|
{ (exit 0); exit 0; }
|
|
EOF
|
|
chmod +x $CONFIG_STATUS
|
|
ac_clean_files=$ac_clean_files_save
|
|
|
|
# configure is writing to config.log, and then calls config.status.
|
|
# config.status does its own redirection, appending to config.log.
|
|
# Unfortunately, on DOS this fails, as config.log is still kept open
|
|
# by configure, so config.status won't be able to write to it; its
|
|
# output is simply discarded. So we exec the FD to /dev/null,
|
|
# effectively closing config.log, so it can be properly (re)opened and
|
|
# appended to by config.status. When coming back to configure, we
|
|
# need to make the FD available again.
|
|
if test "$no_create" != yes; then
|
|
ac_cs_success=:
|
|
exec 5>/dev/null
|
|
$SHELL $CONFIG_STATUS || ac_cs_success=false
|
|
exec 5>>config.log
|
|
# Use ||, not &&, to avoid exiting from the if with $? = 1, which
|
|
# would make configure fail if this is the last instruction.
|
|
$ac_cs_success || { (exit 1); exit 1; }
|
|
fi
|
|
|