1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00
emacs/configure

12932 lines
352 KiB
Plaintext
Raw Normal View History

1999-10-07 13:06:22 +00:00
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
2001-10-19 12:33:10 +00:00
# Generated by Autoconf 2.52.
1999-10-07 13:06:22 +00:00
#
2001-10-19 12:33:10 +00:00
# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
# Free Software Foundation, Inc.
1999-10-07 13:06:22 +00:00
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
2001-10-19 12:33:10 +00:00
# Avoid depending upon Character Ranges.
as_cr_letters='abcdefghijklmnopqrstuvwxyz'
as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
as_cr_Letters=$as_cr_letters$as_cr_LETTERS
as_cr_digits='0123456789'
as_cr_alnum=$as_cr_Letters$as_cr_digits
# Sed expression to map a string onto a valid variable name.
as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
# Sed expression to map a string onto a valid CPP name.
as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
# Be Bourne compatible
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
emulate sh
NULLCMD=:
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
set -o posix
fi
# Name of the executable.
as_me=`echo "$0" |sed 's,.*[\\/],,'`
if expr a : '\(a\)' >/dev/null 2>&1; then
as_expr=expr
else
as_expr=false
fi
rm -f conf$$ conf$$.exe conf$$.file
echo >conf$$.file
if ln -s conf$$.file conf$$ 2>/dev/null; then
# We could just check for DJGPP; but this test a) works b) is more generic
# and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
if test -f conf$$.exe; then
# Don't use ln at all; we don't have any links
as_ln_s='cp -p'
else
as_ln_s='ln -s'
fi
elif ln conf$$.file conf$$ 2>/dev/null; then
as_ln_s=ln
else
as_ln_s='cp -p'
fi
rm -f conf$$ conf$$.exe conf$$.file
as_executable_p="test -f"
# Support unset when possible.
if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
as_unset=unset
else
as_unset=false
fi
# NLS nuisances.
$as_unset LANG || test "${LANG+set}" != set || { LANG=C; export LANG; }
$as_unset LC_ALL || test "${LC_ALL+set}" != set || { LC_ALL=C; export LC_ALL; }
$as_unset LC_TIME || test "${LC_TIME+set}" != set || { LC_TIME=C; export LC_TIME; }
$as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set || { LC_CTYPE=C; export LC_CTYPE; }
$as_unset LANGUAGE || test "${LANGUAGE+set}" != set || { LANGUAGE=C; export LANGUAGE; }
$as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set || { LC_COLLATE=C; export LC_COLLATE; }
$as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set || { LC_NUMERIC=C; export LC_NUMERIC; }
$as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set || { LC_MESSAGES=C; export LC_MESSAGES; }
# IFS
# We need space, tab and new line, in precisely that order.
as_nl='
'
IFS=" $as_nl"
# CDPATH.
$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }
# Name of the host.
# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
# so uname gets run too.
ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
exec 6>&1
#
# Initializations.
#
1999-10-07 13:06:22 +00:00
ac_default_prefix=/usr/local
2001-10-19 12:33:10 +00:00
cross_compiling=no
subdirs=
MFLAGS= MAKEFLAGS=
SHELL=${CONFIG_SHELL-/bin/sh}
# Maximum number of lines to put in a shell here document.
# This variable seems obsolete. It should probably be removed, and
# only ac_max_sed_lines should be used.
: ${ac_max_here_lines=38}
ac_unique_file="src/lisp.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"
1999-10-07 13:06:22 +00:00
# Initialize some variables set by options.
2001-10-19 12:33:10 +00:00
ac_init_help=
ac_init_version=false
1999-10-07 13:06:22 +00:00
# The variables have the same names as the options, with
# dashes changed to underlines.
2001-10-19 12:33:10 +00:00
cache_file=/dev/null
1999-10-07 13:06:22 +00:00
exec_prefix=NONE
no_create=
no_recursion=
prefix=NONE
program_prefix=NONE
program_suffix=NONE
program_transform_name=s,x,x,
silent=
site=
srcdir=
verbose=
x_includes=NONE
x_libraries=NONE
2001-10-19 12:33:10 +00:00
# Installation directory options.
# These are left unexpanded so users can "make install exec_prefix=/foo"
# and all the variables that are supposed to be based on exec_prefix
# by default will actually change.
# Use braces instead of parens because sh, perl, etc. also accept them.
1999-10-07 13:06:22 +00:00
bindir='${exec_prefix}/bin'
sbindir='${exec_prefix}/sbin'
libexecdir='${exec_prefix}/libexec'
datadir='${prefix}/share'
sysconfdir='${prefix}/etc'
sharedstatedir='${prefix}/com'
localstatedir='${prefix}/var'
libdir='${exec_prefix}/lib'
includedir='${prefix}/include'
oldincludedir='/usr/include'
infodir='${prefix}/info'
mandir='${prefix}/man'
2001-10-19 12:33:10 +00:00
# Identity of this package.
PACKAGE_NAME=
PACKAGE_TARNAME=
PACKAGE_VERSION=
PACKAGE_STRING=
PACKAGE_BUGREPORT=
1999-10-07 13:06:22 +00:00
ac_prev=
for ac_option
do
# If the previous option needs an argument, assign it.
if test -n "$ac_prev"; then
eval "$ac_prev=\$ac_option"
ac_prev=
continue
fi
2001-10-19 12:33:10 +00:00
ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
1999-10-07 13:06:22 +00:00
# Accept the important Cygnus configure options, so we can diagnose typos.
2001-10-19 12:33:10 +00:00
case $ac_option in
1999-10-07 13:06:22 +00:00
-bindir | --bindir | --bindi | --bind | --bin | --bi)
ac_prev=bindir ;;
-bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
2001-10-19 12:33:10 +00:00
bindir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-build | --build | --buil | --bui | --bu)
2001-10-19 12:33:10 +00:00
ac_prev=build_alias ;;
1999-10-07 13:06:22 +00:00
-build=* | --build=* | --buil=* | --bui=* | --bu=*)
2001-10-19 12:33:10 +00:00
build_alias=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-cache-file | --cache-file | --cache-fil | --cache-fi \
| --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
ac_prev=cache_file ;;
-cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
| --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
2001-10-19 12:33:10 +00:00
cache_file=$ac_optarg ;;
--config-cache | -C)
cache_file=config.cache ;;
1999-10-07 13:06:22 +00:00
-datadir | --datadir | --datadi | --datad | --data | --dat | --da)
ac_prev=datadir ;;
-datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
| --da=*)
2001-10-19 12:33:10 +00:00
datadir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-disable-* | --disable-*)
2001-10-19 12:33:10 +00:00
ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
1999-10-07 13:06:22 +00:00
# Reject names that are not valid shell variable names.
2001-10-19 12:33:10 +00:00
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" ;;
1999-10-07 13:06:22 +00:00
-enable-* | --enable-*)
2001-10-19 12:33:10 +00:00
ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
1999-10-07 13:06:22 +00:00
# Reject names that are not valid shell variable names.
2001-10-19 12:33:10 +00:00
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"`;;
1999-10-07 13:06:22 +00:00
*) ac_optarg=yes ;;
esac
2001-10-19 12:33:10 +00:00
eval "enable_$ac_feature='$ac_optarg'" ;;
1999-10-07 13:06:22 +00:00
-exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
| --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
| --exec | --exe | --ex)
ac_prev=exec_prefix ;;
-exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
| --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
| --exec=* | --exe=* | --ex=*)
2001-10-19 12:33:10 +00:00
exec_prefix=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-gas | --gas | --ga | --g)
# Obsolete; use --with-gas.
with_gas=yes ;;
2001-10-19 12:33:10 +00:00
-help | --help | --hel | --he | -h)
ac_init_help=long ;;
-help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
ac_init_help=recursive ;;
-help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
ac_init_help=short ;;
1999-10-07 13:06:22 +00:00
-host | --host | --hos | --ho)
2001-10-19 12:33:10 +00:00
ac_prev=host_alias ;;
1999-10-07 13:06:22 +00:00
-host=* | --host=* | --hos=* | --ho=*)
2001-10-19 12:33:10 +00:00
host_alias=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-includedir | --includedir | --includedi | --included | --include \
| --includ | --inclu | --incl | --inc)
ac_prev=includedir ;;
-includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
| --includ=* | --inclu=* | --incl=* | --inc=*)
2001-10-19 12:33:10 +00:00
includedir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-infodir | --infodir | --infodi | --infod | --info | --inf)
ac_prev=infodir ;;
-infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
2001-10-19 12:33:10 +00:00
infodir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-libdir | --libdir | --libdi | --libd)
ac_prev=libdir ;;
-libdir=* | --libdir=* | --libdi=* | --libd=*)
2001-10-19 12:33:10 +00:00
libdir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
| --libexe | --libex | --libe)
ac_prev=libexecdir ;;
-libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
| --libexe=* | --libex=* | --libe=*)
2001-10-19 12:33:10 +00:00
libexecdir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-localstatedir | --localstatedir | --localstatedi | --localstated \
| --localstate | --localstat | --localsta | --localst \
| --locals | --local | --loca | --loc | --lo)
ac_prev=localstatedir ;;
-localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
| --localstate=* | --localstat=* | --localsta=* | --localst=* \
| --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
2001-10-19 12:33:10 +00:00
localstatedir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-mandir | --mandir | --mandi | --mand | --man | --ma | --m)
ac_prev=mandir ;;
-mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
2001-10-19 12:33:10 +00:00
mandir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-nfp | --nfp | --nf)
# Obsolete; use --without-fp.
with_fp=no ;;
-no-create | --no-create | --no-creat | --no-crea | --no-cre \
| --no-cr | --no-c)
no_create=yes ;;
-no-recursion | --no-recursion | --no-recursio | --no-recursi \
| --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
no_recursion=yes ;;
-oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
| --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
| --oldin | --oldi | --old | --ol | --o)
ac_prev=oldincludedir ;;
-oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
| --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
| --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
2001-10-19 12:33:10 +00:00
oldincludedir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
ac_prev=prefix ;;
-prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
2001-10-19 12:33:10 +00:00
prefix=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-program-prefix | --program-prefix | --program-prefi | --program-pref \
| --program-pre | --program-pr | --program-p)
ac_prev=program_prefix ;;
-program-prefix=* | --program-prefix=* | --program-prefi=* \
| --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
2001-10-19 12:33:10 +00:00
program_prefix=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-program-suffix | --program-suffix | --program-suffi | --program-suff \
| --program-suf | --program-su | --program-s)
ac_prev=program_suffix ;;
-program-suffix=* | --program-suffix=* | --program-suffi=* \
| --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
2001-10-19 12:33:10 +00:00
program_suffix=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-program-transform-name | --program-transform-name \
| --program-transform-nam | --program-transform-na \
| --program-transform-n | --program-transform- \
| --program-transform | --program-transfor \
| --program-transfo | --program-transf \
| --program-trans | --program-tran \
| --progr-tra | --program-tr | --program-t)
ac_prev=program_transform_name ;;
-program-transform-name=* | --program-transform-name=* \
| --program-transform-nam=* | --program-transform-na=* \
| --program-transform-n=* | --program-transform-=* \
| --program-transform=* | --program-transfor=* \
| --program-transfo=* | --program-transf=* \
| --program-trans=* | --program-tran=* \
| --progr-tra=* | --program-tr=* | --program-t=*)
2001-10-19 12:33:10 +00:00
program_transform_name=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-q | -quiet | --quiet | --quie | --qui | --qu | --q \
| -silent | --silent | --silen | --sile | --sil)
silent=yes ;;
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
ac_prev=sbindir ;;
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
| --sbi=* | --sb=*)
2001-10-19 12:33:10 +00:00
sbindir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-sharedstatedir | --sharedstatedir | --sharedstatedi \
| --sharedstated | --sharedstate | --sharedstat | --sharedsta \
| --sharedst | --shareds | --shared | --share | --shar \
| --sha | --sh)
ac_prev=sharedstatedir ;;
-sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
| --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
| --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
| --sha=* | --sh=*)
2001-10-19 12:33:10 +00:00
sharedstatedir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-site | --site | --sit)
ac_prev=site ;;
-site=* | --site=* | --sit=*)
2001-10-19 12:33:10 +00:00
site=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
ac_prev=srcdir ;;
-srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
2001-10-19 12:33:10 +00:00
srcdir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
| --syscon | --sysco | --sysc | --sys | --sy)
ac_prev=sysconfdir ;;
-sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
| --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
2001-10-19 12:33:10 +00:00
sysconfdir=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-target | --target | --targe | --targ | --tar | --ta | --t)
2001-10-19 12:33:10 +00:00
ac_prev=target_alias ;;
1999-10-07 13:06:22 +00:00
-target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
2001-10-19 12:33:10 +00:00
target_alias=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-v | -verbose | --verbose | --verbos | --verbo | --verb)
verbose=yes ;;
2001-10-19 12:33:10 +00:00
-version | --version | --versio | --versi | --vers | -V)
ac_init_version=: ;;
1999-10-07 13:06:22 +00:00
-with-* | --with-*)
2001-10-19 12:33:10 +00:00
ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1999-10-07 13:06:22 +00:00
# Reject names that are not valid shell variable names.
2001-10-19 12:33:10 +00:00
expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
{ echo "$as_me: error: invalid package name: $ac_package" >&2
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
ac_package=`echo $ac_package| sed 's/-/_/g'`
2001-10-19 12:33:10 +00:00
case $ac_option in
*=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
1999-10-07 13:06:22 +00:00
*) ac_optarg=yes ;;
esac
2001-10-19 12:33:10 +00:00
eval "with_$ac_package='$ac_optarg'" ;;
1999-10-07 13:06:22 +00:00
-without-* | --without-*)
2001-10-19 12:33:10 +00:00
ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1999-10-07 13:06:22 +00:00
# Reject names that are not valid shell variable names.
2001-10-19 12:33:10 +00:00
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" ;;
1999-10-07 13:06:22 +00:00
--x)
# Obsolete; use --with-x.
with_x=yes ;;
-x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
| --x-incl | --x-inc | --x-in | --x-i)
ac_prev=x_includes ;;
-x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
| --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
2001-10-19 12:33:10 +00:00
x_includes=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
-x-libraries | --x-libraries | --x-librarie | --x-librari \
| --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
ac_prev=x_libraries ;;
-x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
| --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
2001-10-19 12:33:10 +00:00
x_libraries=$ac_optarg ;;
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
-*) { echo "$as_me: error: unrecognized option: $ac_option
Try \`$0 --help' for more information." >&2
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
;;
2001-10-19 12:33:10 +00:00
*=*)
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 ;;
1999-10-07 13:06:22 +00:00
*)
2001-10-19 12:33:10 +00:00
# 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}
1999-10-07 13:06:22 +00:00
;;
esac
done
if test -n "$ac_prev"; then
2001-10-19 12:33:10 +00:00
ac_option=--`echo $ac_prev | sed 's/_/-/g'`
{ echo "$as_me: error: missing argument to $ac_option" >&2
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
# Be sure to have absolute paths.
for ac_var in exec_prefix prefix
do
eval ac_val=$`echo $ac_var`
case $ac_val in
[\\/$]* | ?:[\\/]* | NONE | '' ) ;;
*) { echo "$as_me: error: expected an absolute path for --$ac_var: $ac_val" >&2
{ (exit 1); exit 1; }; };;
esac
done
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
# Be sure to have absolute paths.
for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
localstatedir libdir includedir oldincludedir infodir mandir
1999-10-07 13:06:22 +00:00
do
2001-10-19 12:33:10 +00:00
eval ac_val=$`echo $ac_var`
case $ac_val in
[\\/$]* | ?:[\\/]* ) ;;
*) { echo "$as_me: error: expected an absolute path for --$ac_var: $ac_val" >&2
{ (exit 1); exit 1; }; };;
1999-10-07 13:06:22 +00:00
esac
done
2001-10-19 12:33:10 +00:00
# There might be people who depend on the old broken behavior: `$host'
# used to hold the argument of --host etc.
build=$build_alias
host=$host_alias
target=$target_alias
# FIXME: should be removed in autoconf 3.0.
if test "x$host_alias" != x; then
if test "x$build_alias" = x; then
cross_compiling=maybe
echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used." >&2
elif test "x$build_alias" != "x$host_alias"; then
cross_compiling=yes
fi
fi
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
ac_tool_prefix=
test -n "$host_alias" && ac_tool_prefix=$host_alias-
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
test "$silent" = yes && exec 6>/dev/null
1999-10-07 13:06:22 +00:00
# Find the source files, if location was not specified.
if test -z "$srcdir"; then
ac_srcdir_defaulted=yes
# Try the directory containing this script, then its parent.
ac_prog=$0
2001-10-19 12:33:10 +00:00
ac_confdir=`echo "$ac_prog" | sed 's%[\\/][^\\/][^\\/]*$%%'`
1999-10-07 13:06:22 +00:00
test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
srcdir=$ac_confdir
if test ! -r $srcdir/$ac_unique_file; then
srcdir=..
fi
else
ac_srcdir_defaulted=no
fi
if test ! -r $srcdir/$ac_unique_file; then
if test "$ac_srcdir_defaulted" = yes; then
2001-10-19 12:33:10 +00:00
{ echo "$as_me: error: cannot find sources in $ac_confdir or .." >&2
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
{ echo "$as_me: error: cannot find sources in $srcdir" >&2
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
fi
fi
2001-10-19 12:33:10 +00:00
srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
ac_env_build_alias_set=${build_alias+set}
ac_env_build_alias_value=$build_alias
ac_cv_env_build_alias_set=${build_alias+set}
ac_cv_env_build_alias_value=$build_alias
ac_env_host_alias_set=${host_alias+set}
ac_env_host_alias_value=$host_alias
ac_cv_env_host_alias_set=${host_alias+set}
ac_cv_env_host_alias_value=$host_alias
ac_env_target_alias_set=${target_alias+set}
ac_env_target_alias_value=$target_alias
ac_cv_env_target_alias_set=${target_alias+set}
ac_cv_env_target_alias_value=$target_alias
ac_env_CC_set=${CC+set}
ac_env_CC_value=$CC
ac_cv_env_CC_set=${CC+set}
ac_cv_env_CC_value=$CC
ac_env_CFLAGS_set=${CFLAGS+set}
ac_env_CFLAGS_value=$CFLAGS
ac_cv_env_CFLAGS_set=${CFLAGS+set}
ac_cv_env_CFLAGS_value=$CFLAGS
ac_env_LDFLAGS_set=${LDFLAGS+set}
ac_env_LDFLAGS_value=$LDFLAGS
ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
ac_cv_env_LDFLAGS_value=$LDFLAGS
ac_env_CPPFLAGS_set=${CPPFLAGS+set}
ac_env_CPPFLAGS_value=$CPPFLAGS
ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
ac_cv_env_CPPFLAGS_value=$CPPFLAGS
ac_env_CPP_set=${CPP+set}
ac_env_CPP_value=$CPP
ac_cv_env_CPP_set=${CPP+set}
ac_cv_env_CPP_value=$CPP
#
# Report the --help message.
#
if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<EOF
\`configure' configures this package to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
To assign environment variables (e.g., CC, CFLAGS...), specify them as
VAR=VALUE. See below for descriptions of some of the useful variables.
Defaults for the options are specified in brackets.
Configuration:
-h, --help display this help and exit
--help=short display options specific to this package
--help=recursive display the short help of all the included packages
-V, --version display version information and exit
-q, --quiet, --silent do not print \`checking...' messages
--cache-file=FILE cache test results in FILE [disabled]
-C, --config-cache alias for \`--cache-file=config.cache'
-n, --no-create do not create output files
--srcdir=DIR find the sources in DIR [configure dir or \`..']
EOF
cat <<EOF
Installation directories:
--prefix=PREFIX install architecture-independent files in PREFIX
[$ac_default_prefix]
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
[PREFIX]
By default, \`make install' will install all the files in
\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
an installation prefix other than \`$ac_default_prefix' using \`--prefix',
for instance \`--prefix=\$HOME'.
For better control, use the options below.
Fine tuning of the installation directories:
--bindir=DIR user executables [EPREFIX/bin]
--sbindir=DIR system admin executables [EPREFIX/sbin]
--libexecdir=DIR program executables [EPREFIX/libexec]
--datadir=DIR read-only architecture-independent data [PREFIX/share]
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
--libdir=DIR object code libraries [EPREFIX/lib]
--includedir=DIR C header files [PREFIX/include]
--oldincludedir=DIR C header files for non-gcc [/usr/include]
--infodir=DIR info documentation [PREFIX/info]
--mandir=DIR man documentation [PREFIX/man]
EOF
cat <<\EOF
X features:
--x-includes=DIR X include files are in DIR
--x-libraries=DIR X library files are in DIR
System types:
--build=BUILD configure for building on BUILD [guessed]
--host=HOST build programs to run on HOST [BUILD]
EOF
fi
if test -n "$ac_init_help"; then
cat <<\EOF
Optional Features:
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--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)
--without-gcc don't use GCC to compile Emacs if GCC is found
--without-pop don't support POP mail retrieval with movemail
--with-kerberos support Kerberos-authenticated POP
--with-kerberos5 support Kerberos version 5 authenticated POP
--with-hesiod support Hesiod to get the POP server host
--with-x-toolkit=KIT use an X toolkit (KIT = yes/lucid/athena/motif/no)
--with-xpm use -lXpm for displaying XPM images
--with-jpeg use -ljpeg for displaying JPEG images
--with-tiff use -ltiff for displaying TIFF images
--with-gif use -lungif for displaying GIF images
--with-png use -lpng for displaying PNG images
--without-toolkit-scroll-bars
don't use Motif or Xaw3d scroll bars
--without-xim don't use X11 XIM
--with-x use the X Window System
Some influential environment variables:
CC C compiler command
CFLAGS C compiler flags
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
nonstandard directory <lib dir>
CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have
headers in a nonstandard directory <include dir>
CPP C preprocessor
Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
EOF
fi
if test "$ac_init_help" = "recursive"; then
# If there are subdirs, report their specific --help.
ac_popdir=`pwd`
for ac_subdir in : $ac_subdirs_all; do test "x$ac_subdir" = x: && continue
cd $ac_subdir
# A "../" for each directory in /$ac_subdir.
ac_dots=`echo $ac_subdir |
sed 's,^\./,,;s,[^/]$,&/,;s,[^/]*/,../,g'`
case $srcdir in
.) # No --srcdir option. We are building in place.
ac_sub_srcdir=$srcdir ;;
[\\/]* | ?:[\\/]* ) # Absolute path.
ac_sub_srcdir=$srcdir/$ac_subdir ;;
*) # Relative path.
ac_sub_srcdir=$ac_dots$srcdir/$ac_subdir ;;
esac
# Check for guested configure; otherwise get Cygnus style configure.
if test -f $ac_sub_srcdir/configure.gnu; then
echo
$SHELL $ac_sub_srcdir/configure.gnu --help=recursive
elif test -f $ac_sub_srcdir/configure; then
echo
$SHELL $ac_sub_srcdir/configure --help=recursive
elif test -f $ac_sub_srcdir/configure.ac ||
test -f $ac_sub_srcdir/configure.in; then
echo
$ac_configure --help
else
echo "$as_me: WARNING: no configuration information is in $ac_subdir" >&2
fi
cd $ac_popdir
done
fi
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\EOF
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
Free Software Foundation, Inc.
This configure script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it.
EOF
exit 0
fi
exec 5>config.log
cat >&5 <<EOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by $as_me, which was
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
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
# Let the site file select an alternate cache file if it wants to.
1999-10-07 13:06:22 +00:00
# Prefer explicitly selected file to automatically selected ones.
if test -z "$CONFIG_SITE"; then
if test "x$prefix" != xNONE; then
CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
else
CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
fi
fi
for ac_site_file in $CONFIG_SITE; do
if test -r "$ac_site_file"; then
2001-10-19 12:33:10 +00:00
{ echo "$as_me:887: loading site script $ac_site_file" >&5
echo "$as_me: loading site script $ac_site_file" >&6;}
cat "$ac_site_file" >&5
1999-10-07 13:06:22 +00:00
. "$ac_site_file"
fi
done
if test -r "$cache_file"; then
2001-10-19 12:33:10 +00:00
# Some versions of bash will fail to source /dev/null (special
# files actually), so we avoid doing that.
if test -f "$cache_file"; then
{ echo "$as_me:898: loading cache $cache_file" >&5
echo "$as_me: loading cache $cache_file" >&6;}
case $cache_file in
[\\/]* | ?:[\\/]* ) . $cache_file;;
*) . ./$cache_file;;
esac
fi
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
{ echo "$as_me:906: 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:922: 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:926: 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:932: 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:934: former value: $ac_old_val" >&5
echo "$as_me: former value: $ac_old_val" >&2;}
{ echo "$as_me:936: 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:955: 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:957: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
fi
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
2001-10-19 12:33:10 +00:00
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
*c*,-n*) ECHO_N= ECHO_C='
' ECHO_T=' ' ;;
*c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
*) ECHO_N= ECHO_C='\c' ECHO_T= ;;
esac
echo "#! $SHELL" >conftest.sh
echo "exit 0" >>conftest.sh
chmod +x conftest.sh
if { (echo "$as_me:977: PATH=\".;.\"; conftest.sh") >&5
(PATH=".;."; conftest.sh) 2>&5
ac_status=$?
echo "$as_me:980: \$? = $ac_status" >&5
(exit $ac_status); }; then
ac_path_separator=';'
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_path_separator=:
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
PATH_SEPARATOR="$ac_path_separator"
rm -f conftest.sh
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
ac_config_headers="$ac_config_headers src/config.h:src/config.in"
1999-10-07 13:06:22 +00:00
lispdir='${datadir}/emacs/${version}/lisp'
locallisppath='${datadir}/emacs/${version}/site-lisp:'\
'${datadir}/emacs/site-lisp:${datadir}/emacs/${version}/leim'
lisppath='${locallisppath}:${lispdir}'
etcdir='${datadir}/emacs/${version}/etc'
archlibdir='${libexecdir}/emacs/${version}/${configuration}'
docdir='${datadir}/emacs/${version}/etc'
# Check whether --with-gcc or --without-gcc was given.
if test "${with_gcc+set}" = set; then
withval="$with_gcc"
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# Check whether --with-pop or --without-pop was given.
if test "${with_pop+set}" = set; then
withval="$with_pop"
1999-10-12 17:14:18 +00:00
if test "$withval" = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define MAIL_USE_POP 1
EOF
1999-10-12 17:14:18 +00:00
else :
fi
1999-11-08 16:26:25 +00:00
else
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-11-08 16:26:25 +00:00
#define MAIL_USE_POP 1
EOF
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# Check whether --with-kerberos or --without-kerberos was given.
if test "${with_kerberos+set}" = set; then
withval="$with_kerberos"
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
#define KERBEROS 1
EOF
2001-10-19 12:33:10 +00:00
fi;
# Check whether --with-kerberos5 or --without-kerberos5 was given.
if test "${with_kerberos5+set}" = set; then
withval="$with_kerberos5"
if test "${with_kerberos5+set}" = set; then
if test "${with_kerberos+set}" != set; then
with_kerberos=yes
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
#define KERBEROS 1
EOF
fi
fi
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
#define KERBEROS5 1
EOF
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# Check whether --with-hesiod or --without-hesiod was given.
if test "${with_hesiod+set}" = set; then
withval="$with_hesiod"
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HESIOD 1
EOF
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# Check whether --with-x-toolkit or --without-x-toolkit was given.
if test "${with_x_toolkit+set}" = set; then
withval="$with_x_toolkit"
case "${withval}" in
y | ye | yes ) val=athena ;;
n | no ) val=no ;;
l | lu | luc | luci | lucid ) val=lucid ;;
a | at | ath | athe | athen | athena ) val=athena ;;
m | mo | mot | moti | motif ) val=motif ;;
* )
2001-10-19 12:33:10 +00:00
{ { echo "$as_me:1068: error: \`--with-x-toolkit=$withval' is invalid\;
1999-10-07 13:06:22 +00:00
this option's value should be \`yes', \`no', \`lucid', \`athena', or \`motif'.
2001-10-19 12:33:10 +00:00
Currently, \`yes', \`athena' and \`lucid' are synonyms." >&5
echo "$as_me: error: \`--with-x-toolkit=$withval' is invalid\;
this option's value should be \`yes', \`no', \`lucid', \`athena', or \`motif'.
Currently, \`yes', \`athena' and \`lucid' are synonyms." >&2;}
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
;;
esac
with_x_toolkit=$val
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# Check whether --with-xpm or --without-xpm was given.
if test "${with_xpm+set}" = set; then
withval="$with_xpm"
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# Check whether --with-jpeg or --without-jpeg was given.
if test "${with_jpeg+set}" = set; then
withval="$with_jpeg"
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# Check whether --with-tiff or --without-tiff was given.
if test "${with_tiff+set}" = set; then
withval="$with_tiff"
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# Check whether --with-gif or --without-gif was given.
if test "${with_gif+set}" = set; then
withval="$with_gif"
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# Check whether --with-png or --without-png was given.
if test "${with_png+set}" = set; then
withval="$with_png"
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# Check whether --with-toolkit-scroll-bars or --without-toolkit-scroll-bars was given.
if test "${with_toolkit_scroll_bars+set}" = set; then
withval="$with_toolkit_scroll_bars"
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
2000-06-26 15:40:38 +00:00
# Check whether --with-xim or --without-xim was given.
if test "${with_xim+set}" = set; then
withval="$with_xim"
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
#### Make srcdir absolute, if it isn't already. It's important to
2000-08-24 11:42:48 +00:00
#### avoid running the path through pwd unnecessarily, since pwd can
1999-10-07 13:06:22 +00:00
#### give you automounter prefixes, which can go away. We do all this
#### so Emacs can find its files when run uninstalled.
2000-08-24 11:42:48 +00:00
## Make sure CDPATH doesn't affect cd (in case PWD is relative).
unset CDPATH
1999-10-07 13:06:22 +00:00
case "${srcdir}" in
/* ) ;;
. )
## We may be able to use the $PWD environment variable to make this
## absolute. But sometimes PWD is inaccurate.
2000-08-24 11:42:48 +00:00
if test ".${PWD}" != "." && test ".`(cd ${PWD} ; sh -c pwd)`" = ".${PWD}" ;
1999-10-07 13:06:22 +00:00
then
srcdir="$PWD"
else
srcdir="`(cd ${srcdir}; pwd)`"
fi
;;
* ) srcdir="`(cd ${srcdir}; pwd)`" ;;
esac
#### Check if the source directory already has a configured system in it.
if test `pwd` != `(cd ${srcdir} && pwd)` \
&& test -f "${srcdir}/src/config.h" ; then
2001-10-19 12:33:10 +00:00
{ echo "$as_me:1147: WARNING: The directory tree \`${srcdir}' is being used
as a build directory right now; it has been configured in its own
right. To configure in another directory as well, you MUST
use GNU make. If you do not have GNU make, then you must
now do \`make distclean' in ${srcdir},
and then run $0 again." >&5
echo "$as_me: WARNING: The directory tree \`${srcdir}' is being used
1999-10-07 13:06:22 +00:00
as a build directory right now; it has been configured in its own
right. To configure in another directory as well, you MUST
use GNU make. If you do not have GNU make, then you must
now do \`make distclean' in ${srcdir},
2001-10-19 12:33:10 +00:00
and then run $0 again." >&2;}
1999-10-07 13:06:22 +00:00
extrasub='/^VPATH[ ]*=/c\
vpath %.c $(srcdir)\
vpath %.h $(srcdir)\
vpath %.y $(srcdir)\
vpath %.l $(srcdir)\
vpath %.s $(srcdir)\
vpath %.in $(srcdir)\
vpath %.texi $(srcdir)'
fi
#### Given the configuration name, set machfile and opsysfile to the
#### names of the m/*.h and s/*.h files we should use.
### Canonicalize the configuration name.
ac_aux_dir=
for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
if test -f $ac_dir/install-sh; then
ac_aux_dir=$ac_dir
ac_install_sh="$ac_aux_dir/install-sh -c"
break
elif test -f $ac_dir/install.sh; then
ac_aux_dir=$ac_dir
ac_install_sh="$ac_aux_dir/install.sh -c"
break
2001-10-19 12:33:10 +00:00
elif test -f $ac_dir/shtool; then
ac_aux_dir=$ac_dir
ac_install_sh="$ac_aux_dir/shtool install -c"
break
1999-10-07 13:06:22 +00:00
fi
done
if test -z "$ac_aux_dir"; then
2001-10-19 12:33:10 +00:00
{ { echo "$as_me:1192: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
ac_config_guess="$SHELL $ac_aux_dir/config.guess"
ac_config_sub="$SHELL $ac_aux_dir/config.sub"
ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
1999-10-07 13:06:22 +00:00
# Make sure we can run config.sub.
2001-10-19 12:33:10 +00:00
$ac_config_sub sun4 >/dev/null 2>&1 ||
{ { echo "$as_me:1202: error: cannot run $ac_config_sub" >&5
echo "$as_me: error: cannot run $ac_config_sub" >&2;}
{ (exit 1); exit 1; }; }
echo "$as_me:1206: 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:1215: 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:1219: 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:1224: 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:1231: 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:1240: 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:1245: 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/'`
1999-10-07 13:06:22 +00:00
canonical=$host
2001-10-19 15:27:05 +00:00
configuration=${host_alias-$host}
1999-10-07 13:06:22 +00:00
### If you add support for a new configuration, add code to this
### switch statement to recognize your configuration name and select
### the appropriate operating system and machine description files.
### You would hope that you could choose an m/*.h file pretty much
### based on the machine portion of the configuration name, and an s-
### file based on the operating system portion. However, it turns out
### that each m/*.h file is pretty manufacturer-specific - for
### example, apollo.h, hp9000s300.h, mega68k, news.h, and tad68k are
### all 68000 machines; mips.h, pmax.h, and news-risc are all MIPS
### machines. So we basically have to have a special case for each
### configuration name.
###
### As far as handling version numbers on operating systems is
### concerned, make sure things will fail in a fixable way. If
### /etc/MACHINES doesn't say anything about version numbers, be
### prepared to handle anything reasonably. If version numbers
### matter, be sure /etc/MACHINES says something about it.
###
### Eric Raymond says we should accept strings like "sysvr4" to mean
### "System V Release 4"; he writes, "The old convention encouraged
### confusion between `system' and `release' levels'."
machine='' opsys='' unported=no
case "${canonical}" in
## NetBSD ports
*-*-netbsd* )
opsys=netbsd
case "${canonical}" in
alpha*-*-netbsd*) machine=alpha ;;
i[3456]86-*-netbsd*) machine=intel386 ;;
m68k-*-netbsd*)
# This is somewhat bogus.
machine=hp9000s300 ;;
powerpc-apple-netbsd*) machine=macppc ;;
mips-*-netbsd*) machine=pmax ;;
2000-03-01 12:56:09 +00:00
mipsel-*-netbsd*) machine=pmax ;;
1999-10-07 13:06:22 +00:00
ns32k-*-netbsd*) machine=ns32000 ;;
2000-04-20 21:52:10 +00:00
powerpc-*-netbsd*) machine=macppc ;;
2000-09-30 14:35:11 +00:00
sparc*-*-netbsd*) machine=sparc ;;
1999-10-07 13:06:22 +00:00
vax-*-netbsd*) machine=vax ;;
2000-03-01 12:56:09 +00:00
arm-*-netbsd*) machine=arm ;;
1999-10-07 13:06:22 +00:00
esac
;;
## OpenBSD ports
*-*-openbsd* )
opsys=openbsd
case "${canonical}" in
alpha*-*-openbsd*) machine=alpha ;;
i386-*-openbsd*) machine=intel386 ;;
m68k-*-openbsd*) machine=hp9000s300 ;;
mipsel-*-openbsd*) machine=pmax ;;
ns32k-*-openbsd*) machine=ns32000 ;;
sparc-*-openbsd*) machine=sparc ;;
vax-*-openbsd*) machine=vax ;;
esac
;;
## Acorn RISCiX:
arm-acorn-riscix1.1* )
machine=acorn opsys=riscix1-1
;;
arm-acorn-riscix1.2* | arm-acorn-riscix )
## This name is riscix12 instead of riscix1.2
## to avoid a file name conflict on MSDOS.
machine=acorn opsys=riscix12
;;
## BSDI ports
*-*-bsdi* )
opsys=bsdi
case "${canonical}" in
i[345]86-*-bsdi*) machine=intel386 ;;
sparc-*-bsdi*) machine=sparc ;;
2000-11-22 12:50:52 +00:00
powerpc-*-bsdi*) machine=macppc ;;
1999-10-07 13:06:22 +00:00
esac
case "${canonical}" in
*-*-bsd386* | *-*-bsdi1* ) opsys=bsd386 ;;
*-*-bsdi2.0* ) opsys=bsdos2 ;;
*-*-bsdi2* ) opsys=bsdos2-1 ;;
*-*-bsdi3* ) opsys=bsdos3 ;;
*-*-bsdi4* ) opsys=bsdos4 ;;
esac
;;
## Alliant machines
## Strictly speaking, we need the version of the alliant operating
## system to choose the right machine file, but currently the
## configuration name doesn't tell us enough to choose the right
## one; we need to give alliants their own operating system name to
## do this right. When someone cares, they can help us.
fx80-alliant-* )
machine=alliant4 opsys=bsd4-2
;;
i860-alliant-* )
machine=alliant-2800 opsys=bsd4-3
;;
## Alpha (DEC) machines.
alpha*-dec-osf* )
machine=alpha opsys=osf1
# This is needed to find X11R6.1 libraries for certain tests.
NON_GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
2000-12-11 17:17:41 +00:00
# NON_GNU_CPP is necessary on 5.0 to avoid mangling src/Makefile
# due to non-traditional preprocessing with the current compiler
# defaults. OSF 4 can also have that compiler version, and there
# seems always to have been a usable /usr/bin/cpp.
NON_GNU_CPP=/usr/bin/cpp
2000-02-27 12:31:28 +00:00
case "${canonical}" in
2000-09-29 09:32:42 +00:00
alpha*-dec-osf[5-9]*)
2000-08-28 15:05:20 +00:00
opsys=osf5-0 ;;
2000-02-27 12:31:28 +00:00
esac
1999-10-07 13:06:22 +00:00
;;
alpha*-*-linux-gnu* )
machine=alpha opsys=gnu-linux
;;
2000-01-05 22:56:49 +00:00
arm*-*-linux-gnu* )
machine=arm opsys=gnu-linux
;;
ppc-*-linux | \
powerpc-*-linux* )
2000-11-22 12:50:52 +00:00
machine=macppc opsys=gnu-linux
2000-01-05 22:56:49 +00:00
;;
1999-10-07 13:06:22 +00:00
## Altos 3068
m68*-altos-sysv* )
machine=altos opsys=usg5-2
;;
## Amdahl UTS
580-amdahl-sysv* )
machine=amdahl opsys=usg5-2-2
;;
## Apollo, Domain/OS
m68*-apollo-* )
machine=apollo opsys=bsd4-3
;;
## AT&T 3b2, 3b5, 3b15, 3b20
we32k-att-sysv* )
machine=att3b opsys=usg5-2-2
;;
## AT&T 3b1 - The Mighty Unix PC!
m68*-att-sysv* )
machine=7300 opsys=usg5-2-2
;;
## Bull dpx20
rs6000-bull-bosx* )
machine=ibmrs6000 opsys=aix3-2
;;
## Bull dpx2
m68*-bull-sysv3* )
machine=dpx2 opsys=usg5-3
;;
## Bull sps7
m68*-bull-sysv2* )
machine=sps7 opsys=usg5-2
;;
## CCI 5/32, 6/32 -- see "Tahoe".
## Celerity
## I don't know what configuration name to use for this; config.sub
## doesn't seem to know anything about it. Hey, Celerity users, get
## in touch with us!
celerity-celerity-bsd* )
machine=celerity opsys=bsd4-2
;;
## Clipper
## What operating systems does this chip run that Emacs has been
## tested on?
clipper-* )
machine=clipper
## We'll use the catch-all code at the bottom to guess the
## operating system.
;;
## Convex
*-convex-bsd* | *-convex-convexos* )
machine=convex opsys=bsd4-3
## Prevents spurious white space in makefiles - d.m.cooke@larc.nasa.gov
NON_GNU_CPP="cc -E -P"
;;
## Cubix QBx/386
i[3456]86-cubix-sysv* )
machine=intel386 opsys=usg5-3
;;
## Cydra 5
cydra*-cydrome-sysv* )
machine=cydra5 opsys=usg5-3
;;
## Data General AViiON Machines
## DG changed naming conventions with the release of 5.4.4.10, they
## dropped the initial 5.4 but left the intervening R. Because of the
## R this shouldn't conflict with older versions of the OS (which I
## think were named like dgux4.*). In addition, DG new AViiONs series
## uses either Motorola M88k or Intel Pentium CPUs.
m88k-dg-dguxR4.* | m88k-dg-dgux4* )
machine=aviion opsys=dgux4
;;
m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* )
## This name is dgux5-4-3 instead of dgux5-4r3
## to avoid a file name conflict on MSDOS.
machine=aviion opsys=dgux5-4-3
;;
m88k-dg-dgux5.4R2* | m88k-dg-dgux5.4.2* )
machine=aviion opsys=dgux5-4r2
;;
m88k-dg-dgux* )
machine=aviion opsys=dgux
;;
## Data General AViiON Intel (x86) Machines
## Exists from 5.4.3 (current i586-dg-dguxR4.11)
## Ehud Karni, 1998-may-30, ehud@unix.simonwiesel.co.il
i[345]86-dg-dguxR4* )
machine=aviion-intel opsys=dgux4
;;
## DECstations
mips-dec-ultrix[0-3].* | mips-dec-ultrix4.0* | mips-dec-bsd4.2* )
machine=pmax opsys=bsd4-2
;;
mips-dec-ultrix4.[12]* | mips-dec-bsd* )
machine=pmax opsys=bsd4-3
;;
mips-dec-ultrix* )
machine=pmax opsys=ultrix4-3
;;
mips-dec-osf* )
machine=pmax opsys=osf1
;;
mips-dec-mach_bsd4.3* )
machine=pmax opsys=mach-bsd4-3
;;
## Motorola Delta machines
m68k-motorola-sysv* | m68000-motorola-sysv* )
machine=delta opsys=usg5-3
if test -z "`type gnucc | grep 'not found'`"
then
if test -s /etc/167config
then CC="gnucc -m68040"
else CC="gnucc -m68881"
fi
else
if test -z "`type gcc | grep 'not found'`"
then CC=gcc
else CC=cc
fi
fi
;;
m88k-motorola-sysv4* )
# jbotte@bnr.ca says that UNIX_System_V <hostName> 4.0 R40V4.3 m88k mc88110
# needs POSIX_SIGNALS and therefore needs usg5-4-2.
# I hope there are not other 4.0 versions for this machine
# which really need usg5-4 instead.
machine=delta88k opsys=usg5-4-2
;;
m88k-motorola-sysv* | m88k-motorola-m88kbcs* )
machine=delta88k opsys=usg5-3
;;
## Dual machines
m68*-dual-sysv* )
machine=dual opsys=usg5-2
;;
m68*-dual-uniplus* )
machine=dual opsys=unipl5-2
;;
## Elxsi 6400
elxsi-elxsi-sysv* )
machine=elxsi opsys=usg5-2
;;
## Encore machines
ns16k-encore-bsd* )
machine=ns16000 opsys=umax
;;
2000-07-05 17:07:14 +00:00
## The GEC 63 - apparently, this port isn't really finished yet.
# I'm sure we finished off the last of the machines, though. -- fx
1999-10-07 13:06:22 +00:00
## Gould Power Node and NP1
pn-gould-bsd4.2* )
machine=gould opsys=bsd4-2
;;
pn-gould-bsd4.3* )
machine=gould opsys=bsd4-3
;;
np1-gould-bsd* )
machine=gould-np1 opsys=bsd4-3
;;
## Harris Night Hawk machines running CX/UX (a 5000 looks just like a 4000
## as far as Emacs is concerned).
m88k-harris-cxux* )
# Build needs to be different on 7.0 and later releases
case "`uname -r`" in
[56].[0-9] ) machine=nh4000 opsys=cxux ;;
[7].[0-9] ) machine=nh4000 opsys=cxux7 ;;
esac
NON_GNU_CPP="/lib/cpp"
;;
## Harris ecx or gcx running CX/UX (Series 1200, Series 3000)
m68k-harris-cxux* )
machine=nh3000 opsys=cxux
;;
## Harris power pc NightHawk running Power UNIX (Series 6000)
powerpc-harris-powerunix )
machine=nh6000 opsys=powerunix
NON_GNU_CPP="cc -Xo -E -P"
;;
## SR2001/SR2201 running HI-UX/MPP
hppa1.1-hitachi-hiuxmpp* )
machine=sr2k opsys=hiuxmpp
;;
2001-08-14 12:33:03 +00:00
hppa1.1-hitachi-hiuxwe2* )
machine=sr2k opsys=hiuxwe2
;;
1999-10-07 13:06:22 +00:00
## Honeywell XPS100
xps*-honeywell-sysv* )
machine=xps100 opsys=usg5-2
;;
## HP 9000 series 200 or 300
m68*-hp-bsd* )
machine=hp9000s300 opsys=bsd4-3
;;
## HP/UX 7, 8, 9, and 10 are supported on these machines.
m68*-hp-hpux* )
case "`uname -r`" in
## Someone's system reports A.B8.05 for this.
## I wonder what other possibilities there are.
*.B8.* ) machine=hp9000s300 opsys=hpux8 ;;
*.08.* ) machine=hp9000s300 opsys=hpux8 ;;
*.09.* ) machine=hp9000s300 opsys=hpux9 ;;
*.1[0-9].* ) machine=hp9000s300 opsys=hpux9shr ;;
*) machine=hp9000s300 opsys=hpux ;;
esac
;;
## HP 9000 series 700 and 800, running HP/UX
hppa*-hp-hpux7* )
machine=hp800 opsys=hpux
;;
hppa*-hp-hpux8* )
machine=hp800 opsys=hpux8
;;
hppa*-hp-hpux9shr* )
machine=hp800 opsys=hpux9shr
;;
hppa*-hp-hpux9* )
machine=hp800 opsys=hpux9
;;
hppa*-hp-hpux1[0-9]* )
machine=hp800 opsys=hpux10
;;
## HP 9000 series 700 and 800, running HP/UX
hppa*-hp-hpux* )
## Cross-compilation? Nah!
case "`uname -r`" in
## Someone's system reports A.B8.05 for this.
## I wonder what other possibilities there are.
*.B8.* ) machine=hp800 opsys=hpux8 ;;
*.08.* ) machine=hp800 opsys=hpux8 ;;
*.09.* ) machine=hp800 opsys=hpux9 ;;
*) machine=hp800 opsys=hpux10 ;;
esac
;;
hppa*-*-nextstep* )
machine=hp800 opsys=nextstep
;;
## Orion machines
orion-orion-bsd* )
machine=orion opsys=bsd4-2
;;
clipper-orion-bsd* )
machine=orion105 opsys=bsd4-2
;;
## IBM machines
i[3456]86-ibm-aix1.1* )
machine=ibmps2-aix opsys=usg5-2-2
;;
i[3456]86-ibm-aix1.[23]* | i[3456]86-ibm-aix* )
machine=ibmps2-aix opsys=usg5-3
;;
i370-ibm-aix*)
machine=ibm370aix opsys=usg5-3
;;
rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* )
machine=ibmrs6000 opsys=aix3-1
;;
rs6000-ibm-aix3.2.5 | powerpc-ibm-aix3.2.5 )
machine=ibmrs6000 opsys=aix3-2-5
;;
rs6000-ibm-aix4.1* | powerpc-ibm-aix4.1* )
machine=ibmrs6000 opsys=aix4-1
;;
rs6000-ibm-aix4.2* | powerpc-ibm-aix4.2* )
machine=ibmrs6000 opsys=aix4-2
;;
rs6000-ibm-aix4.0* | powerpc-ibm-aix4.0* )
machine=ibmrs6000 opsys=aix4
;;
rs6000-ibm-aix4* | powerpc-ibm-aix4* )
machine=ibmrs6000 opsys=aix4-1
;;
rs6000-ibm-aix* | powerpc-ibm-aix* )
machine=ibmrs6000 opsys=aix3-2
;;
romp-ibm-bsd4.3* )
machine=ibmrt opsys=bsd4-3
;;
romp-ibm-bsd4.2* )
machine=ibmrt opsys=bsd4-2
;;
romp-ibm-aos4.3* )
machine=ibmrt opsys=bsd4-3
;;
romp-ibm-aos4.2* )
machine=ibmrt opsys=bsd4-2
;;
romp-ibm-aos* )
machine=ibmrt opsys=bsd4-3
;;
romp-ibm-bsd* )
machine=ibmrt opsys=bsd4-3
;;
romp-ibm-aix* )
machine=ibmrt-aix opsys=usg5-2-2
;;
## Integrated Solutions `Optimum V'
m68*-isi-bsd4.2* )
machine=isi-ov opsys=bsd4-2
;;
m68*-isi-bsd4.3* )
machine=isi-ov opsys=bsd4-3
;;
## Intel 386 machines where we do care about the manufacturer
i[3456]86-intsys-sysv* )
machine=is386 opsys=usg5-2-2
;;
## Prime EXL
i[3456]86-prime-sysv* )
machine=i386 opsys=usg5-3
;;
## Sequent Symmetry running Dynix
i[3456]86-sequent-bsd* )
machine=symmetry opsys=bsd4-3
;;
## Sequent Symmetry running ptx 4, which is a modified SVR4.
i[3456]86-sequent-ptx4* | i[3456]86-sequent-sysv4* )
machine=sequent-ptx opsys=ptx4
NON_GNU_CPP=/lib/cpp
;;
## Sequent Symmetry running DYNIX/ptx
## Use the old cpp rather than the newer ANSI one.
i[3456]86-sequent-ptx* )
machine=sequent-ptx opsys=ptx
NON_GNU_CPP="/lib/cpp"
;;
## ncr machine running svr4.3.
i[3456]86-ncr-sysv4.3 )
machine=ncr386 opsys=usg5-4-3
;;
## Unspecified sysv on an ncr machine defaults to svr4.2.
## (Plain usg5-4 doesn't turn on POSIX signals, which we need.)
i[3456]86-ncr-sysv* )
machine=ncr386 opsys=usg5-4-2
;;
## Intel Paragon OSF/1
i860-intel-osf1* )
machine=paragon opsys=osf1 NON_GNU_CPP=/usr/mach/lib/cpp
;;
## Intel 860
i860-*-sysv4* )
machine=i860 opsys=usg5-4
NON_GNU_CC="/bin/cc" # Ie, not the one in /usr/ucb/cc.
NON_GNU_CPP="/usr/ccs/lib/cpp" # cc -E tokenizes macro expansion.
;;
2000-04-27 19:12:09 +00:00
## Macintosh PowerPC
powerpc*-*-linux-gnu* )
machine=macppc opsys=gnu-linux
;;
1999-10-07 13:06:22 +00:00
## Masscomp machines
m68*-masscomp-rtu* )
machine=masscomp opsys=rtu
;;
## Megatest machines
m68*-megatest-bsd* )
machine=mega68 opsys=bsd4-2
;;
## Workstations sold by MIPS
## This is not necessarily all workstations using the MIPS processor -
## Irises are produced by SGI, and DECstations by DEC.
## etc/MACHINES lists mips.h and mips4.h as possible machine files,
## and usg5-2-2 and bsd4-3 as possible OS files. The only guidance
## it gives for choosing between the alternatives seems to be "Use
## -machine=mips4 for RISCOS version 4; use -opsystem=bsd4-3 with
## the BSD world." I'll assume that these are instructions for
## handling two odd situations, and that every other situation
## should use mips.h and usg5-2-2, they being listed first.
mips-mips-usg* )
machine=mips4
## Fall through to the general code at the bottom to decide on the OS.
;;
mips-mips-riscos4* )
machine=mips4 opsys=bsd4-3
NON_GNU_CC="cc -systype bsd43"
NON_GNU_CPP="cc -systype bsd43 -E"
;;
mips-mips-riscos5* )
machine=mips4 opsys=riscos5
NON_GNU_CC="cc -systype bsd43"
NON_GNU_CPP="cc -systype bsd43 -E"
;;
mips-mips-bsd* )
machine=mips opsys=bsd4-3
;;
mips-mips-* )
machine=mips opsys=usg5-2-2
;;
## NeXT
m68*-next-* | m68k-*-nextstep* )
machine=m68k opsys=nextstep
;;
## The complete machine from National Semiconductor
ns32k-ns-genix* )
machine=ns32000 opsys=usg5-2
;;
## NCR machines
m68*-ncr-sysv2* | m68*-ncr-sysvr2* )
machine=tower32 opsys=usg5-2-2
;;
m68*-ncr-sysv3* | m68*-ncr-sysvr3* )
machine=tower32v3 opsys=usg5-3
;;
## NEC EWS4800
mips-nec-sysv4*)
machine=ews4800 opsys=ux4800
;;
## Nixdorf Targon 31
m68*-nixdorf-sysv* )
machine=targon31 opsys=usg5-2-2
;;
## Nu (TI or LMI)
m68*-nu-sysv* )
machine=nu opsys=usg5-2
;;
## Plexus
m68*-plexus-sysv* )
machine=plexus opsys=usg5-2
;;
## PowerPC reference platform
powerpcle-*-solaris2* )
machine=prep
opsys=sol2-5
;;
## Pyramid machines
## I don't really have any idea what sort of processor the Pyramid has,
## so I'm assuming it is its own architecture.
pyramid-pyramid-bsd* )
machine=pyramid opsys=bsd4-2
;;
## Sequent Balance
ns32k-sequent-bsd4.2* )
machine=sequent opsys=bsd4-2
;;
ns32k-sequent-bsd4.3* )
machine=sequent opsys=bsd4-3
;;
## Siemens Nixdorf
mips-siemens-sysv* | mips-sni-sysv*)
machine=mips-siemens opsys=usg5-4
NON_GNU_CC=/usr/ccs/bin/cc
NON_GNU_CPP=/usr/ccs/lib/cpp
;;
## Silicon Graphics machines
## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030)
m68*-sgi-iris3.5* )
machine=irist opsys=iris3-5
;;
m68*-sgi-iris3.6* | m68*-sgi-iris*)
machine=irist opsys=iris3-6
;;
## Iris 4D
mips-sgi-irix3* )
machine=iris4d opsys=irix3-3
;;
mips-sgi-irix4* )
machine=iris4d opsys=irix4-0
;;
mips-sgi-irix6.5 )
machine=iris4d opsys=irix6-5
1999-11-18 18:28:59 +00:00
# Without defining _LANGUAGE_C, things get masked out in the headers
# so that, for instance, grepping for `free' in stdlib.h fails and
# AC_HEADER_STD_C fails. (MIPSPro 7.2.1.2m compilers, Irix 6.5.3m).
NON_GNU_CPP="/lib/cpp -D_LANGUAGE_C"
2000-06-02 15:46:19 +00:00
NON_GCC_TEST_OPTIONS="-D_LANGUAGE_C"
1999-10-07 13:06:22 +00:00
;;
mips-sgi-irix6* )
machine=iris4d opsys=irix6-0
2000-01-05 22:56:49 +00:00
# It's not clear whether -D_LANGUAGE_C is necessary as it is for 6.5,
1999-11-18 18:28:59 +00:00
# but presumably it does no harm.
NON_GNU_CPP="/lib/cpp -D_LANGUAGE_C"
2000-06-02 15:46:19 +00:00
# -32 probably isn't necessary in later v.6s -- anyone know which?
1999-10-07 13:06:22 +00:00
NON_GCC_TEST_OPTIONS=-32
;;
mips-sgi-irix5.[01]* )
machine=iris4d opsys=irix5-0
;;
mips-sgi-irix5* | mips-sgi-irix* )
machine=iris4d opsys=irix5-2
;;
## SONY machines
m68*-sony-bsd4.2* )
machine=news opsys=bsd4-2
;;
m68*-sony-bsd4.3* )
machine=news opsys=bsd4-3
;;
m68*-sony-newsos3* | m68*-sony-news3*)
machine=news opsys=bsd4-3
;;
mips-sony-bsd* | mips-sony-newsos4* | mips-sony-news4*)
machine=news-risc opsys=bsd4-3
;;
mips-sony-newsos6* )
machine=news-r6 opsys=newsos6
;;
mips-sony-news* )
machine=news-risc opsys=newsos5
;;
## Stride
m68*-stride-sysv* )
machine=stride opsys=usg5-2
;;
## Suns
sparc-*-linux-gnu* | sparc64-*-linux-gnu* )
machine=sparc opsys=gnu-linux
;;
2000-03-02 09:49:52 +00:00
*-auspex-sunos* | *-sun-sunos* | *-sun-bsd* | *-sun-solaris* \
1999-10-07 13:06:22 +00:00
| i[3456]86-*-solaris2* | i[3456]86-*-sunos5* | powerpc*-*-solaris2* \
| rs6000-*-solaris2*)
case "${canonical}" in
m68*-sunos1* ) machine=sun1 ;;
m68*-sunos2* ) machine=sun2 ;;
m68* ) machine=sun3 ;;
i[3456]86-sun-sunos[34]* ) machine=sun386 ;;
i[3456]86-*-* ) machine=intel386 ;;
powerpcle* ) machine=powerpcle ;;
powerpc* | rs6000* ) machine=ibmrs6000 ;;
sparc* ) machine=sparc ;;
* ) unported=yes ;;
esac
case "${canonical}" in
## The Sun386 didn't get past 4.0.
i[3456]86-*-sunos4 ) opsys=sunos4-0 ;;
*-sunos4.0* ) opsys=sunos4-0 ;;
*-sunos4.1.[3-9]*noshare )
## This name is sunos413 instead of sunos4-1-3
## to avoid a file name conflict on MSDOS.
opsys=sunos413
NON_GNU_CPP=/usr/lib/cpp
NON_GCC_TEST_OPTIONS=-Bstatic
GCC_TEST_OPTIONS=-static
;;
*-sunos4.1.[3-9]* | *-sunos4shr*)
opsys=sunos4shr
NON_GNU_CPP=/usr/lib/cpp
;;
*-sunos4* | *-sunos )
opsys=sunos4-1
NON_GCC_TEST_OPTIONS=-Bstatic
GCC_TEST_OPTIONS=-static
;;
*-sunos5.3* | *-solaris2.3* )
opsys=sol2-3
NON_GNU_CPP=/usr/ccs/lib/cpp
;;
*-sunos5.4* | *-solaris2.4* )
opsys=sol2-4
NON_GNU_CPP=/usr/ccs/lib/cpp
RANLIB="ar -ts"
;;
*-sunos5.5* | *-solaris2.5* )
opsys=sol2-5
NON_GNU_CPP=/usr/ccs/lib/cpp
RANLIB="ar -ts"
;;
*-sunos5* | *-solaris* )
opsys=sol2-5
NON_GNU_CPP=/usr/ccs/lib/cpp
;;
* ) opsys=bsd4-2 ;;
esac
## Watch out for a compiler that we know will not work.
case "${canonical}" in
*-solaris* | *-sunos5* )
if [ "x$CC" = x/usr/ucb/cc ]; then
## /usr/ucb/cc doesn't work;
## we should find some other compiler that does work.
unset CC
fi
;;
*) ;;
esac
;;
sparc-*-nextstep* )
machine=sparc opsys=nextstep
;;
## Tadpole 68k
m68*-tadpole-sysv* )
machine=tad68k opsys=usg5-3
;;
## Tahoe machines
tahoe-tahoe-bsd4.2* )
machine=tahoe opsys=bsd4-2
;;
tahoe-tahoe-bsd4.3* )
machine=tahoe opsys=bsd4-3
;;
## Tandem Integrity S2
mips-tandem-sysv* )
machine=tandem-s2 opsys=usg5-3
;;
## Tektronix XD88
m88k-tektronix-sysv3* )
machine=tekxd88 opsys=usg5-3
;;
## Tektronix 16000 box (6130?)
ns16k-tektronix-bsd* )
machine=ns16000 opsys=bsd4-2
;;
## Tektronix 4300
## src/m/tek4300.h hints that this is a m68k machine.
m68*-tektronix-bsd* )
machine=tek4300 opsys=bsd4-3
;;
## Titan P2 or P3
## We seem to have lost the machine-description file titan.h!
titan-titan-sysv* )
machine=titan opsys=usg5-3
;;
## Ustation E30 (SS5E)
m68*-unisys-uniplus* )
machine=ustation opsystem=unipl5-2
;;
## Vaxen.
vax-dec-* )
machine=vax
case "${canonical}" in
*-bsd4.1* ) opsys=bsd4-1 ;;
*-bsd4.2* | *-ultrix[0-3].* | *-ultrix4.0* ) opsys=bsd4-2 ;;
*-bsd4.3* | *-ultrix* ) opsys=bsd4-3 ;;
*-sysv[01]* | *-sysvr[01]* ) opsys=usg5-0 ;;
*-sysv2* | *-sysvr2* ) opsys=usg5-2 ;;
*-vms* ) opsys=vms ;;
* ) unported=yes
esac
;;
## Whitechapel MG1
ns16k-whitechapel-* )
machine=mg1
## We don't know what sort of OS runs on these; we'll let the
## operating system guessing code below try.
;;
## Wicat
m68*-wicat-sysv* )
machine=wicat opsys=usg5-2
;;
2000-08-03 20:24:26 +00:00
## IA-64
ia64*-*-linux* )
machine=ia64 opsys=gnu-linux
;;
1999-10-07 13:06:22 +00:00
## Intel 386 machines where we don't care about the manufacturer
i[3456]86-*-* )
machine=intel386
case "${canonical}" in
2000-06-14 13:39:46 +00:00
*-lynxos* ) opsys=lynxos ;;
1999-10-07 13:06:22 +00:00
*-isc1.* | *-isc2.[01]* ) opsys=386-ix ;;
*-isc2.2* ) opsys=isc2-2 ;;
*-isc4.0* ) opsys=isc4-0 ;;
*-isc4.* ) opsys=isc4-1
GCC_TEST_OPTIONS=-posix
NON_GCC_TEST_OPTIONS=-Xp
;;
*-isc* ) opsys=isc3-0 ;;
*-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;;
*-esix* ) opsys=esix ;;
*-xenix* ) opsys=xenix ;;
*-linux-gnu* ) opsys=gnu-linux ;;
*-sco3.2v4* ) opsys=sco4 ; NON_GNU_CPP=/lib/cpp ;;
2001-10-19 12:33:10 +00:00
*-sco3.2v5* ) opsys=sco5
1999-10-07 13:06:22 +00:00
NON_GNU_CPP=/lib/cpp
# Prevent -belf from being passed to $CPP.
# /lib/cpp does not accept it.
OVERRIDE_CPPFLAGS=" "
;;
*-sysv4.2uw* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
*-386bsd* ) opsys=386bsd ;;
*-freebsd* ) opsys=freebsd ;;
*-nextstep* ) opsys=nextstep ;;
## Otherwise, we'll fall through to the generic opsys code at the bottom.
esac
;;
## m68k Linux-based GNU system
m68k-*-linux-gnu* )
machine=m68k opsys=gnu-linux
;;
## Mips Linux-based GNU system
mips-*-linux-gnu* )
machine=mips opsys=gnu-linux
;;
## UXP/DS
sparc-fujitsu-sysv4* )
machine=sparc opsys=uxpds
NON_GNU_CPP=/usr/ccs/lib/cpp
RANLIB="ar -ts"
;;
## UXP/V
f301-fujitsu-uxpv4.1)
machine=f301 opsys=uxpv
;;
* )
unported=yes
;;
esac
### If the code above didn't choose an operating system, just choose
### an operating system based on the configuration name. You really
### only want to use this when you have no idea what the right
### operating system is; if you know what operating systems a machine
### runs, it's cleaner to make it explicit in the case statement
### above.
if test x"${opsys}" = x; then
case "${canonical}" in
*-gnu* ) opsys=gnu ;;
*-bsd4.[01] ) opsys=bsd4-1 ;;
*-bsd4.2 ) opsys=bsd4-2 ;;
*-bsd4.3 ) opsys=bsd4-3 ;;
*-sysv0 | *-sysvr0 ) opsys=usg5-0 ;;
*-sysv2 | *-sysvr2 ) opsys=usg5-2 ;;
*-sysv2.2 | *-sysvr2.2 ) opsys=usg5-2-2 ;;
*-sysv3* | *-sysvr3* ) opsys=usg5-3 ;;
*-sysv4.2uw* ) opsys=unixware ;;
*-sysv4.1* | *-sysvr4.1* )
NON_GNU_CPP=/usr/lib/cpp
opsys=usg5-4 ;;
*-sysv4.[2-9]* | *-sysvr4.[2-9]* )
if [ x$NON_GNU_CPP = x ]; then
if [ -f /usr/ccs/lib/cpp ]; then
NON_GNU_CPP=/usr/ccs/lib/cpp
else
NON_GNU_CPP=/lib/cpp
fi
fi
opsys=usg5-4-2 ;;
*-sysv4* | *-sysvr4* ) opsys=usg5-4 ;;
* )
unported=yes
;;
esac
fi
if test $unported = yes; then
2001-10-19 12:33:10 +00:00
{ { echo "$as_me:2189: error: Emacs hasn't been ported to \`${canonical}' systems.
Check \`etc/MACHINES' for recognized configuration names." >&5
echo "$as_me: error: Emacs hasn't been ported to \`${canonical}' systems.
Check \`etc/MACHINES' for recognized configuration names." >&2;}
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
fi
machfile="m/${machine}.h"
opsysfile="s/${opsys}.h"
#### Choose a compiler.
test -n "$CC" && cc_specified=yes
# Save the value of CFLAGS that the user specified.
SPECIFIED_CFLAGS="$CFLAGS"
case ${with_gcc} in
"yes" ) CC="gcc" GCC=yes ;;
"no" ) : ${CC=cc} ;;
2001-10-19 12:33:10 +00:00
* )
esac
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:2218: 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
1999-10-07 13:06:22 +00:00
else
if test -n "$CC"; then
ac_cv_prog_CC="$CC" # Let the user override the test.
else
2001-10-19 12:33:10 +00:00
ac_save_IFS=$IFS; IFS=$ac_path_separator
ac_dummy="$PATH"
for ac_dir in $ac_dummy; do
IFS=$ac_save_IFS
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_CC="${ac_tool_prefix}gcc"
echo "$as_me:2233: found $ac_dir/$ac_word" >&5
break
done
1999-10-07 13:06:22 +00:00
fi
fi
2001-10-19 12:33:10 +00:00
CC=$ac_cv_prog_CC
1999-10-07 13:06:22 +00:00
if test -n "$CC"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:2241: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
else
echo "$as_me:2244: 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:2253: 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:2268: 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:2276: result: $ac_ct_CC" >&5
echo "${ECHO_T}$ac_ct_CC" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me:2279: result: no" >&5
echo "${ECHO_T}no" >&6
fi
CC=$ac_ct_CC
else
CC="$ac_cv_prog_CC"
1999-10-07 13:06:22 +00:00
fi
if test -z "$CC"; then
2001-10-19 12:33:10 +00:00
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:2292: 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
1999-10-07 13:06:22 +00:00
else
if test -n "$CC"; then
ac_cv_prog_CC="$CC" # Let the user override the test.
else
2001-10-19 12:33:10 +00:00
ac_save_IFS=$IFS; IFS=$ac_path_separator
ac_dummy="$PATH"
for ac_dir in $ac_dummy; do
IFS=$ac_save_IFS
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_CC="${ac_tool_prefix}cc"
echo "$as_me:2307: found $ac_dir/$ac_word" >&5
break
done
fi
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
echo "$as_me:2315: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
else
echo "$as_me:2318: 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:2327: 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:2342: 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:2350: result: $ac_ct_CC" >&5
echo "${ECHO_T}$ac_ct_CC" >&6
else
echo "$as_me:2353: 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:2366: 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:2386: found $ac_dir/$ac_word" >&5
break
done
1999-10-07 13:06:22 +00:00
if test $ac_prog_rejected = yes; then
# We found a bogon in the path, so make sure we never use it.
set dummy $ac_cv_prog_CC
shift
2001-10-19 12:33:10 +00:00
if test $# != 0; then
1999-10-07 13:06:22 +00:00
# We chose a different compiler from the bogus one.
# However, it has the same basename, so the bogon will be chosen
# first if we set CC to just the basename; use the full file name.
shift
2001-10-19 12:33:10 +00:00
set dummy "$ac_dir/$ac_word" ${1+"$@"}
1999-10-07 13:06:22 +00:00
shift
ac_cv_prog_CC="$@"
fi
fi
fi
fi
2001-10-19 12:33:10 +00:00
CC=$ac_cv_prog_CC
1999-10-07 13:06:22 +00:00
if test -n "$CC"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:2408: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me:2411: result: no" >&5
echo "${ECHO_T}no" >&6
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
fi
if test -z "$CC"; then
if test -n "$ac_tool_prefix"; then
for ac_prog in cl
do
# Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
echo "$as_me:2422: 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
2000-01-05 22:56:49 +00:00
else
if test -n "$CC"; then
ac_cv_prog_CC="$CC" # Let the user override the test.
else
2001-10-19 12:33:10 +00:00
ac_save_IFS=$IFS; IFS=$ac_path_separator
ac_dummy="$PATH"
for ac_dir in $ac_dummy; do
IFS=$ac_save_IFS
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
echo "$as_me:2437: found $ac_dir/$ac_word" >&5
break
done
2000-01-05 22:56:49 +00:00
fi
fi
2001-10-19 12:33:10 +00:00
CC=$ac_cv_prog_CC
2000-01-05 22:56:49 +00:00
if test -n "$CC"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:2445: result: $CC" >&5
echo "${ECHO_T}$CC" >&6
2000-01-05 22:56:49 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me:2448: 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:2461: 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:2476: found $ac_dir/$ac_word" >&5
break
done
2000-01-05 22:56:49 +00:00
fi
2001-10-19 12:33:10 +00:00
fi
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
echo "$as_me:2484: result: $ac_ct_CC" >&5
echo "${ECHO_T}$ac_ct_CC" >&6
else
echo "$as_me:2487: result: no" >&5
echo "${ECHO_T}no" >&6
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
test -n "$ac_ct_CC" && break
done
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
CC=$ac_ct_CC
fi
fi
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
test -z "$CC" && { { echo "$as_me:2499: error: no acceptable cc found in \$PATH" >&5
echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
{ (exit 1); exit 1; }; }
2000-01-05 22:56:49 +00:00
2001-10-19 12:33:10 +00:00
# Provide some information about the compiler.
echo "$as_me:2504:" \
"checking for C compiler version" >&5
ac_compiler=`set X $ac_compile; echo $2`
{ (eval echo "$as_me:2507: \"$ac_compiler --version </dev/null >&5\"") >&5
(eval $ac_compiler --version </dev/null >&5) 2>&5
ac_status=$?
echo "$as_me:2510: \$? = $ac_status" >&5
(exit $ac_status); }
{ (eval echo "$as_me:2512: \"$ac_compiler -v </dev/null >&5\"") >&5
(eval $ac_compiler -v </dev/null >&5) 2>&5
ac_status=$?
echo "$as_me:2515: \$? = $ac_status" >&5
(exit $ac_status); }
{ (eval echo "$as_me:2517: \"$ac_compiler -V </dev/null >&5\"") >&5
(eval $ac_compiler -V </dev/null >&5) 2>&5
ac_status=$?
echo "$as_me:2520: \$? = $ac_status" >&5
(exit $ac_status); }
cat >conftest.$ac_ext <<_ACEOF
#line 2524 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2000-01-05 22:56:49 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
;
return 0;
}
_ACEOF
ac_clean_files_save=$ac_clean_files
ac_clean_files="$ac_clean_files a.out a.exe"
# Try to create an executable without -o first, disregard a.out.
# It will help us diagnose broken compilers, and finding out an intuition
# of exeext.
echo "$as_me:2540: 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:2543: \"$ac_link_default\"") >&5
(eval $ac_link_default) 2>&5
ac_status=$?
echo "$as_me:2546: \$? = $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:2569: 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:2575: 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:2580: 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:2586: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:2589: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
cross_compiling=no
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
if test "$cross_compiling" = maybe; then
cross_compiling=yes
else
{ { echo "$as_me:2596: 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
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
fi
echo "$as_me:2604: 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:2611: checking whether we are cross compiling" >&5
echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
echo "$as_me:2613: result: $cross_compiling" >&5
echo "${ECHO_T}$cross_compiling" >&6
echo "$as_me:2616: checking for executable suffix" >&5
echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
if { (eval echo "$as_me:2618: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:2621: \$? = $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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
{ { echo "$as_me:2637: 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; }; }
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest$ac_cv_exeext
echo "$as_me:2643: result: $ac_cv_exeext" >&5
echo "${ECHO_T}$ac_cv_exeext" >&6
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_ext
EXEEXT=$ac_cv_exeext
ac_exeext=$EXEEXT
echo "$as_me:2649: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 2655 "configure"
#include "confdefs.h"
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.o conftest.obj
if { (eval echo "$as_me:2667: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:2670: \$? = $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
2000-01-05 22:56:49 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
{ { echo "$as_me:2682: error: cannot compute OBJEXT: cannot compile" >&5
echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
{ (exit 1); exit 1; }; }
2000-01-05 22:56:49 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_cv_objext conftest.$ac_ext
fi
echo "$as_me:2689: result: $ac_cv_objext" >&5
echo "${ECHO_T}$ac_cv_objext" >&6
OBJEXT=$ac_cv_objext
ac_objext=$OBJEXT
echo "$as_me:2693: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 2699 "configure"
#include "confdefs.h"
int
main ()
{
#ifndef __GNUC__
choke me
#endif
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:2714: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:2717: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:2720: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:2723: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_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:2735: 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:2741: 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 2747 "configure"
#include "confdefs.h"
int
main ()
{
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:2759: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:2762: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:2765: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:2768: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
ac_cv_prog_cc_g=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_prog_cc_g=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:2778: result: $ac_cv_prog_cc_g" >&5
echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
2000-01-05 22:56:49 +00:00
if test "$ac_test_CFLAGS" = set; then
2001-10-19 12:33:10 +00:00
CFLAGS=$ac_save_CFLAGS
2000-01-05 22:56:49 +00:00
elif test $ac_cv_prog_cc_g = yes; then
if test "$GCC" = yes; then
1999-10-07 13:06:22 +00:00
CFLAGS="-g -O2"
else
2000-01-05 22:56:49 +00:00
CFLAGS="-g"
1999-10-07 13:06:22 +00:00
fi
1999-12-04 19:59:54 +00:00
else
2000-01-05 22:56:49 +00:00
if test "$GCC" = yes; then
CFLAGS="-O2"
else
CFLAGS=
fi
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
# Some people use a C++ compiler to compile C. Since we use `exit',
# in C++ we need to declare it. In case someone uses the same compiler
# for both compiling C and C++ we need to have the C++ compiler decide
# the declaration of exit, since it's the most demanding environment.
cat >conftest.$ac_ext <<_ACEOF
#ifndef __cplusplus
choke me
#endif
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:2805: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:2808: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:2811: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:2814: \$? = $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 2826 "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:2839: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:2842: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:2845: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:2848: \$? = $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 2858 "configure"
#include "confdefs.h"
$ac_declaration
int
main ()
{
exit (42);
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:2870: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:2873: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:2876: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:2879: \$? = $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
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
fi
rm -f conftest.$ac_objext conftest.$ac_ext
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
1999-10-07 13:06:22 +00:00
# On Suns, sometimes $CPP names a directory.
if test -n "$CPP" && test -d "$CPP"; then
CPP=
fi
#### Some systems specify a CPP to use unless we are using GCC.
#### Now that we know whether we are using GCC, we can decide whether
#### to use that one.
if test "x$NON_GNU_CPP" != x && test x$GCC != xyes && test "x$CPP" = x
then
CPP="$NON_GNU_CPP"
fi
#### Some systems specify a CC to use unless we are using GCC.
#### Now that we know whether we are using GCC, we can decide whether
#### to use that one.
if test "x$NON_GNU_CC" != x && test x$GCC != xyes &&
test x$cc_specified != xyes
then
CC="$NON_GNU_CC"
fi
if test x$GCC = xyes && test "x$GCC_TEST_OPTIONS" != x
then
CC="$CC $GCC_TEST_OPTIONS"
fi
if test x$GCC = x && test "x$NON_GCC_TEST_OPTIONS" != x
then
CC="$CC $NON_GCC_TEST_OPTIONS"
fi
if test x$GCC = xyes && test "x$GCC_LINK_TEST_OPTIONS" != x
then
ac_link="$ac_link $GCC_LINK_TEST_OPTIONS"
fi
if test x$GCC = x && test "x$NON_GCC_LINK_TEST_OPTIONS" != x
then
ac_link="$ac_link $NON_GCC_LINK_TEST_OPTIONS"
fi
#### Some other nice autoconf tests. If you add a test here which
#### should make an entry in src/config.h, don't forget to add an
#### #undef clause to src/config.h.in for autoconf to modify.
2001-10-19 12:33:10 +00:00
echo "$as_me:2952: checking whether ln -s works" >&5
echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
LN_S=$as_ln_s
if test "$LN_S" = "ln -s"; then
echo "$as_me:2956: result: yes" >&5
echo "${ECHO_T}yes" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me:2959: result: no, using $LN_S" >&5
echo "${ECHO_T}no, using $LN_S" >&6
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
echo "$as_me:2968: checking how to run the C preprocessor" >&5
echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
# On Suns, sometimes $CPP names a directory.
if test -n "$CPP" && test -d "$CPP"; then
CPP=
fi
if test -z "$CPP"; then
2001-10-19 12:33:10 +00:00
if test "${ac_cv_prog_CPP+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
# Double quotes because CPP needs to be expanded
for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
do
ac_preproc_ok=false
for ac_c_preproc_warn_flag in '' yes
do
# Use a header file that comes with gcc, so configuring glibc
# with a fresh cross-compiler works.
1999-10-07 13:06:22 +00:00
# On the NeXT, cc -E runs the code through the compiler's parser,
2001-10-19 12:33:10 +00:00
# not just through cpp. "Syntax error" is here to catch this case.
cat >conftest.$ac_ext <<_ACEOF
#line 2989 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <assert.h>
2001-10-19 12:33:10 +00:00
Syntax error
_ACEOF
if { (eval echo "$as_me:2994: \"$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:3000: \$? = $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
1999-10-07 13:06:22 +00:00
:
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
# Broken: fails on valid input.
continue
fi
rm -f conftest.err conftest.$ac_ext
# OK, works on sane cases. Now check whether non-existent headers
# can be detected and how.
cat >conftest.$ac_ext <<_ACEOF
#line 3023 "configure"
#include "confdefs.h"
#include <ac_nonexistent.h>
_ACEOF
if { (eval echo "$as_me:3027: \"$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:3033: \$? = $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
2000-01-05 22:56:49 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
2000-01-05 22:56:49 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
# Passes both tests.
ac_preproc_ok=:
break
fi
rm -f conftest.err conftest.$ac_ext
done
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
rm -f conftest.err conftest.$ac_ext
if $ac_preproc_ok; then
break
fi
done
ac_cv_prog_CPP=$CPP
fi
CPP=$ac_cv_prog_CPP
else
ac_cv_prog_CPP=$CPP
fi
echo "$as_me:3070: 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 3080 "configure"
2000-01-05 22:56:49 +00:00
#include "confdefs.h"
#include <assert.h>
2001-10-19 12:33:10 +00:00
Syntax error
_ACEOF
if { (eval echo "$as_me:3085: \"$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:3091: \$? = $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
1999-10-07 13:06:22 +00:00
:
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
# Broken: fails on valid input.
continue
fi
rm -f conftest.err conftest.$ac_ext
# OK, works on sane cases. Now check whether non-existent headers
# can be detected and how.
cat >conftest.$ac_ext <<_ACEOF
#line 3114 "configure"
#include "confdefs.h"
#include <ac_nonexistent.h>
_ACEOF
if { (eval echo "$as_me:3118: \"$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:3124: \$? = $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
2000-01-05 22:56:49 +00:00
fi
2001-10-19 12:33:10 +00:00
if test -z "$ac_cpp_err"; then
# Broken: success on invalid input.
continue
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
# Passes both tests.
ac_preproc_ok=:
break
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
done
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
rm -f conftest.err conftest.$ac_ext
if $ac_preproc_ok; then
:
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
{ { echo "$as_me:3152: error: C preprocessor \"$CPP\" fails sanity check" >&5
echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
1999-10-07 13:06:22 +00:00
# Find a good install program. We prefer a C program (faster),
# so one script is as good as another. But avoid the broken or
# incompatible versions:
# SysV /etc/install, /usr/sbin/install
# SunOS /usr/etc/install
# IRIX /sbin/install
# AIX /bin/install
2001-10-19 12:33:10 +00:00
# AmigaOS /C/install, which installs bootblocks on floppy discs
2000-01-05 22:56:49 +00:00
# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
1999-10-07 13:06:22 +00:00
# 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.
2001-10-19 12:33:10 +00:00
echo "$as_me:3175: checking for a BSD compatible install" >&5
echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
if test -z "$INSTALL"; then
2001-10-19 12:33:10 +00:00
if test "${ac_cv_path_install+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_save_IFS=$IFS; IFS=$ac_path_separator
1999-10-07 13:06:22 +00:00
for ac_dir in $PATH; do
2001-10-19 12:33:10 +00:00
IFS=$ac_save_IFS
1999-10-07 13:06:22 +00:00
# Account for people who put trailing slashes in PATH elements.
2001-10-19 12:33:10 +00:00
case $ac_dir/ in
/ | ./ | .// | /cC/* \
| /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* \
| /usr/ucb/* ) ;;
1999-10-07 13:06:22 +00:00
*)
# OSF1 and SCO ODT 3.0 have their own names for install.
2000-01-05 22:56:49 +00:00
# Don't use installbsd from OSF since it installs stuff as root
# by default.
for ac_prog in ginstall scoinst install; do
2001-10-19 12:33:10 +00:00
if $as_executable_p "$ac_dir/$ac_prog"; then
1999-10-07 13:06:22 +00:00
if test $ac_prog = install &&
2001-10-19 12:33:10 +00:00
grep dspmsg "$ac_dir/$ac_prog" >/dev/null 2>&1; then
1999-10-07 13:06:22 +00:00
# AIX install. It has an incompatible calling convention.
:
2001-10-19 12:33:10 +00:00
elif test $ac_prog = install &&
grep pwplus "$ac_dir/$ac_prog" >/dev/null 2>&1; then
# program-specific install script used by HP pwplus--don't use.
:
1999-10-07 13:06:22 +00:00
else
ac_cv_path_install="$ac_dir/$ac_prog -c"
break 2
fi
fi
done
;;
esac
done
fi
if test "${ac_cv_path_install+set}" = set; then
2001-10-19 12:33:10 +00:00
INSTALL=$ac_cv_path_install
1999-10-07 13:06:22 +00:00
else
# As a last resort, use the slow shell script. We don't cache a
# path for INSTALL within a source directory, because that will
# break other packages using the cache if that directory is
# removed, or if the path is relative.
2001-10-19 12:33:10 +00:00
INSTALL=$ac_install_sh
1999-10-07 13:06:22 +00:00
fi
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:3224: result: $INSTALL" >&5
echo "${ECHO_T}$INSTALL" >&6
1999-10-07 13:06:22 +00:00
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
# It thinks the first close brace ends the variable substitution.
test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
2001-10-19 12:33:10 +00:00
test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
2000-01-05 22:56:49 +00:00
1999-10-07 13:06:22 +00:00
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
for ac_prog in 'bison -y' byacc
do
2001-10-19 12:33:10 +00:00
# Extract the first word of "$ac_prog", so it can be a program name with args.
1999-10-07 13:06:22 +00:00
set dummy $ac_prog; ac_word=$2
2001-10-19 12:33:10 +00:00
echo "$as_me:3239: 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
1999-10-07 13:06:22 +00:00
else
if test -n "$YACC"; then
ac_cv_prog_YACC="$YACC" # Let the user override the test.
else
2001-10-19 12:33:10 +00:00
ac_save_IFS=$IFS; IFS=$ac_path_separator
ac_dummy="$PATH"
for ac_dir in $ac_dummy; do
IFS=$ac_save_IFS
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_YACC="$ac_prog"
echo "$as_me:3254: found $ac_dir/$ac_word" >&5
break
done
1999-10-07 13:06:22 +00:00
fi
fi
2001-10-19 12:33:10 +00:00
YACC=$ac_cv_prog_YACC
1999-10-07 13:06:22 +00:00
if test -n "$YACC"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:3262: result: $YACC" >&5
echo "${ECHO_T}$YACC" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me:3265: result: no" >&5
echo "${ECHO_T}no" >&6
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
test -n "$YACC" && break
1999-10-07 13:06:22 +00:00
done
test -n "$YACC" || YACC="yacc"
if test "x$RANLIB" = x; then
2001-10-19 12:33:10 +00:00
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
echo "$as_me:3277: 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
2001-10-19 12:33:10 +00:00
ac_save_IFS=$IFS; IFS=$ac_path_separator
ac_dummy="$PATH"
for ac_dir in $ac_dummy; do
IFS=$ac_save_IFS
test -z "$ac_dir" && ac_dir=.
$as_executable_p "$ac_dir/$ac_word" || continue
ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
echo "$as_me:3292: found $ac_dir/$ac_word" >&5
break
done
fi
fi
2001-10-19 12:33:10 +00:00
RANLIB=$ac_cv_prog_RANLIB
if test -n "$RANLIB"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:3300: result: $RANLIB" >&5
echo "${ECHO_T}$RANLIB" >&6
else
echo "$as_me:3303: 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:3312: 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:3327: 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:3336: result: $ac_ct_RANLIB" >&5
echo "${ECHO_T}$ac_ct_RANLIB" >&6
else
echo "$as_me:3339: result: no" >&5
echo "${ECHO_T}no" >&6
fi
RANLIB=$ac_ct_RANLIB
else
2001-10-19 12:33:10 +00:00
RANLIB="$ac_cv_prog_RANLIB"
fi
fi
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
echo "$as_me:3350: checking for AIX" >&5
echo $ECHO_N "checking for AIX... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
#line 3353 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#ifdef _AIX
yes
#endif
2001-10-19 12:33:10 +00:00
_ACEOF
1999-10-07 13:06:22 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes" >/dev/null 2>&1; then
2001-10-19 12:33:10 +00:00
echo "$as_me:3362: result: yes" >&5
echo "${ECHO_T}yes" >&6
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define _ALL_SOURCE 1
EOF
else
2001-10-19 12:33:10 +00:00
echo "$as_me:3369: result: no" >&5
echo "${ECHO_T}no" >&6
1999-10-07 13:06:22 +00:00
fi
rm -f conftest*
2000-07-18 22:16:01 +00:00
#### Extract some information from the operating system and machine files.
2001-10-19 12:33:10 +00:00
{ echo "$as_me:3376: checking the machine- and system-dependent files to find out
2000-07-18 22:16:01 +00:00
- which libraries the lib-src programs will want, and
2001-10-19 12:33:10 +00:00
- whether the GNU malloc routines are usable..." >&5
echo "$as_me: checking the machine- and system-dependent files to find out
2000-07-18 22:16:01 +00:00
- which libraries the lib-src programs will want, and
2001-10-19 12:33:10 +00:00
- whether the GNU malloc routines are usable..." >&6;}
2000-07-18 22:16:01 +00:00
### First figure out CFLAGS (which we use for running the compiler here)
### and REAL_CFLAGS (which we use for real compilation).
### The two are the same except on a few systems, where they are made
### different to work around various lossages. For example,
### GCC 2.5 on GNU/Linux needs them to be different because it treats -g
### as implying static linking.
### If the CFLAGS env var is specified, we use that value
### instead of the default.
### It's not important that this name contain the PID; you can't run
### two configures in the same directory and have anything work
### anyway.
tempcname="conftest.c"
echo '
#include "'${srcdir}'/src/'${opsysfile}'"
#include "'${srcdir}'/src/'${machfile}'"
#ifndef LIBS_MACHINE
#define LIBS_MACHINE
#endif
#ifndef LIBS_SYSTEM
#define LIBS_SYSTEM
#endif
#ifndef C_SWITCH_SYSTEM
#define C_SWITCH_SYSTEM
#endif
#ifndef C_SWITCH_MACHINE
#define C_SWITCH_MACHINE
#endif
configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM
configure___ c_switch_system=C_SWITCH_SYSTEM
configure___ c_switch_machine=C_SWITCH_MACHINE
#ifndef LIB_X11_LIB
#define LIB_X11_LIB -lX11
#endif
#ifndef LIBX11_MACHINE
#define LIBX11_MACHINE
#endif
#ifndef LIBX11_SYSTEM
#define LIBX11_SYSTEM
#endif
configure___ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
#ifdef UNEXEC
configure___ unexec=UNEXEC
#else
configure___ unexec=unexec.o
#endif
#ifdef SYSTEM_MALLOC
configure___ system_malloc=yes
#else
configure___ system_malloc=no
#endif
2000-09-14 15:15:16 +00:00
#ifdef USE_MMAP_FOR_BUFFERS
configure___ use_mmap_for_buffers=yes
2000-09-06 21:42:35 +00:00
#else
2000-09-14 15:15:16 +00:00
configure___ use_mmap_for_buffers=no
2000-09-06 21:42:35 +00:00
#endif
2000-07-18 22:16:01 +00:00
#ifndef C_DEBUG_SWITCH
#define C_DEBUG_SWITCH -g
#endif
#ifndef C_OPTIMIZE_SWITCH
#ifdef __GNUC__
#define C_OPTIMIZE_SWITCH -O2
#else
#define C_OPTIMIZE_SWITCH -O
#endif
#endif
#ifndef LD_SWITCH_MACHINE
#define LD_SWITCH_MACHINE
#endif
#ifndef LD_SWITCH_SYSTEM
#define LD_SWITCH_SYSTEM
#endif
#ifndef LD_SWITCH_X_SITE_AUX
#define LD_SWITCH_X_SITE_AUX
2001-10-19 12:33:10 +00:00
#endif
2000-07-18 22:16:01 +00:00
configure___ ld_switch_system=LD_SWITCH_SYSTEM
configure___ ld_switch_machine=LD_SWITCH_MACHINE
#ifdef THIS_IS_CONFIGURE
/* Get the CFLAGS for tests in configure. */
#ifdef __GNUC__
configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
#else
configure___ CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
#endif
#else /* not THIS_IS_CONFIGURE */
/* Get the CFLAGS for real compilation. */
#ifdef __GNUC__
configure___ REAL_CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
#else
configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
#endif
#endif /* not THIS_IS_CONFIGURE */
' > ${tempcname}
# The value of CPP is a quoted variable reference, so we need to do this
# to get its actual value...
CPP=`eval "echo $CPP"`
eval `${CPP} -Isrc ${tempcname} \
| sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
if test "x$SPECIFIED_CFLAGS" = x; then
eval `${CPP} -Isrc -DTHIS_IS_CONFIGURE ${tempcname} \
| sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
else
REAL_CFLAGS="$CFLAGS"
fi
rm ${tempcname}
ac_link="$ac_link $ld_switch_machine $ld_switch_system"
### Make sure subsequent tests use flags consistent with the build flags.
if test x"${OVERRIDE_CPPFLAGS}" != x; then
CPPFLAGS="${OVERRIDE_CPPFLAGS}"
else
CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS"
fi
2001-10-19 12:33:10 +00:00
# Check whether --enable-largefile or --disable-largefile was given.
2000-08-03 20:24:26 +00:00
if test "${enable_largefile+set}" = set; then
enableval="$enable_largefile"
2001-10-19 12:33:10 +00:00
fi;
if test "$enable_largefile" != no; then
2000-08-03 20:24:26 +00:00
2001-10-19 12:33:10 +00:00
echo "$as_me:3526: 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
1999-10-07 13:06:22 +00:00
else
2000-08-03 20:24:26 +00:00
ac_cv_sys_largefile_CC=no
2001-10-19 12:33:10 +00:00
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 3538 "configure"
#include "confdefs.h"
2000-08-03 20:24:26 +00:00
#include <sys/types.h>
2001-10-19 12:33:10 +00:00
/* 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 ()
{
2000-08-03 20:24:26 +00:00
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:3558: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:3561: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:3564: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:3567: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
else
2001-10-19 12:33:10 +00:00
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:3577: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:3580: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:3583: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:3586: \$? = $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
2001-10-19 12:33:10 +00:00
echo "$as_me:3600: 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
2001-10-19 12:33:10 +00:00
echo "$as_me:3606: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
while :; do
2000-08-03 20:24:26 +00:00
ac_cv_sys_file_offset_bits=no
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 3614 "configure"
2000-08-03 20:24:26 +00:00
#include "confdefs.h"
#include <sys/types.h>
2001-10-19 12:33:10 +00:00
/* 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 ()
{
2000-08-03 20:24:26 +00:00
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:3634: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:3637: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:3640: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:3643: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
2000-08-03 20:24:26 +00:00
else
2001-10-19 12:33:10 +00:00
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 3652 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2000-08-03 20:24:26 +00:00
#define _FILE_OFFSET_BITS 64
#include <sys/types.h>
2001-10-19 12:33:10 +00:00
/* 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:3673: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:3676: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:3679: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:3682: \$? = $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
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:3693: 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
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
2000-08-03 20:24:26 +00:00
#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits
1999-10-07 13:06:22 +00:00
EOF
2000-08-03 20:24:26 +00:00
2001-10-19 12:33:10 +00:00
fi
rm -f conftest*
echo "$as_me:3703: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
while :; do
2000-08-03 20:24:26 +00:00
ac_cv_sys_large_files=no
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 3711 "configure"
2000-08-03 20:24:26 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
#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 ()
{
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:3731: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:3734: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:3737: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:3740: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
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 3749 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2000-08-03 20:24:26 +00:00
#define _LARGE_FILES 1
2001-10-19 12:33:10 +00:00
#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 ()
{
2000-08-03 20:24:26 +00:00
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:3770: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:3773: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:3776: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:3779: \$? = $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
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:3790: 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
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
2000-08-03 20:24:26 +00:00
#define _LARGE_FILES $ac_cv_sys_large_files
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
fi
rm -f conftest*
fi
1999-10-07 13:06:22 +00:00
2000-08-03 20:24:26 +00:00
# Sound support for GNU/Linux and the free BSDs.
2001-10-19 12:33:10 +00:00
for ac_header in machine/soundcard.h sys/soundcard.h soundcard.h
2000-08-03 20:24:26 +00:00
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:3807: 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 3813 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:3817: \"$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:3823: \$? = $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
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:3842: 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
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
fi
2000-08-03 20:24:26 +00:00
done
1999-10-07 13:06:22 +00:00
2000-08-03 20:24:26 +00:00
# Emulation library used on NetBSD.
2001-10-19 12:33:10 +00:00
echo "$as_me:3853: checking for _oss_ioctl in -lossaudio" >&5
echo $ECHO_N "checking for _oss_ioctl in -lossaudio... $ECHO_C" >&6
if test "${ac_cv_lib_ossaudio__oss_ioctl+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-07-05 17:07:14 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2000-08-03 20:24:26 +00:00
LIBS="-lossaudio $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 3861 "configure"
2000-07-05 17:07:14 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
2000-08-03 20:24:26 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-08-03 20:24:26 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char _oss_ioctl ();
int
main ()
{
_oss_ioctl ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:3880: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:3883: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:3886: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:3889: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_ossaudio__oss_ioctl=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_ossaudio__oss_ioctl=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:3900: result: $ac_cv_lib_ossaudio__oss_ioctl" >&5
echo "${ECHO_T}$ac_cv_lib_ossaudio__oss_ioctl" >&6
if test $ac_cv_lib_ossaudio__oss_ioctl = yes; then
2000-08-03 20:24:26 +00:00
LIBSOUND=-lossaudio
else
2001-10-19 12:33:10 +00:00
LIBSOUND=
2000-08-03 20:24:26 +00:00
fi
2000-07-05 17:07:14 +00:00
2001-10-19 12:33:10 +00:00
for ac_header in sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \
2000-08-03 20:24:26 +00:00
linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \
2000-08-28 15:05:20 +00:00
termcap.h stdio_ext.h fcntl.h term.h strings.h
2000-08-03 20:24:26 +00:00
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:3913: 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 3919 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:3923: \"$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:3929: \$? = $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
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:3948: 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
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
fi
2000-08-03 20:24:26 +00:00
done
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
echo "$as_me:3958: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 3964 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2000-08-03 20:24:26 +00:00
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <float.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:3972: \"$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:3978: \$? = $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
2000-08-03 20:24:26 +00:00
ac_cv_header_stdc=yes
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2000-08-03 20:24:26 +00:00
ac_cv_header_stdc=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
2000-08-03 20:24:26 +00:00
if test $ac_cv_header_stdc = yes; then
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4000 "configure"
2000-08-03 20:24:26 +00:00
#include "confdefs.h"
#include <string.h>
2001-10-19 12:33:10 +00:00
_ACEOF
2000-08-03 20:24:26 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "memchr" >/dev/null 2>&1; then
:
else
ac_cv_header_stdc=no
fi
rm -f conftest*
fi
if test $ac_cv_header_stdc = yes; then
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4018 "configure"
2000-08-03 20:24:26 +00:00
#include "confdefs.h"
#include <stdlib.h>
2001-10-19 12:33:10 +00:00
_ACEOF
2000-08-03 20:24:26 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "free" >/dev/null 2>&1; then
:
else
ac_cv_header_stdc=no
fi
rm -f conftest*
fi
if test $ac_cv_header_stdc = yes; then
# /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
2001-10-19 12:33:10 +00:00
if test "$cross_compiling" = yes; then
2000-08-03 20:24:26 +00:00
:
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4039 "configure"
2000-08-03 20:24:26 +00:00
#include "confdefs.h"
#include <ctype.h>
2001-10-19 12:33:10 +00:00
#if ((' ' & 0x0FF) == 0x020)
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
#else
# define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \
|| ('j' <= (c) && (c) <= 'r') \
|| ('s' <= (c) && (c) <= 'z'))
# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
#endif
2000-08-03 20:24:26 +00:00
2001-10-19 12:33:10 +00:00
#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
int
main ()
{
int i;
for (i = 0; i < 256; i++)
if (XOR (islower (i), ISLOWER (i))
|| toupper (i) != TOUPPER (i))
exit(2);
exit (0);
}
_ACEOF
rm -f conftest$ac_exeext
if { (eval echo "$as_me:4065: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:4068: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
{ (eval echo "$as_me:4070: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4073: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-08-03 20:24:26 +00:00
:
else
2001-10-19 12:33:10 +00:00
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_header_stdc=no
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2000-08-03 20:24:26 +00:00
fi
fi
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4086: result: $ac_cv_header_stdc" >&5
echo "${ECHO_T}$ac_cv_header_stdc" >&6
2000-08-03 20:24:26 +00:00
if test $ac_cv_header_stdc = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-08-03 20:24:26 +00:00
#define STDC_HEADERS 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4096: 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
2000-08-03 20:24:26 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4102 "configure"
2000-08-03 20:24:26 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <sys/time.h>
#include <time.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
if ((struct tm *) 0)
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4118: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4121: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4124: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4127: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-08-03 20:24:26 +00:00
ac_cv_header_time=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_header_time=no
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4137: result: $ac_cv_header_time" >&5
echo "${ECHO_T}$ac_cv_header_time" >&6
2000-08-03 20:24:26 +00:00
if test $ac_cv_header_time = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-08-03 20:24:26 +00:00
#define TIME_WITH_SYS_TIME 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4147: 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
2000-08-03 20:24:26 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4153 "configure"
2000-08-03 20:24:26 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <signal.h>
/* NetBSD declares sys_siglist in unistd.h. */
2001-10-19 12:33:10 +00:00
#if HAVE_UNISTD_H
# include <unistd.h>
2000-08-03 20:24:26 +00:00
#endif
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-08-03 20:24:26 +00:00
char *msg = *(sys_siglist + 1);
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4171: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4174: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4177: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4180: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-08-03 20:24:26 +00:00
ac_cv_decl_sys_siglist=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_decl_sys_siglist=no
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4190: result: $ac_cv_decl_sys_siglist" >&5
echo "${ECHO_T}$ac_cv_decl_sys_siglist" >&6
2000-08-03 20:24:26 +00:00
if test $ac_cv_decl_sys_siglist = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-08-03 20:24:26 +00:00
#define SYS_SIGLIST_DECLARED 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4200: checking for sys/wait.h that is POSIX.1 compatible" >&5
echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6
if test "${ac_cv_header_sys_wait_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-08-03 20:24:26 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4206 "configure"
2000-08-03 20:24:26 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <sys/wait.h>
#ifndef WEXITSTATUS
2001-10-19 12:33:10 +00:00
# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
2000-08-03 20:24:26 +00:00
#endif
#ifndef WIFEXITED
2001-10-19 12:33:10 +00:00
# define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
2000-08-03 20:24:26 +00:00
#endif
2001-10-19 12:33:10 +00:00
int
main ()
{
int s;
wait (&s);
s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4228: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4231: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4234: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4237: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-08-03 20:24:26 +00:00
ac_cv_header_sys_wait_h=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_header_sys_wait_h=no
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4247: result: $ac_cv_header_sys_wait_h" >&5
echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6
2000-08-03 20:24:26 +00:00
if test $ac_cv_header_sys_wait_h = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-08-03 20:24:26 +00:00
#define HAVE_SYS_WAIT_H 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4257: checking for struct utimbuf" >&5
echo $ECHO_N "checking for struct utimbuf... $ECHO_C" >&6
if test "${emacs_cv_struct_utimbuf+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-08-03 20:24:26 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4263 "configure"
2000-08-03 20:24:26 +00:00
#include "confdefs.h"
#ifdef TIME_WITH_SYS_TIME
#include <sys/time.h>
#include <time.h>
#else
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#endif
#endif
#ifdef HAVE_UTIME_H
#include <utime.h>
#endif
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-08-03 20:24:26 +00:00
static struct utimbuf x; x.actime = x.modtime;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4287: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4290: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4293: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4296: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-08-03 20:24:26 +00:00
emacs_cv_struct_utimbuf=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_struct_utimbuf=no
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4306: result: $emacs_cv_struct_utimbuf" >&5
echo "${ECHO_T}$emacs_cv_struct_utimbuf" >&6
2000-08-03 20:24:26 +00:00
if test $emacs_cv_struct_utimbuf = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-08-03 20:24:26 +00:00
#define HAVE_STRUCT_UTIMBUF 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4315: 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
2000-08-03 20:24:26 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4321 "configure"
2000-08-03 20:24:26 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <signal.h>
#ifdef signal
2001-10-19 12:33:10 +00:00
# undef signal
2000-08-03 20:24:26 +00:00
#endif
#ifdef __cplusplus
extern "C" void (*signal (int, void (*)(int)))(int);
#else
void (*signal ()) ();
#endif
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-08-03 20:24:26 +00:00
int i;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4343: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4346: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4349: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4352: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-08-03 20:24:26 +00:00
ac_cv_type_signal=void
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_signal=int
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2000-08-03 20:24:26 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4362: result: $ac_cv_type_signal" >&5
echo "${ECHO_T}$ac_cv_type_signal" >&6
2000-08-03 20:24:26 +00:00
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
2000-08-03 20:24:26 +00:00
#define RETSIGTYPE $ac_cv_type_signal
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
echo "$as_me:4369: checking for speed_t" >&5
echo $ECHO_N "checking for speed_t... $ECHO_C" >&6
if test "${emacs_cv_speed_t+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-05-26 15:56:42 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4375 "configure"
2000-05-26 15:56:42 +00:00
#include "confdefs.h"
#include <termios.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-05-26 15:56:42 +00:00
speed_t x = 1;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4387: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4390: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4393: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4396: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-05-26 15:56:42 +00:00
emacs_cv_speed_t=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_speed_t=no
2000-05-26 15:56:42 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2000-05-26 15:56:42 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4406: result: $emacs_cv_speed_t" >&5
echo "${ECHO_T}$emacs_cv_speed_t" >&6
2000-05-26 15:56:42 +00:00
if test $emacs_cv_speed_t = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-05-26 15:56:42 +00:00
#define HAVE_SPEED_T 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4415: checking for struct timeval" >&5
echo $ECHO_N "checking for struct timeval... $ECHO_C" >&6
if test "${emacs_cv_struct_timeval+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4421 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#ifdef TIME_WITH_SYS_TIME
#include <sys/time.h>
#include <time.h>
#else
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#endif
#endif
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
static struct timeval x; x.tv_sec = x.tv_usec;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4442: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4445: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4448: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4451: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
emacs_cv_struct_timeval=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_struct_timeval=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4461: result: $emacs_cv_struct_timeval" >&5
echo "${ECHO_T}$emacs_cv_struct_timeval" >&6
1999-10-07 13:06:22 +00:00
HAVE_TIMEVAL=$emacs_cv_struct_timeval
if test $emacs_cv_struct_timeval = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_TIMEVAL 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4471: checking for struct exception" >&5
echo $ECHO_N "checking for struct exception... $ECHO_C" >&6
if test "${emacs_cv_struct_exception+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-02 15:46:19 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4477 "configure"
2000-06-02 15:46:19 +00:00
#include "confdefs.h"
#include <math.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-06-02 15:46:19 +00:00
static struct exception x; x.arg1 = x.arg2 = x.retval; x.name = ""; x.type = 1;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4489: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4492: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4495: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4498: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-06-02 15:46:19 +00:00
emacs_cv_struct_exception=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_struct_exception=no
2000-06-02 15:46:19 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2000-06-02 15:46:19 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4508: result: $emacs_cv_struct_exception" >&5
echo "${ECHO_T}$emacs_cv_struct_exception" >&6
2000-06-02 15:46:19 +00:00
HAVE_EXCEPTION=$emacs_cv_struct_exception
if test $emacs_cv_struct_exception != yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-06-02 15:46:19 +00:00
#define NO_MATHERR 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4518: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4524 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <time.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
struct tm *tp; tp->tm_sec;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4538: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4541: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4544: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4547: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
ac_cv_struct_tm=time.h
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_struct_tm=sys/time.h
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4557: result: $ac_cv_struct_tm" >&5
echo "${ECHO_T}$ac_cv_struct_tm" >&6
1999-10-07 13:06:22 +00:00
if test $ac_cv_struct_tm = sys/time.h; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define TM_IN_SYS_TIME 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4567: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4573 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <sys/types.h>
#include <$ac_cv_struct_tm>
2001-10-19 12:33:10 +00:00
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:4589: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4592: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4595: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4598: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_member_struct_tm_tm_zone=yes
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_member_struct_tm_tm_zone=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
fi
echo "$as_me:4608: 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
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
if test "$ac_cv_member_struct_tm_tm_zone" = yes; then
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_TM_ZONE 1
EOF
else
2001-10-19 12:33:10 +00:00
echo "$as_me:4625: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4631 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <time.h>
#ifndef tzname /* For SGI. */
extern char *tzname[]; /* RS6000 and others reject char **tzname. */
#endif
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
atoi(*tzname);
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:4647: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:4650: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:4653: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4656: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
ac_cv_var_tzname=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_var_tzname=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4666: result: $ac_cv_var_tzname" >&5
echo "${ECHO_T}$ac_cv_var_tzname" >&6
1999-10-07 13:06:22 +00:00
if test $ac_cv_var_tzname = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_TZNAME 1
EOF
fi
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4677: checking for tm_gmtoff in struct tm" >&5
echo $ECHO_N "checking for tm_gmtoff in struct tm... $ECHO_C" >&6
if test "${emacs_cv_tm_gmtoff+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4683 "configure"
#include "confdefs.h"
#include <time.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
struct tm t; t.tm_gmtoff = 0
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:4695: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:4698: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:4701: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4704: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
emacs_cv_tm_gmtoff=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_tm_gmtoff=no
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4714: result: $emacs_cv_tm_gmtoff" >&5
echo "${ECHO_T}$emacs_cv_tm_gmtoff" >&6
if test $emacs_cv_tm_gmtoff = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
#define HAVE_TM_GMTOFF 1
EOF
fi
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
echo "$as_me:4723: 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
2001-10-19 12:33:10 +00:00
ac_save_CC=$CC
cat >conftest.$ac_ext <<_ACEOF
#line 4731 "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;
2001-10-19 12:33:10 +00:00
int
main ()
{
return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
2001-10-19 12:33:10 +00:00
;
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:4780: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4783: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4786: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4789: \$? = $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
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_ext conftest.$ac_objext
CC=$ac_save_CC
fi
case "x$ac_cv_prog_cc_stdc" in
x|xno)
2001-10-19 12:33:10 +00:00
echo "$as_me:4806: result: none needed" >&5
echo "${ECHO_T}none needed" >&6 ;;
*)
2001-10-19 12:33:10 +00:00
echo "$as_me:4809: result: $ac_cv_prog_cc_stdc" >&5
echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
CC="$CC $ac_cv_prog_cc_stdc" ;;
esac
2001-10-19 12:33:10 +00:00
echo "$as_me:4814: checking for function prototypes" >&5
echo $ECHO_N "checking for function prototypes... $ECHO_C" >&6
if test "$ac_cv_prog_cc_stdc" != no; then
2001-10-19 12:33:10 +00:00
echo "$as_me:4817: result: yes" >&5
echo "${ECHO_T}yes" >&6
cat >>confdefs.h <<\EOF
#define PROTOTYPES 1
EOF
else
2001-10-19 12:33:10 +00:00
echo "$as_me:4825: result: no" >&5
echo "${ECHO_T}no" >&6
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4829: checking for working volatile" >&5
echo $ECHO_N "checking for working volatile... $ECHO_C" >&6
if test "${ac_cv_c_volatile+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4835 "configure"
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
int
main ()
{
volatile int x;
int * volatile y;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4849: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4852: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4855: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4858: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_c_volatile=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_c_volatile=no
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4868: result: $ac_cv_c_volatile" >&5
echo "${ECHO_T}$ac_cv_c_volatile" >&6
if test $ac_cv_c_volatile = no; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
#define volatile
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4878: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4884 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
int
main ()
{
/* FIXME: Include the comments suggested by Paul. */
#ifndef __cplusplus
/* Ultrix mips cc rejects this. */
typedef int charset[2];
const charset x;
/* SunOS 4.1.1 cc rejects this. */
char const *const *ccp;
char **p;
/* NEC SVR4.0.2 mips cc rejects this. */
struct point {int x, y;};
static struct point const zero = {0,0};
/* AIX XL C 1.02.0.0 rejects this.
It does not let you subtract one const X* pointer from another in
an arm of an if-expression whose if-part is not a constant
expression */
const char *g = "string";
ccp = &g + (g ? g-g : 0);
/* HPUX 7.0 cc rejects these. */
++ccp;
p = (char**) ccp;
ccp = (char const *const *) p;
{ /* SCO 3.2v4 cc rejects this. */
char *t;
char const *s = 0 ? (char *) 0 : (char const *) 0;
*t++ = 0;
}
{ /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */
int x[] = {25, 17};
const int *foo = &x[0];
++foo;
}
{ /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
typedef const int *iptr;
iptr p = 0;
++p;
}
{ /* AIX XL C 1.02.0.0 rejects this saying
"k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
struct s { int j; const int *ap[3]; };
struct s *b; b->j = 5;
}
{ /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
const int foo = 10;
}
#endif
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
;
return 0;
1999-10-07 13:06:22 +00:00
}
2001-10-19 12:33:10 +00:00
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4942: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4945: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4948: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4951: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
ac_cv_c_const=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_c_const=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4961: result: $ac_cv_c_const" >&5
echo "${ECHO_T}$ac_cv_c_const" >&6
1999-10-07 13:06:22 +00:00
if test $ac_cv_c_const = no; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
#define const
1999-10-07 13:06:22 +00:00
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:4971: checking for void * support" >&5
echo $ECHO_N "checking for void * support... $ECHO_C" >&6
if test "${emacs_cv_void_star+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 4977 "configure"
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
int
main ()
{
void * foo;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:4989: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:4992: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:4995: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:4998: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
emacs_cv_void_star=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_void_star=no
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:5008: result: $emacs_cv_void_star" >&5
echo "${ECHO_T}$emacs_cv_void_star" >&6
if test $emacs_cv_void_star = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
#define POINTER_TYPE void
EOF
else
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
#define POINTER_TYPE char
EOF
fi
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
echo "$as_me:5022: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.make <<\EOF
1999-10-07 13:06:22 +00:00
all:
@echo 'ac_maketemp="${MAKE}"'
EOF
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
2001-10-19 12:33:10 +00:00
eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
1999-10-07 13:06:22 +00:00
if test -n "$ac_maketemp"; then
eval ac_cv_prog_make_${ac_make}_set=yes
else
eval ac_cv_prog_make_${ac_make}_set=no
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.make
1999-10-07 13:06:22 +00:00
fi
if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:5042: result: yes" >&5
echo "${ECHO_T}yes" >&6
1999-10-07 13:06:22 +00:00
SET_MAKE=
else
2001-10-19 12:33:10 +00:00
echo "$as_me:5046: result: no" >&5
echo "${ECHO_T}no" >&6
1999-10-07 13:06:22 +00:00
SET_MAKE="MAKE=${MAKE-make}"
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:5051: checking for long file names" >&5
echo $ECHO_N "checking for long file names... $ECHO_C" >&6
if test "${ac_cv_sys_long_file_names+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
ac_cv_sys_long_file_names=yes
# Test for long file names in all the places we know might matter:
# . the current directory, where building will happen
# $prefix/lib where we will be installing things
# $exec_prefix/lib likewise
# eval it to expand exec_prefix.
# $TMPDIR if set, where it might want to write temporary files
# if $TMPDIR is not set:
# /tmp where it might want to write temporary files
# /var/tmp likewise
# /usr/tmp likewise
if test -n "$TMPDIR" && test -d "$TMPDIR" && test -w "$TMPDIR"; then
2001-10-19 12:33:10 +00:00
ac_tmpdirs=$TMPDIR
1999-10-07 13:06:22 +00:00
else
ac_tmpdirs='/tmp /var/tmp /usr/tmp'
fi
for ac_dir in . $ac_tmpdirs `eval echo $prefix/lib $exec_prefix/lib` ; do
test -d $ac_dir || continue
test -w $ac_dir || continue # It is less confusing to not echo anything here.
2001-10-19 12:33:10 +00:00
ac_xdir=$ac_dir/cf$$
(umask 077 && mkdir $ac_xdir 2>/dev/null) || continue
ac_tf1=$ac_xdir/conftest9012345
ac_tf2=$ac_xdir/conftest9012346
(echo 1 >$ac_tf1) 2>/dev/null
(echo 2 >$ac_tf2) 2>/dev/null
ac_val=`cat $ac_tf1 2>/dev/null`
if test ! -f $ac_tf1 || test "$ac_val" != 1; then
1999-10-07 13:06:22 +00:00
ac_cv_sys_long_file_names=no
2001-10-19 12:33:10 +00:00
rm -rf $ac_xdir 2>/dev/null
1999-10-07 13:06:22 +00:00
break
fi
2001-10-19 12:33:10 +00:00
rm -rf $ac_xdir 2>/dev/null
1999-10-07 13:06:22 +00:00
done
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:5090: result: $ac_cv_sys_long_file_names" >&5
echo "${ECHO_T}$ac_cv_sys_long_file_names" >&6
1999-10-07 13:06:22 +00:00
if test $ac_cv_sys_long_file_names = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_LONG_FILE_NAMES 1
EOF
fi
#### Choose a window system.
2001-10-19 12:33:10 +00:00
echo "$as_me:5102: checking for X" >&5
echo $ECHO_N "checking for X... $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
# Check whether --with-x or --without-x was given.
if test "${with_x+set}" = set; then
withval="$with_x"
2001-10-19 12:33:10 +00:00
fi;
1999-10-07 13:06:22 +00:00
# $have_x is `yes', `no', `disabled', or empty when we do not yet know.
if test "x$with_x" = xno; then
# The user explicitly disabled X.
have_x=disabled
else
if test "x$x_includes" != xNONE && test "x$x_libraries" != xNONE; then
# Both variables are already set.
have_x=yes
else
2001-10-19 12:33:10 +00:00
if test "${ac_cv_have_x+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
# One or both of the vars are not set, and there is no cached value.
2001-10-19 12:33:10 +00:00
ac_x_includes=no ac_x_libraries=no
rm -fr conftest.dir
if mkdir conftest.dir; then
cd conftest.dir
1999-10-07 13:06:22 +00:00
# Make sure to not put "make" in the Imakefile rules, since we grep it out.
2001-10-19 12:33:10 +00:00
cat >Imakefile <<'EOF'
1999-10-07 13:06:22 +00:00
acfindx:
@echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
EOF
if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
eval `${MAKE-make} acfindx 2>/dev/null | grep -v make`
# Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
for ac_extension in a so sl; do
if test ! -f $ac_im_usrlibdir/libX11.$ac_extension &&
2001-10-19 12:33:10 +00:00
test -f $ac_im_libdir/libX11.$ac_extension; then
1999-10-07 13:06:22 +00:00
ac_im_usrlibdir=$ac_im_libdir; break
fi
done
# Screen out bogus values from the imake configuration. They are
# bogus both because they are the default anyway, and because
# using them would break gcc on systems where it needs fixed includes.
2001-10-19 12:33:10 +00:00
case $ac_im_incroot in
1999-10-07 13:06:22 +00:00
/usr/include) ;;
2001-10-19 12:33:10 +00:00
*) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;;
1999-10-07 13:06:22 +00:00
esac
2001-10-19 12:33:10 +00:00
case $ac_im_usrlibdir in
1999-10-07 13:06:22 +00:00
/usr/lib | /lib) ;;
2001-10-19 12:33:10 +00:00
*) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;;
1999-10-07 13:06:22 +00:00
esac
fi
cd ..
2001-10-19 12:33:10 +00:00
rm -fr conftest.dir
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
# Standard set of common directories for X headers.
# Check X11 before X11Rn because it is often a symlink to the current release.
ac_x_header_dirs='
/usr/X11/include
/usr/X11R6/include
/usr/X11R5/include
/usr/X11R4/include
/usr/include/X11
/usr/include/X11R6
/usr/include/X11R5
/usr/include/X11R4
/usr/local/X11/include
/usr/local/X11R6/include
/usr/local/X11R5/include
/usr/local/X11R4/include
/usr/local/include/X11
/usr/local/include/X11R6
/usr/local/include/X11R5
/usr/local/include/X11R4
/usr/X386/include
/usr/x386/include
/usr/XFree86/include/X11
/usr/include
/usr/local/include
/usr/unsupported/include
/usr/athena/include
/usr/local/x11r5/include
/usr/lpp/Xamples/include
/usr/openwin/include
/usr/openwin/share/include'
if test "$ac_x_includes" = no; then
# Guess where to find include files, by looking for Intrinsic.h.
1999-10-07 13:06:22 +00:00
# First, try using that file with no special directory specified.
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 5199 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
#include <X11/Intrinsic.h>
_ACEOF
if { (eval echo "$as_me:5203: \"$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:5209: \$? = $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
1999-10-07 13:06:22 +00:00
# We can compile using X headers with no special include directory.
ac_x_includes=
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
for ac_dir in $ac_x_header_dirs; do
if test -r "$ac_dir/X11/Intrinsic.h"; then
ac_x_includes=$ac_dir
break
fi
done
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
fi # $ac_x_includes = no
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
if test "$ac_x_libraries" = no; then
1999-10-07 13:06:22 +00:00
# Check for the libraries.
# See if we find them without any special options.
# Don't add to $LIBS permanently.
2001-10-19 12:33:10 +00:00
ac_save_LIBS=$LIBS
LIBS="-lXt $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#line 5242 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
#include <X11/Intrinsic.h>
int
main ()
{
XtMalloc (0)
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:5254: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:5257: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:5260: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:5263: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
LIBS=$ac_save_LIBS
1999-10-07 13:06:22 +00:00
# We can link X programs with no special library path.
ac_x_libraries=
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
LIBS=$ac_save_LIBS
for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g`
1999-10-07 13:06:22 +00:00
do
2001-10-19 12:33:10 +00:00
# Don't even attempt the hair of trying to link an X program!
1999-10-07 13:06:22 +00:00
for ac_extension in a so sl; do
2001-10-19 12:33:10 +00:00
if test -r $ac_dir/libXt.$ac_extension; then
1999-10-07 13:06:22 +00:00
ac_x_libraries=$ac_dir
break 2
fi
done
done
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi # $ac_x_libraries = no
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
if test "$ac_x_includes" = no || test "$ac_x_libraries" = no; then
1999-10-07 13:06:22 +00:00
# Didn't find X anywhere. Cache the known absence of X.
ac_cv_have_x="have_x=no"
else
# Record where we found X for the cache.
ac_cv_have_x="have_x=yes \
ac_x_includes=$ac_x_includes ac_x_libraries=$ac_x_libraries"
fi
fi
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
fi
eval "$ac_cv_have_x"
fi # $with_x != no
if test "$have_x" != yes; then
2001-10-19 12:33:10 +00:00
echo "$as_me:5301: result: $have_x" >&5
echo "${ECHO_T}$have_x" >&6
1999-10-07 13:06:22 +00:00
no_x=yes
else
# If each of the values was on the command line, it overrides each guess.
test "x$x_includes" = xNONE && x_includes=$ac_x_includes
test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries
# Update the cache value to reflect the command line values.
ac_cv_have_x="have_x=yes \
ac_x_includes=$x_includes ac_x_libraries=$x_libraries"
2001-10-19 12:33:10 +00:00
echo "$as_me:5311: result: libraries $x_libraries, headers $x_includes" >&5
echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6
1999-10-07 13:06:22 +00:00
fi
if test "$no_x" = yes; then
window_system=none
else
window_system=x11
fi
if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"`
LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"`
x_default_search_path=""
for x_library in `echo ${x_libraries} | sed -e "s/:/ /g"`; do
2001-01-28 16:53:37 +00:00
x_search_path="\
${x_library}/X11/%L/%T/%N%C%S:\
${x_library}/X11/%l/%T/%N%C%S:\
${x_library}/X11/%T/%N%C%S:\
${x_library}/X11/%L/%T/%N%S:\
${x_library}/X11/%l/%T/%N%S:\
${x_library}/X11/%T/%N%S"
1999-10-07 13:06:22 +00:00
if test x"${x_default_search_path}" = x; then
x_default_search_path=${x_search_path}
else
x_default_search_path="${x_search_path}:${x_default_search_path}"
fi
done
fi
if test "${x_includes}" != NONE && test -n "${x_includes}"; then
C_SWITCH_X_SITE=-I`echo ${x_includes} | sed -e "s/:/ -I/g"`
fi
if test x"${x_includes}" = x; then
bitmapdir=/usr/include/X11/bitmaps
else
# accumulate include directories that have X11 bitmap subdirectories
bmd_acc="dummyval"
for bmd in `echo ${x_includes} | sed -e "s/:/ /g"`; do
if test -d "${bmd}/X11/bitmaps"; then
bmd_acc="${bmd_acc}:${bmd}/X11/bitmaps"
1999-11-18 18:28:59 +00:00
fi
if test -d "${bmd}/bitmaps"; then
1999-10-07 13:06:22 +00:00
bmd_acc="${bmd_acc}:${bmd}/bitmaps"
fi
done
if test ${bmd_acc} != "dummyval"; then
bitmapdir=`echo ${bmd_acc} | sed -e "s/^dummyval://"`
fi
fi
case "${window_system}" in
x11 )
HAVE_X_WINDOWS=yes
HAVE_X11=yes
case "${with_x_toolkit}" in
athena | lucid ) USE_X_TOOLKIT=LUCID ;;
motif ) USE_X_TOOLKIT=MOTIF ;;
no ) USE_X_TOOLKIT=none ;;
* ) USE_X_TOOLKIT=maybe ;;
esac
;;
none )
HAVE_X_WINDOWS=no
HAVE_X11=no
USE_X_TOOLKIT=none
;;
esac
### If we're using X11, we should use the X menu package.
HAVE_MENUS=no
case ${HAVE_X11} in
yes ) HAVE_MENUS=yes ;;
esac
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
if test "${opsys}" = "hpux9"; then
case "${x_libraries}" in
*X11R4* )
opsysfile="s/hpux9-x11r4.h"
;;
esac
fi
if test "${opsys}" = "hpux9shr"; then
case "${x_libraries}" in
*X11R4* )
opsysfile="s/hpux9shxr4.h"
;;
esac
fi
### Compute the unexec source name from the object name.
UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`"
# Do the opsystem or machine files prohibit the use of the GNU malloc?
# Assume not, until told otherwise.
GNU_MALLOC=yes
doug_lea_malloc=yes
2001-10-19 12:33:10 +00:00
echo "$as_me:5409: checking for malloc_get_state" >&5
echo $ECHO_N "checking for malloc_get_state... $ECHO_C" >&6
if test "${ac_cv_func_malloc_get_state+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 5415 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char malloc_get_state (); below. */
1999-10-07 13:06:22 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char malloc_get_state ();
char (*f) ();
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_malloc_get_state) || defined (__stub___malloc_get_state)
choke me
#else
2001-10-19 12:33:10 +00:00
f = malloc_get_state;
1999-10-07 13:06:22 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:5446: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:5449: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:5452: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:5455: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_malloc_get_state=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_malloc_get_state=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
echo "$as_me:5465: result: $ac_cv_func_malloc_get_state" >&5
echo "${ECHO_T}$ac_cv_func_malloc_get_state" >&6
if test $ac_cv_func_malloc_get_state = yes; then
1999-10-07 13:06:22 +00:00
:
else
2001-10-19 12:33:10 +00:00
doug_lea_malloc=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:5473: checking for malloc_set_state" >&5
echo $ECHO_N "checking for malloc_set_state... $ECHO_C" >&6
if test "${ac_cv_func_malloc_set_state+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 5479 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char malloc_set_state (); below. */
1999-10-07 13:06:22 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char malloc_set_state ();
char (*f) ();
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_malloc_set_state) || defined (__stub___malloc_set_state)
choke me
#else
2001-10-19 12:33:10 +00:00
f = malloc_set_state;
1999-10-07 13:06:22 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:5510: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:5513: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:5516: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:5519: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_malloc_set_state=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_malloc_set_state=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
echo "$as_me:5529: result: $ac_cv_func_malloc_set_state" >&5
echo "${ECHO_T}$ac_cv_func_malloc_set_state" >&6
if test $ac_cv_func_malloc_set_state = yes; then
1999-10-07 13:06:22 +00:00
:
else
2001-10-19 12:33:10 +00:00
doug_lea_malloc=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:5537: checking whether __after_morecore_hook exists" >&5
echo $ECHO_N "checking whether __after_morecore_hook exists... $ECHO_C" >&6
if test "${emacs_cv_var___after_morecore_hook+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 5543 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
extern void (* __after_morecore_hook)();
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
__after_morecore_hook = 0
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:5555: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:5558: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:5561: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:5564: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
emacs_cv_var___after_morecore_hook=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_var___after_morecore_hook=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:5574: result: $emacs_cv_var___after_morecore_hook" >&5
echo "${ECHO_T}$emacs_cv_var___after_morecore_hook" >&6
1999-10-07 13:06:22 +00:00
if test $emacs_cv_var___after_morecore_hook = no; then
doug_lea_malloc=no
fi
if test "${system_malloc}" = "yes"; then
GNU_MALLOC=no
GNU_MALLOC_reason="
(The GNU allocators don't work with this system configuration.)"
fi
if test "$doug_lea_malloc" = "yes" ; then
if test "$GNU_MALLOC" = yes ; then
GNU_MALLOC_reason="
(Using Doug Lea's new malloc from the GNU C Library.)"
fi
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define DOUG_LEA_MALLOC 1
EOF
fi
if test x"${REL_ALLOC}" = x; then
REL_ALLOC=${GNU_MALLOC}
fi
2001-10-19 12:33:10 +00:00
# On IRIX 5.3, sys/types and inttypes.h are conflicting.
for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
inttypes.h stdint.h unistd.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:5605: 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 5611 "configure"
#include "confdefs.h"
$ac_includes_default
#include <$ac_header>
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:5617: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:5620: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:5623: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:5626: \$? = $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:5636: 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
2000-09-29 09:32:42 +00:00
2001-10-19 12:33:10 +00:00
for ac_header in stdlib.h unistd.h
2000-09-06 21:42:35 +00:00
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:5649: 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 5655 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:5659: \"$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:5665: \$? = $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
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:5684: 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
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
fi
2000-09-06 21:42:35 +00:00
done
1999-10-07 13:06:22 +00:00
2000-09-06 21:42:35 +00:00
for ac_func in getpagesize
1999-10-07 13:06:22 +00:00
do
2001-10-19 12:33:10 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:5697: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 5703 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char $ac_func (); below. */
1999-10-07 13:06:22 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
1999-10-07 13:06:22 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:5734: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:5737: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:5740: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:5743: \$? = $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:5753: 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
1999-10-07 13:06:22 +00:00
EOF
fi
done
2001-10-19 12:33:10 +00:00
echo "$as_me:5763: checking for working mmap" >&5
echo $ECHO_N "checking for working mmap... $ECHO_C" >&6
if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-09-06 21:42:35 +00:00
else
if test "$cross_compiling" = yes; then
ac_cv_func_mmap_fixed_mapped=no
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 5772 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
$ac_includes_default
2000-09-06 21:42:35 +00:00
/* Thanks to Mike Haertel and Jim Avera for this test.
Here is a matrix of mmap possibilities:
mmap private not fixed
mmap private fixed at somewhere currently unmapped
mmap private fixed at somewhere already mapped
mmap shared not fixed
mmap shared fixed at somewhere currently unmapped
mmap shared fixed at somewhere already mapped
For private mappings, we should verify that changes cannot be read()
back from the file, nor mmap's back from the file at a different
address. (There have been systems where private was not correctly
implemented like the infamous i386 svr4.0, and systems where the
2000-09-08 16:14:29 +00:00
VM page cache was not coherent with the file system buffer cache
2000-09-06 21:42:35 +00:00
like early versions of FreeBSD and possibly contemporary NetBSD.)
For shared mappings, we should conversely verify that changes get
propogated back to all the places they're supposed to be.
Grep wants private fixed already mapped.
The main things grep needs to know about mmap are:
* does it exist and is it safe to write into the mmap'd area
* how to use it (BSD variants) */
2001-10-19 12:33:10 +00:00
2000-09-06 21:42:35 +00:00
#include <fcntl.h>
#include <sys/mman.h>
2001-10-19 12:33:10 +00:00
#if !STDC_HEADERS && !HAVE_STDLIB_H
2000-09-08 16:14:29 +00:00
char *malloc ();
#endif
2000-09-06 21:42:35 +00:00
2000-09-08 16:14:29 +00:00
/* This mess was copied from the GNU getpagesize.h. */
#if !HAVE_GETPAGESIZE
2000-09-06 21:42:35 +00:00
/* Assume that all systems that can run configure have sys/param.h. */
2000-09-08 16:14:29 +00:00
# if !HAVE_SYS_PARAM_H
2000-09-06 21:42:35 +00:00
# define HAVE_SYS_PARAM_H 1
# endif
# ifdef _SC_PAGESIZE
# define getpagesize() sysconf(_SC_PAGESIZE)
# else /* no _SC_PAGESIZE */
2000-09-08 16:14:29 +00:00
# if HAVE_SYS_PARAM_H
2000-09-06 21:42:35 +00:00
# include <sys/param.h>
# ifdef EXEC_PAGESIZE
# define getpagesize() EXEC_PAGESIZE
# else /* no EXEC_PAGESIZE */
# ifdef NBPG
# define getpagesize() NBPG * CLSIZE
# ifndef CLSIZE
# define CLSIZE 1
# endif /* no CLSIZE */
# else /* no NBPG */
# ifdef NBPC
# define getpagesize() NBPC
# else /* no NBPC */
# ifdef PAGESIZE
# define getpagesize() PAGESIZE
# endif /* PAGESIZE */
# endif /* no NBPC */
# endif /* no NBPG */
# endif /* no EXEC_PAGESIZE */
# else /* no HAVE_SYS_PARAM_H */
# define getpagesize() 8192 /* punt totally */
# endif /* no HAVE_SYS_PARAM_H */
# endif /* no _SC_PAGESIZE */
#endif /* no HAVE_GETPAGESIZE */
int
2000-09-08 16:14:29 +00:00
main ()
2000-09-06 21:42:35 +00:00
{
2000-09-08 16:14:29 +00:00
char *data, *data2, *data3;
int i, pagesize;
int fd;
pagesize = getpagesize ();
/* First, make a file with some known garbage in it. */
data = (char *) malloc (pagesize);
if (!data)
exit (1);
for (i = 0; i < pagesize; ++i)
*(data + i) = rand ();
umask (0);
2001-10-19 12:33:10 +00:00
fd = creat ("conftest.mmap", 0600);
2000-09-08 16:14:29 +00:00
if (fd < 0)
exit (1);
if (write (fd, data, pagesize) != pagesize)
exit (1);
close (fd);
2000-09-06 21:42:35 +00:00
2000-09-08 16:14:29 +00:00
/* Next, try to mmap the file at a fixed address which already has
something else allocated at it. If we can, also make sure that
we see the same garbage. */
2001-10-19 12:33:10 +00:00
fd = open ("conftest.mmap", O_RDWR);
2000-09-08 16:14:29 +00:00
if (fd < 0)
exit (1);
data2 = (char *) malloc (2 * pagesize);
if (!data2)
exit (1);
data2 += (pagesize - ((int) data2 & (pagesize - 1))) & (pagesize - 1);
if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_FIXED, fd, 0L))
exit (1);
for (i = 0; i < pagesize; ++i)
if (*(data + i) != *(data2 + i))
exit (1);
/* Finally, make sure that changes to the mapped area do not
percolate back to the file as seen by read(). (This is a bug on
some variants of i386 svr4.0.) */
for (i = 0; i < pagesize; ++i)
*(data2 + i) = *(data2 + i) + 1;
data3 = (char *) malloc (pagesize);
if (!data3)
exit (1);
if (read (fd, data3, pagesize) != pagesize)
exit (1);
for (i = 0; i < pagesize; ++i)
if (*(data + i) != *(data3 + i))
exit (1);
close (fd);
exit (0);
}
2001-10-19 12:33:10 +00:00
_ACEOF
rm -f conftest$ac_exeext
if { (eval echo "$as_me:5899: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:5902: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
{ (eval echo "$as_me:5904: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:5907: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-09-06 21:42:35 +00:00
ac_cv_func_mmap_fixed_mapped=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_mmap_fixed_mapped=no
2000-09-06 21:42:35 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2000-09-06 21:42:35 +00:00
fi
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:5919: result: $ac_cv_func_mmap_fixed_mapped" >&5
echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6
2000-09-06 21:42:35 +00:00
if test $ac_cv_func_mmap_fixed_mapped = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-09-06 21:42:35 +00:00
#define HAVE_MMAP 1
EOF
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.mmap
2000-09-06 21:42:35 +00:00
2000-09-14 15:15:16 +00:00
if test $use_mmap_for_buffers = yes; then
REL_ALLOC=no
2000-09-06 21:42:35 +00:00
fi
LIBS="$libsrc_libs $LIBS"
2001-10-19 12:33:10 +00:00
echo "$as_me:5936: checking for dnet_ntoa in -ldnet" >&5
echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6
if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-09-06 21:42:35 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2000-09-06 21:42:35 +00:00
LIBS="-ldnet $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 5944 "configure"
2000-09-06 21:42:35 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
2000-09-06 21:42:35 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-09-06 21:42:35 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char dnet_ntoa ();
int
main ()
{
dnet_ntoa ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:5963: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:5966: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:5969: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:5972: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dnet_dnet_ntoa=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_dnet_dnet_ntoa=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:5983: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6
if test $ac_cv_lib_dnet_dnet_ntoa = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBDNET 1
2000-09-06 21:42:35 +00:00
EOF
LIBS="-ldnet $LIBS"
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:5994: checking for main in -lXbsd" >&5
echo $ECHO_N "checking for main in -lXbsd... $ECHO_C" >&6
if test "${ac_cv_lib_Xbsd_main+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-09-06 21:42:35 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2000-09-06 21:42:35 +00:00
LIBS="-lXbsd $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6002 "configure"
2000-09-06 21:42:35 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
int
main ()
{
main ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6014: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6017: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6020: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6023: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_Xbsd_main=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_Xbsd_main=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:6034: result: $ac_cv_lib_Xbsd_main" >&5
echo "${ECHO_T}$ac_cv_lib_Xbsd_main" >&6
if test $ac_cv_lib_Xbsd_main = yes; then
2000-09-06 21:42:35 +00:00
LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd"
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:6040: checking for cma_open in -lpthreads" >&5
echo $ECHO_N "checking for cma_open in -lpthreads... $ECHO_C" >&6
if test "${ac_cv_lib_pthreads_cma_open+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-09-06 21:42:35 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2000-09-06 21:42:35 +00:00
LIBS="-lpthreads $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6048 "configure"
2000-09-06 21:42:35 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
2000-09-06 21:42:35 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-09-06 21:42:35 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char cma_open ();
int
main ()
{
cma_open ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6067: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6070: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6073: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6076: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_pthreads_cma_open=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_pthreads_cma_open=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:6087: result: $ac_cv_lib_pthreads_cma_open" >&5
echo "${ECHO_T}$ac_cv_lib_pthreads_cma_open" >&6
if test $ac_cv_lib_pthreads_cma_open = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBPTHREADS 1
2000-09-06 21:42:35 +00:00
EOF
LIBS="-lpthreads $LIBS"
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:6098: checking for XFree86 in /usr/X386" >&5
echo $ECHO_N "checking for XFree86 in /usr/X386... $ECHO_C" >&6
2000-09-06 21:42:35 +00:00
if test -d /usr/X386/include; then
HAVE_XFREE386=yes
: ${C_SWITCH_X_SITE="-I/usr/X386/include"}
else
HAVE_XFREE386=no
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:6106: result: $HAVE_XFREE386" >&5
echo "${ECHO_T}$HAVE_XFREE386" >&6
2000-09-06 21:42:35 +00:00
# Change CFLAGS temporarily so that C_SWITCH_X_SITE gets used
# for the tests that follow. We set it back to REAL_CFLAGS later on.
REAL_CPPFLAGS="$CPPFLAGS"
if test "${HAVE_X11}" = "yes"; then
DEFS="$C_SWITCH_X_SITE $DEFS"
LDFLAGS="$LDFLAGS $LD_SWITCH_X_SITE"
LIBS="$LIBX $LIBS"
CFLAGS="$C_SWITCH_X_SITE $CFLAGS"
CPPFLAGS="$C_SWITCH_X_SITE $CPPFLAGS"
# On Solaris, arrange for LD_RUN_PATH to point to the X libraries for tests.
# This is handled by LD_SWITCH_X_SITE_AUX during the real build,
# but it's more convenient here to set LD_RUN_PATH
# since this also works on hosts that don't understand LD_SWITCH_X_SITE_AUX.
if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
LD_RUN_PATH=$x_libraries${LD_RUN_PATH+:}$LD_RUN_PATH
export LD_RUN_PATH
fi
if test "${opsys}" = "gnu-linux"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6131: checking whether X on GNU/Linux needs -b to link" >&5
echo $ECHO_N "checking whether X on GNU/Linux needs -b to link... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
#line 6134 "configure"
2000-09-06 21:42:35 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-09-06 21:42:35 +00:00
XOpenDisplay ("foo");
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6146: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6149: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6152: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6155: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-09-06 21:42:35 +00:00
xlinux_first_failure=no
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
xlinux_first_failure=yes
2000-09-06 21:42:35 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2000-09-06 21:42:35 +00:00
if test "${xlinux_first_failure}" = "yes"; then
OLD_LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE"
OLD_C_SWITCH_X_SITE="$C_SWITCH_X_SITE"
OLD_CPPFLAGS="$CPPFLAGS"
OLD_LIBS="$LIBS"
LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -b i486-linuxaout"
C_SWITCH_X_SITE="$C_SWITCH_X_SITE -b i486-linuxaout"
CPPFLAGS="$CPPFLAGS -b i486-linuxaout"
LIBS="$LIBS -b i486-linuxaout"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6174 "configure"
2000-09-06 21:42:35 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-09-06 21:42:35 +00:00
XOpenDisplay ("foo");
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6186: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6189: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6192: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6195: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-09-06 21:42:35 +00:00
xlinux_second_failure=no
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
xlinux_second_failure=yes
2000-09-06 21:42:35 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2000-09-06 21:42:35 +00:00
if test "${xlinux_second_failure}" = "yes"; then
# If we get the same failure with -b, there is no use adding -b.
# So take it out. This plays safe.
LD_SWITCH_X_SITE="$OLD_LD_SWITCH_X_SITE"
C_SWITCH_X_SITE="$OLD_C_SWITCH_X_SITE"
CPPFLAGS="$OLD_CPPFLAGS"
LIBS="$OLD_LIBS"
2001-10-19 12:33:10 +00:00
echo "$as_me:6211: result: no" >&5
echo "${ECHO_T}no" >&6
2000-09-06 21:42:35 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me:6214: result: yes" >&5
echo "${ECHO_T}yes" >&6
2000-09-06 21:42:35 +00:00
fi
else
2001-10-19 12:33:10 +00:00
echo "$as_me:6218: result: no" >&5
echo "${ECHO_T}no" >&6
2000-09-06 21:42:35 +00:00
fi
fi
2001-01-10 12:50:09 +00:00
# Reportedly, some broken Solaris systems have XKBlib.h but are missing
# header files included from there.
2001-10-19 12:33:10 +00:00
echo "$as_me:6225: checking for Xkb" >&5
echo $ECHO_N "checking for Xkb... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
#line 6228 "configure"
2001-01-10 12:50:09 +00:00
#include "confdefs.h"
#include <X11/Xlib.h>
#include <X11/XKBlib.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
2001-01-10 12:50:09 +00:00
XkbDescPtr kb = XkbGetKeyboard (0, XkbAllComponentsMask, XkbUseCoreKbd);
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6241: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6244: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6247: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6250: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2001-01-10 12:50:09 +00:00
emacs_xkb=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_xkb=no
2001-01-10 12:50:09 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
echo "$as_me:6259: result: $emacs_xkb" >&5
echo "${ECHO_T}$emacs_xkb" >&6
2001-01-10 12:50:09 +00:00
if test $emacs_xkb = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2001-01-10 12:50:09 +00:00
#define HAVE_XKBGETKEYBOARD 1
EOF
fi
2001-10-19 12:33:10 +00:00
for ac_func in XrmSetDatabase XScreenResourceString \
2000-09-06 21:42:35 +00:00
XScreenNumberOfScreen XSetWMProtocols
do
2001-10-19 12:33:10 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:6272: 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
2000-09-06 21:42:35 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6278 "configure"
2000-09-06 21:42:35 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char $ac_func (); below. */
2000-09-06 21:42:35 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-09-06 21:42:35 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
2000-09-06 21:42:35 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-09-06 21:42:35 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
2000-09-06 21:42:35 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6309: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6312: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6315: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6318: \$? = $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:6328: 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
2000-09-06 21:42:35 +00:00
EOF
fi
done
fi
if test "${window_system}" = "x11"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6341: checking X11 version 6" >&5
echo $ECHO_N "checking X11 version 6... $ECHO_C" >&6
if test "${emacs_cv_x11_version_6+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-09-06 21:42:35 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6347 "configure"
2000-09-06 21:42:35 +00:00
#include "confdefs.h"
#include <X11/Xlib.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-09-06 21:42:35 +00:00
#if XlibSpecificationRelease < 6
fail;
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6362: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6365: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6368: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6371: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-09-06 21:42:35 +00:00
emacs_cv_x11_version_6=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_x11_version_6=no
2000-09-06 21:42:35 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2000-09-06 21:42:35 +00:00
fi
if test $emacs_cv_x11_version_6 = yes; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6383: result: 6 or newer" >&5
echo "${ECHO_T}6 or newer" >&6
cat >>confdefs.h <<\EOF
2000-09-06 21:42:35 +00:00
#define HAVE_X11R6 1
EOF
else
2001-10-19 12:33:10 +00:00
echo "$as_me:6390: result: before 6" >&5
echo "${ECHO_T}before 6" >&6
1999-10-07 13:06:22 +00:00
fi
fi
if test "${window_system}" = "x11"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6396: checking X11 version 5" >&5
echo $ECHO_N "checking X11 version 5... $ECHO_C" >&6
if test "${emacs_cv_x11_version_5+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6402 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <X11/Xlib.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
#if XlibSpecificationRelease < 5
fail;
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6417: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6420: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6423: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6426: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
emacs_cv_x11_version_5=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_x11_version_5=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
if test $emacs_cv_x11_version_5 = yes; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6438: result: 5 or newer" >&5
echo "${ECHO_T}5 or newer" >&6
1999-10-07 13:06:22 +00:00
HAVE_X11R5=yes
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_X11R5 1
EOF
else
HAVE_X11R5=no
2001-10-19 12:33:10 +00:00
echo "$as_me:6447: result: before 5" >&5
echo "${ECHO_T}before 5" >&6
1999-10-07 13:06:22 +00:00
fi
fi
if test x"${USE_X_TOOLKIT}" = xmaybe; then
if test x"${HAVE_X11R5}" = xyes; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6454: checking X11 version 5 with Xaw" >&5
echo $ECHO_N "checking X11 version 5 with Xaw... $ECHO_C" >&6
if test "${emacs_cv_x11_version_5_with_xaw+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6460 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <X11/Intrinsic.h>
#include <X11/Xaw/Simple.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6474: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6477: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6480: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6483: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
emacs_cv_x11_version_5_with_xaw=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_x11_version_5_with_xaw=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
if test $emacs_cv_x11_version_5_with_xaw = yes; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6495: result: 5 or newer, with Xaw; use toolkit by default" >&5
echo "${ECHO_T}5 or newer, with Xaw; use toolkit by default" >&6
1999-10-07 13:06:22 +00:00
USE_X_TOOLKIT=LUCID
else
2001-10-19 12:33:10 +00:00
echo "$as_me:6499: result: before 5 or no Xaw; do not use toolkit by default" >&5
echo "${ECHO_T}before 5 or no Xaw; do not use toolkit by default" >&6
1999-10-07 13:06:22 +00:00
USE_X_TOOLKIT=none
fi
else
USE_X_TOOLKIT=none
fi
fi
X_TOOLKIT_TYPE=$USE_X_TOOLKIT
if test "${USE_X_TOOLKIT}" != "none"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6511: checking X11 toolkit version" >&5
echo $ECHO_N "checking X11 toolkit version... $ECHO_C" >&6
if test "${emacs_cv_x11_toolkit_version_6+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6517 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <X11/Intrinsic.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
#if XtSpecificationRelease < 6
fail;
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6532: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6535: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6538: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6541: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
emacs_cv_x11_toolkit_version_6=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_x11_toolkit_version_6=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
HAVE_X11XTR6=$emacs_cv_x11_toolkit_version_6
if test $emacs_cv_x11_toolkit_version_6 = yes; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6554: result: 6 or newer" >&5
echo "${ECHO_T}6 or newer" >&6
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_X11XTR6 1
EOF
else
2001-10-19 12:33:10 +00:00
echo "$as_me:6561: result: before 6" >&5
echo "${ECHO_T}before 6" >&6
1999-10-07 13:06:22 +00:00
fi
OLDLIBS="$LIBS"
if test x$HAVE_X11XTR6 = xyes; then
LIBS="-lXt -lSM -lICE $LIBS"
else
LIBS="-lXt $LIBS"
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:6572: checking for XmuConvertStandardSelection in -lXmu" >&5
echo $ECHO_N "checking for XmuConvertStandardSelection in -lXmu... $ECHO_C" >&6
if test "${ac_cv_lib_Xmu_XmuConvertStandardSelection+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-10-07 13:06:22 +00:00
LIBS="-lXmu $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6580 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char XmuConvertStandardSelection ();
int
main ()
{
XmuConvertStandardSelection ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6599: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6602: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6605: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6608: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_Xmu_XmuConvertStandardSelection=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_Xmu_XmuConvertStandardSelection=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:6619: result: $ac_cv_lib_Xmu_XmuConvertStandardSelection" >&5
echo "${ECHO_T}$ac_cv_lib_Xmu_XmuConvertStandardSelection" >&6
if test $ac_cv_lib_Xmu_XmuConvertStandardSelection = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBXMU 1
1999-10-07 13:06:22 +00:00
EOF
LIBS="-lXmu $LIBS"
fi
2001-01-10 15:24:55 +00:00
test $ac_cv_lib_Xmu_XmuConvertStandardSelection = no && LIBS="$OLDLIBS"
fi
# On Irix 6.5, at least, we need XShapeQueryExtension from -lXext for Xaw3D.
if test "${HAVE_X11}" = "yes"; then
if test "${USE_X_TOOLKIT}" != "none"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6637: checking for XShapeQueryExtension in -lXext" >&5
echo $ECHO_N "checking for XShapeQueryExtension in -lXext... $ECHO_C" >&6
if test "${ac_cv_lib_Xext_XShapeQueryExtension+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2001-01-10 15:24:55 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2001-01-10 15:24:55 +00:00
LIBS="-lXext $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6645 "configure"
2001-01-10 15:24:55 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
2001-01-10 15:24:55 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2001-01-10 15:24:55 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char XShapeQueryExtension ();
int
main ()
{
XShapeQueryExtension ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6664: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6667: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6670: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6673: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_Xext_XShapeQueryExtension=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_Xext_XShapeQueryExtension=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:6684: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5
echo "${ECHO_T}$ac_cv_lib_Xext_XShapeQueryExtension" >&6
if test $ac_cv_lib_Xext_XShapeQueryExtension = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBXEXT 1
2001-01-10 15:24:55 +00:00
EOF
LIBS="-lXext $LIBS"
fi
fi
1999-10-07 13:06:22 +00:00
fi
if test "${USE_X_TOOLKIT}" = "MOTIF"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6699: checking for Motif version 2.1" >&5
echo $ECHO_N "checking for Motif version 2.1... $ECHO_C" >&6
if test "${emacs_cv_motif_version_2_1+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6705 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <Xm/Xm.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
#if XmVERSION > 2 || (XmVERSION == 2 && XmREVISION >= 1)
int x = 5;
#else
Motif version prior to 2.1.
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:6721: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:6724: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:6727: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6730: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
emacs_cv_motif_version_2_1=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_motif_version_2_1=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:6740: result: $emacs_cv_motif_version_2_1" >&5
echo "${ECHO_T}$emacs_cv_motif_version_2_1" >&6
1999-10-07 13:06:22 +00:00
HAVE_MOTIF_2_1=$emacs_cv_motif_version_2_1
if test $emacs_cv_motif_version_2_1 = yes; then
2000-12-11 12:15:07 +00:00
HAVE_LIBXP=no
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_MOTIF_2_1 1
EOF
2001-10-19 12:33:10 +00:00
echo "$as_me:6749: checking for XpCreateContext in -lXp" >&5
echo $ECHO_N "checking for XpCreateContext in -lXp... $ECHO_C" >&6
if test "${ac_cv_lib_Xp_XpCreateContext+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2001-01-10 15:24:55 +00:00
LIBS="-lXp $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6757 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char XpCreateContext ();
int
main ()
{
XpCreateContext ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6776: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6779: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6782: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6785: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_Xp_XpCreateContext=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_Xp_XpCreateContext=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:6796: result: $ac_cv_lib_Xp_XpCreateContext" >&5
echo "${ECHO_T}$ac_cv_lib_Xp_XpCreateContext" >&6
if test $ac_cv_lib_Xp_XpCreateContext = yes; then
2000-06-23 15:43:44 +00:00
HAVE_LIBXP=yes
1999-10-07 13:06:22 +00:00
fi
2000-06-23 15:43:44 +00:00
if test ${HAVE_LIBXP} = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-06-23 15:43:44 +00:00
#define HAVE_LIBXP 1
EOF
2001-10-19 12:33:10 +00:00
fi
1999-10-07 13:06:22 +00:00
fi
fi
### Is -lXaw3d available?
HAVE_XAW3D=no
if test "${HAVE_X11}" = "yes"; then
if test "${USE_X_TOOLKIT}" != "none"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6815: checking for X11/Xaw3d/Scrollbar.h" >&5
echo $ECHO_N "checking for X11/Xaw3d/Scrollbar.h... $ECHO_C" >&6
if test "${ac_cv_header_X11_Xaw3d_Scrollbar_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6821 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <X11/Xaw3d/Scrollbar.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:6825: \"$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:6831: \$? = $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_X11_Xaw3d_Scrollbar_h=yes
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_X11_Xaw3d_Scrollbar_h=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:6850: result: $ac_cv_header_X11_Xaw3d_Scrollbar_h" >&5
echo "${ECHO_T}$ac_cv_header_X11_Xaw3d_Scrollbar_h" >&6
if test $ac_cv_header_X11_Xaw3d_Scrollbar_h = yes; then
echo "$as_me:6853: checking for XawScrollbarSetThumb in -lXaw3d" >&5
echo $ECHO_N "checking for XawScrollbarSetThumb in -lXaw3d... $ECHO_C" >&6
if test "${ac_cv_lib_Xaw3d_XawScrollbarSetThumb+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2001-01-10 15:24:55 +00:00
LIBS="-lXaw3d $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6861 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char XawScrollbarSetThumb ();
int
main ()
{
XawScrollbarSetThumb ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:6880: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:6883: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:6886: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:6889: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_Xaw3d_XawScrollbarSetThumb=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_Xaw3d_XawScrollbarSetThumb=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:6900: result: $ac_cv_lib_Xaw3d_XawScrollbarSetThumb" >&5
echo "${ECHO_T}$ac_cv_lib_Xaw3d_XawScrollbarSetThumb" >&6
if test $ac_cv_lib_Xaw3d_XawScrollbarSetThumb = yes; then
1999-10-07 13:06:22 +00:00
HAVE_XAW3D=yes
fi
fi
if test "${HAVE_XAW3D}" = "yes"; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_XAW3D 1
EOF
fi
fi
fi
USE_TOOLKIT_SCROLL_BARS=no
if test "${with_toolkit_scroll_bars}" != "no"; then
if test "${USE_X_TOOLKIT}" != "none"; then
if test "${USE_X_TOOLKIT}" = "MOTIF"; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define USE_TOOLKIT_SCROLL_BARS 1
EOF
HAVE_XAW3D=no
USE_TOOLKIT_SCROLL_BARS=yes
elif test "${HAVE_XAW3D}" = "yes"; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define USE_TOOLKIT_SCROLL_BARS 1
EOF
USE_TOOLKIT_SCROLL_BARS=yes
fi
fi
fi
2000-06-26 15:40:38 +00:00
if test "${with_xim}" != "no"; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-06-26 15:40:38 +00:00
#define USE_XIM 1
EOF
fi
1999-10-07 13:06:22 +00:00
### Use -lXpm if available, unless `--with-xpm=no'.
HAVE_XPM=no
if test "${HAVE_X11}" = "yes"; then
if test "${with_xpm}" != "no"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:6948: checking for X11/xpm.h" >&5
echo $ECHO_N "checking for X11/xpm.h... $ECHO_C" >&6
if test "${ac_cv_header_X11_xpm_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6954 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <X11/xpm.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:6958: \"$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:6964: \$? = $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_X11_xpm_h=yes
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_X11_xpm_h=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:6983: result: $ac_cv_header_X11_xpm_h" >&5
echo "${ECHO_T}$ac_cv_header_X11_xpm_h" >&6
if test $ac_cv_header_X11_xpm_h = yes; then
echo "$as_me:6986: checking for XpmReadFileToPixmap in -lXpm" >&5
echo $ECHO_N "checking for XpmReadFileToPixmap in -lXpm... $ECHO_C" >&6
if test "${ac_cv_lib_Xpm_XpmReadFileToPixmap+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-10-07 13:06:22 +00:00
LIBS="-lXpm -lX11 $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 6994 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char XpmReadFileToPixmap ();
int
main ()
{
XpmReadFileToPixmap ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7013: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7016: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7019: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7022: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_Xpm_XpmReadFileToPixmap=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_Xpm_XpmReadFileToPixmap=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:7033: result: $ac_cv_lib_Xpm_XpmReadFileToPixmap" >&5
echo "${ECHO_T}$ac_cv_lib_Xpm_XpmReadFileToPixmap" >&6
if test $ac_cv_lib_Xpm_XpmReadFileToPixmap = yes; then
1999-10-07 13:06:22 +00:00
HAVE_XPM=yes
fi
fi
2000-07-10 20:38:23 +00:00
if test "${HAVE_XPM}" = "yes"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:7042: checking for XpmReturnAllocPixels preprocessor define" >&5
echo $ECHO_N "checking for XpmReturnAllocPixels preprocessor define... $ECHO_C" >&6
cat >conftest.$ac_ext <<_ACEOF
#line 7045 "configure"
2000-07-10 20:38:23 +00:00
#include "confdefs.h"
#include "X11/xpm.h"
#ifndef XpmReturnAllocPixels
no_return_alloc_pixels
#endif
2001-10-19 12:33:10 +00:00
_ACEOF
2000-07-10 20:38:23 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "no_return_alloc_pixels" >/dev/null 2>&1; then
HAVE_XPM=no
else
HAVE_XPM=yes
fi
rm -f conftest*
2001-03-20 16:37:51 +00:00
if test "${HAVE_XPM}" = "yes"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:7062: result: yes" >&5
echo "${ECHO_T}yes" >&6
2001-03-20 16:37:51 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me:7065: result: no" >&5
echo "${ECHO_T}no" >&6
2001-03-20 16:37:51 +00:00
fi
2000-09-01 14:05:27 +00:00
fi
1999-10-07 13:06:22 +00:00
fi
if test "${HAVE_XPM}" = "yes"; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_XPM 1
EOF
fi
fi
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
### Use -ljpeg if available, unless `--with-jpeg=no'.
HAVE_JPEG=no
if test "${HAVE_X11}" = "yes"; then
if test "${with_jpeg}" != "no"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:7083: checking for jerror.h" >&5
echo $ECHO_N "checking for jerror.h... $ECHO_C" >&6
if test "${ac_cv_header_jerror_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-01-18 11:01:12 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7089 "configure"
2000-01-18 11:01:12 +00:00
#include "confdefs.h"
#include <jerror.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:7093: \"$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:7099: \$? = $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_jerror_h=yes
2000-01-18 11:01:12 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
2000-01-18 11:01:12 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_jerror_h=no
2000-01-18 11:01:12 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
2000-01-18 11:01:12 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7118: result: $ac_cv_header_jerror_h" >&5
echo "${ECHO_T}$ac_cv_header_jerror_h" >&6
if test $ac_cv_header_jerror_h = yes; then
echo "$as_me:7121: checking for jpeg_destroy_compress in -ljpeg" >&5
echo $ECHO_N "checking for jpeg_destroy_compress in -ljpeg... $ECHO_C" >&6
if test "${ac_cv_lib_jpeg_jpeg_destroy_compress+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2001-01-10 15:24:55 +00:00
LIBS="-ljpeg $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7129 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char jpeg_destroy_compress ();
int
main ()
{
jpeg_destroy_compress ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7148: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7151: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7154: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7157: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_jpeg_jpeg_destroy_compress=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_jpeg_jpeg_destroy_compress=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:7168: result: $ac_cv_lib_jpeg_jpeg_destroy_compress" >&5
echo "${ECHO_T}$ac_cv_lib_jpeg_jpeg_destroy_compress" >&6
if test $ac_cv_lib_jpeg_jpeg_destroy_compress = yes; then
1999-10-07 13:06:22 +00:00
HAVE_JPEG=yes
2000-01-18 11:01:12 +00:00
fi
1999-10-07 13:06:22 +00:00
fi
fi
if test "${HAVE_JPEG}" = "yes"; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_JPEG 1
EOF
fi
fi
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
### Use -lpng if available, unless `--with-png=no'.
HAVE_PNG=no
if test "${HAVE_X11}" = "yes"; then
if test "${with_png}" != "no"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:7190: checking for png.h" >&5
echo $ECHO_N "checking for png.h... $ECHO_C" >&6
if test "${ac_cv_header_png_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7196 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <png.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:7200: \"$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:7206: \$? = $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_png_h=yes
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_png_h=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7225: result: $ac_cv_header_png_h" >&5
echo "${ECHO_T}$ac_cv_header_png_h" >&6
if test $ac_cv_header_png_h = yes; then
echo "$as_me:7228: checking for png_get_channels in -lpng" >&5
echo $ECHO_N "checking for png_get_channels in -lpng... $ECHO_C" >&6
if test "${ac_cv_lib_png_png_get_channels+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2001-01-10 15:24:55 +00:00
LIBS="-lpng -lz -lm $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7236 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char png_get_channels ();
int
main ()
{
png_get_channels ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7255: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7258: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7261: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7264: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_png_png_get_channels=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_png_png_get_channels=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:7275: result: $ac_cv_lib_png_png_get_channels" >&5
echo "${ECHO_T}$ac_cv_lib_png_png_get_channels" >&6
if test $ac_cv_lib_png_png_get_channels = yes; then
1999-10-07 13:06:22 +00:00
HAVE_PNG=yes
fi
fi
fi
if test "${HAVE_PNG}" = "yes"; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_PNG 1
EOF
fi
fi
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
### Use -ltiff if available, unless `--with-tiff=no'.
HAVE_TIFF=no
if test "${HAVE_X11}" = "yes"; then
if test "${with_tiff}" != "no"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:7297: checking for tiffio.h" >&5
echo $ECHO_N "checking for tiffio.h... $ECHO_C" >&6
if test "${ac_cv_header_tiffio_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7303 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <tiffio.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:7307: \"$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:7313: \$? = $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_tiffio_h=yes
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_tiffio_h=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7332: result: $ac_cv_header_tiffio_h" >&5
echo "${ECHO_T}$ac_cv_header_tiffio_h" >&6
if test $ac_cv_header_tiffio_h = yes; then
2001-01-10 15:24:55 +00:00
tifflibs="-lz -lm"
# At least one tiff package requires the jpeg library.
if test "${HAVE_JPEG}" = yes; then tifflibs="-ljpeg $tifflibs"; fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7338: checking for TIFFGetVersion in -ltiff" >&5
echo $ECHO_N "checking for TIFFGetVersion in -ltiff... $ECHO_C" >&6
if test "${ac_cv_lib_tiff_TIFFGetVersion+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-ltiff $tifflibs $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7346 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char TIFFGetVersion ();
int
main ()
{
TIFFGetVersion ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7365: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7368: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7371: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7374: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_tiff_TIFFGetVersion=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_tiff_TIFFGetVersion=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:7385: result: $ac_cv_lib_tiff_TIFFGetVersion" >&5
echo "${ECHO_T}$ac_cv_lib_tiff_TIFFGetVersion" >&6
if test $ac_cv_lib_tiff_TIFFGetVersion = yes; then
1999-10-07 13:06:22 +00:00
HAVE_TIFF=yes
fi
fi
fi
if test "${HAVE_TIFF}" = "yes"; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_TIFF 1
EOF
fi
fi
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
### Use -lgif if available, unless `--with-gif=no'.
HAVE_GIF=no
if test "${HAVE_X11}" = "yes"; then
if test "${with_gif}" != "no"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:7407: checking for gif_lib.h" >&5
echo $ECHO_N "checking for gif_lib.h... $ECHO_C" >&6
if test "${ac_cv_header_gif_lib_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7413 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <gif_lib.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:7417: \"$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:7423: \$? = $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_gif_lib_h=yes
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_gif_lib_h=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7442: result: $ac_cv_header_gif_lib_h" >&5
echo "${ECHO_T}$ac_cv_header_gif_lib_h" >&6
if test $ac_cv_header_gif_lib_h = yes; then
echo "$as_me:7445: checking for DGifOpen in -lungif" >&5
echo $ECHO_N "checking for DGifOpen in -lungif... $ECHO_C" >&6
if test "${ac_cv_lib_ungif_DGifOpen+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2001-01-10 15:24:55 +00:00
LIBS="-lungif $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7453 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char DGifOpen ();
int
main ()
{
DGifOpen ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7472: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7475: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7478: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7481: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_ungif_DGifOpen=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_ungif_DGifOpen=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:7492: result: $ac_cv_lib_ungif_DGifOpen" >&5
echo "${ECHO_T}$ac_cv_lib_ungif_DGifOpen" >&6
if test $ac_cv_lib_ungif_DGifOpen = yes; then
1999-10-07 13:06:22 +00:00
HAVE_GIF=yes
fi
fi
fi
if test "${HAVE_GIF}" = "yes"; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_GIF 1
EOF
fi
fi
# If netdb.h doesn't declare h_errno, we must declare it by hand.
2001-10-19 12:33:10 +00:00
echo "$as_me:7511: checking whether netdb declares h_errno" >&5
echo $ECHO_N "checking whether netdb declares h_errno... $ECHO_C" >&6
if test "${emacs_cv_netdb_declares_h_errno+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7517 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <netdb.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
return h_errno;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7529: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7532: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7535: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7538: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
emacs_cv_netdb_declares_h_errno=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_netdb_declares_h_errno=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7548: result: $emacs_cv_netdb_declares_h_errno" >&5
echo "${ECHO_T}$emacs_cv_netdb_declares_h_errno" >&6
1999-10-07 13:06:22 +00:00
if test $emacs_cv_netdb_declares_h_errno = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_H_ERRNO 1
EOF
fi
# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
# for constant arguments. Useless!
2001-10-19 12:33:10 +00:00
echo "$as_me:7559: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7565 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <alloca.h>
2001-10-19 12:33:10 +00:00
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:7577: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7580: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7583: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7586: \$? = $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:7596: 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
1999-10-07 13:06:22 +00:00
#define HAVE_ALLOCA_H 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7606: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7612 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#ifdef __GNUC__
# define alloca __builtin_alloca
#else
2000-01-05 22:56:49 +00:00
# ifdef _MSC_VER
# include <malloc.h>
# define alloca _alloca
1999-10-07 13:06:22 +00:00
# else
2000-01-05 22:56:49 +00:00
# if HAVE_ALLOCA_H
# include <alloca.h>
1999-12-04 19:59:54 +00:00
# else
2000-01-05 22:56:49 +00:00
# ifdef _AIX
#pragma alloca
# else
# ifndef alloca /* predefined by HP cc +Olibcalls */
1999-10-07 13:06:22 +00:00
char *alloca ();
2000-01-05 22:56:49 +00:00
# endif
1999-10-07 13:06:22 +00:00
# endif
# endif
# endif
#endif
2001-10-19 12:33:10 +00:00
int
main ()
{
char *p = (char *) alloca (1);
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7644: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7647: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7650: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7653: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
ac_cv_func_alloca_works=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_alloca_works=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7663: result: $ac_cv_func_alloca_works" >&5
echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
1999-10-07 13:06:22 +00:00
if test $ac_cv_func_alloca_works = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_ALLOCA 1
EOF
2001-10-19 12:33:10 +00:00
else
1999-10-07 13:06:22 +00:00
# The SVR3 libPW and SVR4 libucb both contain incompatible functions
2001-10-19 12:33:10 +00:00
# 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
1999-10-07 13:06:22 +00:00
#define C_ALLOCA 1
EOF
2001-10-19 12:33:10 +00:00
echo "$as_me:7684: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7690 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#if defined(CRAY) && ! defined(CRAY2)
webecray
#else
wenotbecray
#endif
2001-10-19 12:33:10 +00:00
_ACEOF
1999-10-07 13:06:22 +00:00
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
2001-10-19 12:33:10 +00:00
echo "$as_me:7708: result: $ac_cv_os_cray" >&5
echo "${ECHO_T}$ac_cv_os_cray" >&6
1999-10-07 13:06:22 +00:00
if test $ac_cv_os_cray = yes; then
2001-10-19 12:33:10 +00:00
for ac_func in _getb67 GETB67 getb67; do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:7713: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7719 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char $ac_func (); below. */
1999-10-07 13:06:22 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
1999-10-07 13:06:22 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7750: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7753: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7756: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7759: \$? = $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:7769: 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
1999-10-07 13:06:22 +00:00
#define CRAY_STACKSEG_END $ac_func
EOF
2001-10-19 12:33:10 +00:00
break
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
done
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7783: 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
1999-10-07 13:06:22 +00:00
else
if test "$cross_compiling" = yes; then
ac_cv_c_stack_direction=0
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7792 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
int
1999-10-07 13:06:22 +00:00
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;
}
2001-10-19 12:33:10 +00:00
int
1999-10-07 13:06:22 +00:00
main ()
{
2001-10-19 12:33:10 +00:00
exit (find_stack_direction () < 0);
1999-10-07 13:06:22 +00:00
}
2001-10-19 12:33:10 +00:00
_ACEOF
rm -f conftest$ac_exeext
if { (eval echo "$as_me:7815: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7818: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
{ (eval echo "$as_me:7820: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7823: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
ac_cv_c_stack_direction=1
else
2001-10-19 12:33:10 +00:00
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_c_stack_direction=-1
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7835: result: $ac_cv_c_stack_direction" >&5
echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
1999-10-07 13:06:22 +00:00
#define STACK_DIRECTION $ac_cv_c_stack_direction
EOF
fi
# fmod, logb, and frexp are found in -lm on most systems.
# On HPUX 9.01, -lm does not contain logb, so check for sqrt.
2001-10-19 12:33:10 +00:00
echo "$as_me:7847: checking for sqrt in -lm" >&5
echo $ECHO_N "checking for sqrt in -lm... $ECHO_C" >&6
if test "${ac_cv_lib_m_sqrt+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-10-07 13:06:22 +00:00
LIBS="-lm $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7855 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char sqrt ();
int
main ()
{
sqrt ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7874: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7877: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7880: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7883: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_m_sqrt=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_m_sqrt=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:7894: result: $ac_cv_lib_m_sqrt" >&5
echo "${ECHO_T}$ac_cv_lib_m_sqrt" >&6
if test $ac_cv_lib_m_sqrt = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBM 1
1999-10-07 13:06:22 +00:00
EOF
LIBS="-lm $LIBS"
fi
# Check for mail-locking functions in a "mail" library
2001-10-19 12:33:10 +00:00
echo "$as_me:7907: checking for maillock in -lmail" >&5
echo $ECHO_N "checking for maillock in -lmail... $ECHO_C" >&6
if test "${ac_cv_lib_mail_maillock+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-10-07 13:06:22 +00:00
LIBS="-lmail $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7915 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char maillock ();
int
main ()
{
maillock ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7934: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7937: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7940: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:7943: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_mail_maillock=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_mail_maillock=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:7954: result: $ac_cv_lib_mail_maillock" >&5
echo "${ECHO_T}$ac_cv_lib_mail_maillock" >&6
if test $ac_cv_lib_mail_maillock = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBMAIL 1
1999-10-07 13:06:22 +00:00
EOF
LIBS="-lmail $LIBS"
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:7965: checking for maillock in -llockfile" >&5
echo $ECHO_N "checking for maillock in -llockfile... $ECHO_C" >&6
if test "${ac_cv_lib_lockfile_maillock+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-10-07 13:06:22 +00:00
LIBS="-llockfile $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 7973 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char maillock ();
int
main ()
{
maillock ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:7992: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:7995: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:7998: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8001: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_lockfile_maillock=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_lockfile_maillock=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:8012: result: $ac_cv_lib_lockfile_maillock" >&5
echo "${ECHO_T}$ac_cv_lib_lockfile_maillock" >&6
if test $ac_cv_lib_lockfile_maillock = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBLOCKFILE 1
1999-10-07 13:06:22 +00:00
EOF
LIBS="-llockfile $LIBS"
fi
# If we have the shared liblockfile, assume we must use it for mail
# locking (e.g. Debian). If we couldn't link against liblockfile
# (no liblockfile.a installed), ensure that we don't need to.
if test "$ac_cv_lib_lockfile_maillock" = no; then
# Extract the first word of "liblockfile.so", so it can be a program name with args.
set dummy liblockfile.so; ac_word=$2
2001-10-19 12:33:10 +00:00
echo "$as_me:8029: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
if test "${ac_cv_prog_liblockfile+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
if test -n "$liblockfile"; then
ac_cv_prog_liblockfile="$liblockfile" # Let the user override the test.
else
2001-10-19 12:33:10 +00:00
ac_save_IFS=$IFS; IFS=$ac_path_separator
ac_dummy="/usr/lib:/lib:/usr/local/lib:$LD_LIBRARY_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_liblockfile="yes"
echo "$as_me:8044: found $ac_dir/$ac_word" >&5
break
done
1999-10-07 13:06:22 +00:00
test -z "$ac_cv_prog_liblockfile" && ac_cv_prog_liblockfile="no"
fi
fi
2001-10-19 12:33:10 +00:00
liblockfile=$ac_cv_prog_liblockfile
1999-10-07 13:06:22 +00:00
if test -n "$liblockfile"; then
2001-10-19 12:33:10 +00:00
echo "$as_me:8053: result: $liblockfile" >&5
echo "${ECHO_T}$liblockfile" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me:8056: result: no" >&5
echo "${ECHO_T}no" >&6
1999-10-07 13:06:22 +00:00
fi
if test $ac_cv_prog_liblockfile = yes; then
2001-10-19 12:33:10 +00:00
{ { echo "$as_me:8061: error: Shared liblockfile found but can't link against it.
This probably means that movemail could lose mail.
There may be a \`development' package to install containing liblockfile." >&5
echo "$as_me: error: Shared liblockfile found but can't link against it.
1999-10-07 13:06:22 +00:00
This probably means that movemail could lose mail.
2001-10-19 12:33:10 +00:00
There may be a \`development' package to install containing liblockfile." >&2;}
{ (exit 1); exit 1; }; }
else cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define LIBMAIL -llockfile
EOF
fi
else :
fi
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
for ac_func in touchlock
do
2001-10-19 12:33:10 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8079: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 8085 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char $ac_func (); below. */
1999-10-07 13:06:22 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
1999-10-07 13:06:22 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8116: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8119: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8122: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8125: \$? = $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:8135: 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
1999-10-07 13:06:22 +00:00
EOF
fi
done
2001-10-19 12:33:10 +00:00
for ac_header in maillock.h
1999-10-07 13:06:22 +00:00
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:8148: 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 8154 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:8158: \"$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:8164: \$? = $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
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:8183: 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
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
fi
done
2000-06-23 15:43:44 +00:00
for ac_func in gethostname getdomainname dup2 \
1999-10-07 13:06:22 +00:00
rename closedir mkdir rmdir sysinfo \
random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \
strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \
2000-06-19 10:59:57 +00:00
utimes setrlimit setpgid getcwd getwd shutdown strftime getaddrinfo \
2000-11-07 18:13:46 +00:00
__fpending mblen mbrlen strsignal setitimer ualarm index rindex \
gai_strerror mkstemp
1999-10-07 13:06:22 +00:00
do
2001-10-19 12:33:10 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8202: 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
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 8208 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char $ac_func (); below. */
1999-10-07 13:06:22 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
1999-10-07 13:06:22 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8239: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8242: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8245: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8248: \$? = $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:8258: 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
1999-10-07 13:06:22 +00:00
EOF
fi
done
2001-10-19 12:33:10 +00:00
for ac_header in sys/time.h unistd.h
2000-04-16 14:54:52 +00:00
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:8271: 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 8277 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:8281: \"$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:8287: \$? = $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
2000-04-16 14:54:52 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
2000-04-16 14:54:52 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
2000-04-16 14:54:52 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:8306: 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
2000-04-16 14:54:52 +00:00
EOF
2001-10-19 12:33:10 +00:00
2000-04-16 14:54:52 +00:00
fi
done
for ac_func in alarm
do
2001-10-19 12:33:10 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8319: 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
2000-04-16 14:54:52 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 8325 "configure"
2000-04-16 14:54:52 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char $ac_func (); below. */
2000-04-16 14:54:52 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-04-16 14:54:52 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
2000-04-16 14:54:52 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-04-16 14:54:52 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
2000-04-16 14:54:52 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8356: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8359: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8362: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8365: \$? = $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:8375: 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
2000-04-16 14:54:52 +00:00
EOF
fi
done
2001-10-19 12:33:10 +00:00
echo "$as_me:8385: 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
2000-04-16 14:54:52 +00:00
else
if test "$cross_compiling" = yes; then
ac_cv_func_working_mktime=no
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 8394 "configure"
2000-04-16 14:54:52 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* Test program from Paul Eggert and Tony Leneis. */
2000-04-16 14:54:52 +00:00
#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 ()
{
2001-10-19 12:33:10 +00:00
/* glibc (up to about 1998-10-07) failed this test. */
2000-04-16 14:54:52 +00:00
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);
}
2001-10-19 12:33:10 +00:00
_ACEOF
rm -f conftest$ac_exeext
if { (eval echo "$as_me:8543: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8546: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
{ (eval echo "$as_me:8548: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8551: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-04-16 14:54:52 +00:00
ac_cv_func_working_mktime=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_working_mktime=no
2000-04-16 14:54:52 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2000-04-16 14:54:52 +00:00
fi
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:8563: result: $ac_cv_func_working_mktime" >&5
echo "${ECHO_T}$ac_cv_func_working_mktime" >&6
2000-04-16 14:54:52 +00:00
if test $ac_cv_func_working_mktime = no; then
2001-10-19 12:33:10 +00:00
LIBOBJS="$LIBOBJS mktime.$ac_objext"
2000-04-16 14:54:52 +00:00
fi
if test "$ac_cv_func_working_mktime" = no; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-04-16 14:54:52 +00:00
#define BROKEN_MKTIME 1
EOF
fi
2000-06-21 14:26:56 +00:00
ac_have_func=no # yes means we've found a way to get the load average.
2001-10-19 12:33:10 +00:00
ac_save_LIBS=$LIBS
# Check for getloadavg, but be sure not to touch the cache variable.
(echo "$as_me:8581: checking for getloadavg" >&5
echo $ECHO_N "checking for getloadavg... $ECHO_C" >&6
if test "${ac_cv_func_getloadavg+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 8587 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getloadavg (); below. */
#include <assert.h>
2000-06-21 14:26:56 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-06-21 14:26:56 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char getloadavg ();
char (*f) ();
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
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_getloadavg) || defined (__stub___getloadavg)
choke me
#else
f = getloadavg;
#endif
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8618: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8621: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8624: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8627: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_getloadavg=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_getloadavg=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
echo "$as_me:8637: result: $ac_cv_func_getloadavg" >&5
echo "${ECHO_T}$ac_cv_func_getloadavg" >&6
if test $ac_cv_func_getloadavg = yes; then
exit 0
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
exit 1
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
) && ac_have_func=yes
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
# On HPUX9, an unprivileged user can get load averages through this function.
for ac_func in pstat_getdynamic
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:8651: 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
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 8657 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
#include <assert.h>
2000-06-21 14:26:56 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-06-21 14:26:56 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
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
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8688: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8691: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8694: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8697: \$? = $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:8707: 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
2000-06-21 14:26:56 +00:00
EOF
fi
2001-10-19 12:33:10 +00:00
done
# Solaris has libkstat which does not require root.
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
echo "$as_me:8719: checking for kstat_open in -lkstat" >&5
echo $ECHO_N "checking for kstat_open in -lkstat... $ECHO_C" >&6
if test "${ac_cv_lib_kstat_kstat_open+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-lkstat $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#line 8727 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
2000-06-21 14:26:56 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-06-21 14:26:56 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char kstat_open ();
int
main ()
{
kstat_open ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8746: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8749: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8752: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8755: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_kstat_kstat_open=yes
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_kstat_kstat_open=no
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:8766: result: $ac_cv_lib_kstat_kstat_open" >&5
echo "${ECHO_T}$ac_cv_lib_kstat_kstat_open" >&6
if test $ac_cv_lib_kstat_kstat_open = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBKSTAT 1
EOF
LIBS="-lkstat $LIBS"
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
test $ac_cv_lib_kstat_kstat_open = yes && ac_have_func=yes
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
# Some systems with -lutil have (and need) -lkvm as well, some do not.
# On Solaris, -lkvm requires nlist from -lelf, so check that first
# to get the right answer into the cache.
# For kstat on solaris, we need libelf to force the definition of SVR4 below.
2000-06-21 14:26:56 +00:00
if test $ac_have_func = no; then
2001-10-19 12:33:10 +00:00
echo "$as_me:8784: checking for elf_begin in -lelf" >&5
echo $ECHO_N "checking for elf_begin in -lelf... $ECHO_C" >&6
if test "${ac_cv_lib_elf_elf_begin+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lelf $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#line 8792 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
2000-06-21 14:26:56 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-06-21 14:26:56 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char elf_begin ();
int
main ()
{
elf_begin ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8811: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8814: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8817: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8820: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_elf_elf_begin=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_elf_elf_begin=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:8831: result: $ac_cv_lib_elf_elf_begin" >&5
echo "${ECHO_T}$ac_cv_lib_elf_elf_begin" >&6
if test $ac_cv_lib_elf_elf_begin = yes; then
LIBS="-lelf $LIBS"
2000-06-21 14:26:56 +00:00
fi
fi
2001-10-19 12:33:10 +00:00
if test $ac_have_func = no; then
echo "$as_me:8839: checking for kvm_open in -lkvm" >&5
echo $ECHO_N "checking for kvm_open in -lkvm... $ECHO_C" >&6
if test "${ac_cv_lib_kvm_kvm_open+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-lkvm $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#line 8847 "configure"
#include "confdefs.h"
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char kvm_open ();
int
main ()
{
kvm_open ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8866: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8869: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8872: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8875: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_kvm_kvm_open=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_kvm_kvm_open=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:8886: result: $ac_cv_lib_kvm_kvm_open" >&5
echo "${ECHO_T}$ac_cv_lib_kvm_kvm_open" >&6
if test $ac_cv_lib_kvm_kvm_open = yes; then
LIBS="-lkvm $LIBS"
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
# Check for the 4.4BSD definition of getloadavg.
echo "$as_me:8893: checking for getloadavg in -lutil" >&5
echo $ECHO_N "checking for getloadavg in -lutil... $ECHO_C" >&6
if test "${ac_cv_lib_util_getloadavg+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-lutil $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#line 8901 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
2000-06-21 14:26:56 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#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 getloadavg ();
int
main ()
{
getloadavg ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8920: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8923: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8926: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8929: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_util_getloadavg=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_util_getloadavg=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:8940: result: $ac_cv_lib_util_getloadavg" >&5
echo "${ECHO_T}$ac_cv_lib_util_getloadavg" >&6
if test $ac_cv_lib_util_getloadavg = yes; then
LIBS="-lutil $LIBS" ac_have_func=yes ac_cv_func_getloadavg_setgid=yes
fi
fi
if test $ac_have_func = no; then
# There is a commonly available library for RS/6000 AIX.
# Since it is not a standard part of AIX, it might be installed locally.
ac_getloadavg_LIBS=$LIBS
LIBS="-L/usr/local/lib $LIBS"
echo "$as_me:8953: checking for getloadavg in -lgetloadavg" >&5
echo $ECHO_N "checking for getloadavg in -lgetloadavg... $ECHO_C" >&6
if test "${ac_cv_lib_getloadavg_getloadavg+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lgetloadavg $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#line 8961 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#ifdef __cplusplus
extern "C"
#endif
2000-06-21 14:26:56 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char getloadavg ();
int
main ()
{
getloadavg ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:8980: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:8983: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:8986: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:8989: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_getloadavg_getloadavg=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_getloadavg_getloadavg=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:9000: result: $ac_cv_lib_getloadavg_getloadavg" >&5
echo "${ECHO_T}$ac_cv_lib_getloadavg_getloadavg" >&6
if test $ac_cv_lib_getloadavg_getloadavg = yes; then
LIBS="-lgetloadavg $LIBS"
else
LIBS=$ac_getloadavg_LIBS
fi
fi
# Make sure it is really in the library, if we think we found it,
# otherwise set up the replacement function.
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
for ac_func in getloadavg
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9016: 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 9022 "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) ();
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-06-21 14:26:56 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
2000-06-21 14:26:56 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:9053: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:9056: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:9059: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9062: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
eval "$as_ac_var=no"
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:9072: 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
2000-06-21 14:26:56 +00:00
EOF
2001-10-19 12:33:10 +00:00
else
LIBOBJS="$LIBOBJS getloadavg.$ac_objext"
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
#define C_GETLOADAVG 1
2000-06-21 14:26:56 +00:00
EOF
2001-10-19 12:33:10 +00:00
# Figure out what our getloadavg.c needs.
ac_have_func=no
echo "$as_me:9088: checking for sys/dg_sys_info.h" >&5
echo $ECHO_N "checking for sys/dg_sys_info.h... $ECHO_C" >&6
if test "${ac_cv_header_sys_dg_sys_info_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9094 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
#include <sys/dg_sys_info.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:9098: \"$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:9104: \$? = $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_sys_dg_sys_info_h=yes
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
2000-06-21 14:26:56 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_sys_dg_sys_info_h=no
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:9123: result: $ac_cv_header_sys_dg_sys_info_h" >&5
echo "${ECHO_T}$ac_cv_header_sys_dg_sys_info_h" >&6
if test $ac_cv_header_sys_dg_sys_info_h = yes; then
ac_have_func=yes
cat >>confdefs.h <<\EOF
2000-06-21 14:26:56 +00:00
#define DGUX 1
EOF
2001-10-19 12:33:10 +00:00
echo "$as_me:9132: checking for dg_sys_info in -ldgc" >&5
echo $ECHO_N "checking for dg_sys_info in -ldgc... $ECHO_C" >&6
if test "${ac_cv_lib_dgc_dg_sys_info+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
2000-06-21 14:26:56 +00:00
LIBS="-ldgc $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9140 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
2000-06-21 14:26:56 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-06-21 14:26:56 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char dg_sys_info ();
int
main ()
{
dg_sys_info ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:9159: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:9162: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:9165: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9168: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_dgc_dg_sys_info=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_dgc_dg_sys_info=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:9179: result: $ac_cv_lib_dgc_dg_sys_info" >&5
echo "${ECHO_T}$ac_cv_lib_dgc_dg_sys_info" >&6
if test $ac_cv_lib_dgc_dg_sys_info = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBDGC 1
2000-06-21 14:26:56 +00:00
EOF
2001-10-19 12:33:10 +00:00
LIBS="-ldgc $LIBS"
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
fi
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
echo "$as_me:9192: checking for locale.h" >&5
echo $ECHO_N "checking for locale.h... $ECHO_C" >&6
if test "${ac_cv_header_locale_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9198 "configure"
#include "confdefs.h"
#include <locale.h>
_ACEOF
if { (eval echo "$as_me:9202: \"$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:9208: \$? = $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
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
if test -z "$ac_cpp_err"; then
ac_cv_header_locale_h=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_header_locale_h=no
fi
rm -f conftest.err conftest.$ac_ext
fi
echo "$as_me:9227: result: $ac_cv_header_locale_h" >&5
echo "${ECHO_T}$ac_cv_header_locale_h" >&6
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
for ac_func in setlocale
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9233: 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
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9239 "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:9270: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:9273: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:9276: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9279: \$? = $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:9289: 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
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
done
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
# We cannot check for <dwarf.h>, because Solaris 2 does not use dwarf (it
# uses stabs), but it is still SVR4. We cannot check for <elf.h> because
# Irix 4.0.5F has the header but not the library.
if test $ac_have_func = no && test "$ac_cv_lib_elf_elf_begin" = yes; then
ac_have_func=yes
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-06-21 14:26:56 +00:00
#define SVR4 1
EOF
2001-10-19 12:33:10 +00:00
fi
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
if test $ac_have_func = no; then
echo "$as_me:9312: checking for inq_stats/cpustats.h" >&5
echo $ECHO_N "checking for inq_stats/cpustats.h... $ECHO_C" >&6
if test "${ac_cv_header_inq_stats_cpustats_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9318 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
#include <inq_stats/cpustats.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:9322: \"$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:9328: \$? = $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_inq_stats_cpustats_h=yes
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
2000-06-21 14:26:56 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_inq_stats_cpustats_h=no
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:9347: result: $ac_cv_header_inq_stats_cpustats_h" >&5
echo "${ECHO_T}$ac_cv_header_inq_stats_cpustats_h" >&6
if test $ac_cv_header_inq_stats_cpustats_h = yes; then
ac_have_func=yes
cat >>confdefs.h <<\EOF
2000-06-21 14:26:56 +00:00
#define UMAX 1
EOF
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-06-21 14:26:56 +00:00
#define UMAX4_3 1
EOF
fi
2001-10-19 12:33:10 +00:00
fi
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
if test $ac_have_func = no; then
echo "$as_me:9365: checking for sys/cpustats.h" >&5
echo $ECHO_N "checking for sys/cpustats.h... $ECHO_C" >&6
if test "${ac_cv_header_sys_cpustats_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9371 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
#include <sys/cpustats.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:9375: \"$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:9381: \$? = $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
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
ac_cpp_err=yes
fi
if test -z "$ac_cpp_err"; then
ac_cv_header_sys_cpustats_h=yes
else
echo "$as_me: failed program was:" >&5
2000-06-21 14:26:56 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_sys_cpustats_h=no
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:9400: result: $ac_cv_header_sys_cpustats_h" >&5
echo "${ECHO_T}$ac_cv_header_sys_cpustats_h" >&6
if test $ac_cv_header_sys_cpustats_h = yes; then
ac_have_func=yes; cat >>confdefs.h <<\EOF
2000-06-21 14:26:56 +00:00
#define UMAX 1
EOF
fi
2001-10-19 12:33:10 +00:00
fi
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
if test $ac_have_func = no; then
for ac_header in mach/mach.h
2000-06-21 14:26:56 +00:00
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:9416: 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 9422 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:9426: \"$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:9432: \$? = $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
2000-06-21 14:26:56 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:9451: 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
2000-06-21 14:26:56 +00:00
EOF
2001-10-19 12:33:10 +00:00
2000-06-21 14:26:56 +00:00
fi
done
2001-10-19 12:33:10 +00:00
fi
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
for ac_header in nlist.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:9466: 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 9472 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:9476: \"$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:9482: \$? = $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
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
ac_cpp_err=yes
fi
if test -z "$ac_cpp_err"; then
eval "$as_ac_Header=yes"
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
2000-06-21 14:26:56 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
2000-06-21 14:26:56 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:9501: 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
2000-06-21 14:26:56 +00:00
EOF
2001-10-19 12:33:10 +00:00
echo "$as_me:9507: checking for struct nlist.n_un.n_name" >&5
echo $ECHO_N "checking for struct nlist.n_un.n_name... $ECHO_C" >&6
if test "${ac_cv_member_struct_nlist_n_un_n_name+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9513 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
#include <nlist.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
static struct nlist ac_aggr;
if (ac_aggr.n_un.n_name)
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:9528: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:9531: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:9534: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9537: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_member_struct_nlist_n_un_n_name=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_member_struct_nlist_n_un_n_name=no
fi
rm -f conftest.$ac_objext conftest.$ac_ext
fi
echo "$as_me:9547: result: $ac_cv_member_struct_nlist_n_un_n_name" >&5
echo "${ECHO_T}$ac_cv_member_struct_nlist_n_un_n_name" >&6
if test $ac_cv_member_struct_nlist_n_un_n_name = yes; then
cat >>confdefs.h <<EOF
#define HAVE_STRUCT_NLIST_N_UN_N_NAME 1
EOF
cat >>confdefs.h <<\EOF
2000-06-21 14:26:56 +00:00
#define NLIST_NAME_UNION 1
EOF
fi
2001-10-19 12:33:10 +00:00
fi
done
fi
done
2000-06-21 14:26:56 +00:00
# Some definitions of getloadavg require that the program be installed setgid.
2001-10-19 12:33:10 +00:00
echo "$as_me:9568: checking whether getloadavg requires setgid" >&5
echo $ECHO_N "checking whether getloadavg requires setgid... $ECHO_C" >&6
if test "${ac_cv_func_getloadavg_setgid+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9574 "configure"
2000-06-21 14:26:56 +00:00
#include "confdefs.h"
#include "$srcdir/getloadavg.c"
#ifdef LDAV_PRIVILEGED
Yowza Am I SETGID yet
#endif
2001-10-19 12:33:10 +00:00
_ACEOF
2000-06-21 14:26:56 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "Yowza Am I SETGID yet" >/dev/null 2>&1; then
ac_cv_func_getloadavg_setgid=yes
else
ac_cv_func_getloadavg_setgid=no
fi
rm -f conftest*
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:9590: result: $ac_cv_func_getloadavg_setgid" >&5
echo "${ECHO_T}$ac_cv_func_getloadavg_setgid" >&6
2000-06-21 14:26:56 +00:00
if test $ac_cv_func_getloadavg_setgid = yes; then
2001-10-19 12:33:10 +00:00
NEED_SETGID=true
cat >>confdefs.h <<\EOF
2000-06-21 14:26:56 +00:00
#define GETLOADAVG_PRIVILEGED 1
EOF
else
NEED_SETGID=false
fi
if test $ac_cv_func_getloadavg_setgid = yes; then
2001-10-19 12:33:10 +00:00
echo "$as_me:9604: checking group of /dev/kmem" >&5
echo $ECHO_N "checking group of /dev/kmem... $ECHO_C" >&6
if test "${ac_cv_group_kmem+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-21 14:26:56 +00:00
else
2001-10-19 12:33:10 +00:00
# On Solaris, /dev/kmem is a symlink. Get info on the real file.
2000-06-21 14:26:56 +00:00
ac_ls_output=`ls -lgL /dev/kmem 2>/dev/null`
# If we got an error (system does not support symlinks), try without -L.
test -z "$ac_ls_output" && ac_ls_output=`ls -lg /dev/kmem`
ac_cv_group_kmem=`echo $ac_ls_output \
| sed -ne 's/[ ][ ]*/ /g;
s/^.[sSrwx-]* *[0-9]* *\([^0-9]*\) *.*/\1/;
/ /s/.* //;p;'`
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:9619: result: $ac_cv_group_kmem" >&5
echo "${ECHO_T}$ac_cv_group_kmem" >&6
2000-06-21 14:26:56 +00:00
KMEM_GROUP=$ac_cv_group_kmem
fi
2001-10-19 12:33:10 +00:00
if test "x$ac_save_LIBS" = x; then
GETLOADAVG_LIBS=$LIBS
else
GETLOADAVG_LIBS=`echo "$LIBS" | sed "s!$ac_save_LIBS!!"`
fi
LIBS=$ac_save_LIBS
2000-06-21 14:26:56 +00:00
2001-10-19 12:33:10 +00:00
echo "$as_me:9630: checking for _LARGEFILE_SOURCE value needed for large files" >&5
echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
if test "${ac_cv_sys_largefile_source+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-02 15:46:19 +00:00
else
2001-10-19 12:33:10 +00:00
while :; do
2000-12-11 12:15:07 +00:00
ac_cv_sys_largefile_source=no
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9638 "configure"
2000-12-11 12:15:07 +00:00
#include "confdefs.h"
#include <stdio.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-12-11 12:15:07 +00:00
return !fseeko;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:9650: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:9653: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:9656: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9659: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
break
2000-12-11 12:15:07 +00:00
else
2001-10-19 12:33:10 +00:00
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 9668 "configure"
2000-06-02 15:46:19 +00:00
#include "confdefs.h"
2000-12-11 12:15:07 +00:00
#define _LARGEFILE_SOURCE 1
#include <stdio.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-12-11 12:15:07 +00:00
return !fseeko;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:9681: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:9684: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:9687: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9690: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_sys_largefile_source=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
2000-06-02 15:46:19 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:9701: result: $ac_cv_sys_largefile_source" >&5
echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6
if test "$ac_cv_sys_largefile_source" != no; then
2000-06-02 15:46:19 +00:00
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
2000-12-11 12:15:07 +00:00
#define _LARGEFILE_SOURCE $ac_cv_sys_largefile_source
2000-06-02 15:46:19 +00:00
EOF
2000-12-11 12:15:07 +00:00
2001-10-19 12:33:10 +00:00
fi
rm -f conftest*
2000-12-11 12:15:07 +00:00
2001-10-19 12:33:10 +00:00
# We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
# in glibc 2.1.3, but that breaks too many other things.
# If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
echo "$as_me:9715: checking for fseeko" >&5
echo $ECHO_N "checking for fseeko... $ECHO_C" >&6
if test "${ac_cv_func_fseeko+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-02 15:46:19 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9721 "configure"
2000-12-11 12:15:07 +00:00
#include "confdefs.h"
#include <stdio.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-12-11 12:15:07 +00:00
return fseeko && fseeko (stdin, 0, 0);
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:9733: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:9736: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:9739: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9742: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-12-11 12:15:07 +00:00
ac_cv_func_fseeko=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_fseeko=no
2000-12-11 12:15:07 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2000-06-02 15:46:19 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:9752: result: $ac_cv_func_fseeko" >&5
echo "${ECHO_T}$ac_cv_func_fseeko" >&6
if test $ac_cv_func_fseeko = yes; then
2000-06-02 15:46:19 +00:00
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
2000-12-11 12:15:07 +00:00
#define HAVE_FSEEKO 1
EOF
2001-10-19 12:33:10 +00:00
fi
2000-06-02 15:46:19 +00:00
2000-12-11 12:15:07 +00:00
# UNIX98 PTYs.
2001-10-19 12:33:10 +00:00
2000-05-20 15:55:53 +00:00
for ac_func in grantpt
do
2001-10-19 12:33:10 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9767: 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
2000-05-20 15:55:53 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9773 "configure"
2000-05-20 15:55:53 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char $ac_func (); below. */
2000-05-20 15:55:53 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-05-20 15:55:53 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
2000-05-20 15:55:53 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-05-20 15:55:53 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
2000-05-20 15:55:53 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:9804: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:9807: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:9810: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9813: \$? = $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:9823: 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
2000-05-20 15:55:53 +00:00
EOF
fi
done
# PTY-related GNU extensions.
2001-10-19 12:33:10 +00:00
2000-05-20 15:55:53 +00:00
for ac_func in getpt
do
2001-10-19 12:33:10 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:9838: 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
2000-05-20 15:55:53 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9844 "configure"
2000-05-20 15:55:53 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char $ac_func (); below. */
2000-05-20 15:55:53 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-05-20 15:55:53 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
2000-05-20 15:55:53 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-05-20 15:55:53 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
2000-05-20 15:55:53 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:9875: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:9878: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:9881: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9884: \$? = $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:9894: 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
2000-05-20 15:55:53 +00:00
EOF
fi
done
1999-10-07 13:06:22 +00:00
# Check this now, so that we will NOT find the above functions in ncurses.
# That is because we have not set up to link ncurses in lib-src.
# It's better to believe a function is not available
# than to expect to find it in ncurses.
2001-10-19 12:33:10 +00:00
echo "$as_me:9909: checking for tparm in -lncurses" >&5
echo $ECHO_N "checking for tparm in -lncurses... $ECHO_C" >&6
if test "${ac_cv_lib_ncurses_tparm+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-10-07 13:06:22 +00:00
LIBS="-lncurses $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9917 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char tparm ();
int
main ()
{
tparm ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:9936: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:9939: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:9942: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:9945: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_ncurses_tparm=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_ncurses_tparm=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:9956: result: $ac_cv_lib_ncurses_tparm" >&5
echo "${ECHO_T}$ac_cv_lib_ncurses_tparm" >&6
if test $ac_cv_lib_ncurses_tparm = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBNCURSES 1
1999-10-07 13:06:22 +00:00
EOF
LIBS="-lncurses $LIBS"
fi
# These tell us which Kerberos-related libraries to use.
if test "${with_kerberos+set}" = set; then
2001-10-19 12:33:10 +00:00
echo "$as_me:9970: checking for com_err in -lcom_err" >&5
echo $ECHO_N "checking for com_err in -lcom_err... $ECHO_C" >&6
if test "${ac_cv_lib_com_err_com_err+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-lcom_err $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 9978 "configure"
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char com_err ();
int
main ()
{
com_err ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:9997: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:10000: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:10003: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:10006: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_com_err_com_err=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_com_err_com_err=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:10017: result: $ac_cv_lib_com_err_com_err" >&5
echo "${ECHO_T}$ac_cv_lib_com_err_com_err" >&6
if test $ac_cv_lib_com_err_com_err = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBCOM_ERR 1
EOF
LIBS="-lcom_err $LIBS"
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10028: checking for mit_des_cbc_encrypt in -lk5crypto" >&5
echo $ECHO_N "checking for mit_des_cbc_encrypt in -lk5crypto... $ECHO_C" >&6
if test "${ac_cv_lib_k5crypto_mit_des_cbc_encrypt+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-lk5crypto $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 10036 "configure"
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char mit_des_cbc_encrypt ();
int
main ()
{
mit_des_cbc_encrypt ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:10055: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:10058: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:10061: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:10064: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_k5crypto_mit_des_cbc_encrypt=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_k5crypto_mit_des_cbc_encrypt=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:10075: result: $ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&5
echo "${ECHO_T}$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&6
if test $ac_cv_lib_k5crypto_mit_des_cbc_encrypt = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBK5CRYPTO 1
EOF
LIBS="-lk5crypto $LIBS"
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10086: checking for mit_des_cbc_encrypt in -lcrypto" >&5
echo $ECHO_N "checking for mit_des_cbc_encrypt in -lcrypto... $ECHO_C" >&6
if test "${ac_cv_lib_crypto_mit_des_cbc_encrypt+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-lcrypto $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 10094 "configure"
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char mit_des_cbc_encrypt ();
int
main ()
{
mit_des_cbc_encrypt ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:10113: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:10116: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:10119: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:10122: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_crypto_mit_des_cbc_encrypt=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_crypto_mit_des_cbc_encrypt=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:10133: result: $ac_cv_lib_crypto_mit_des_cbc_encrypt" >&5
echo "${ECHO_T}$ac_cv_lib_crypto_mit_des_cbc_encrypt" >&6
if test $ac_cv_lib_crypto_mit_des_cbc_encrypt = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBCRYPTO 1
EOF
LIBS="-lcrypto $LIBS"
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10144: checking for krb5_init_context in -lkrb5" >&5
echo $ECHO_N "checking for krb5_init_context in -lkrb5... $ECHO_C" >&6
if test "${ac_cv_lib_krb5_krb5_init_context+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-lkrb5 $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 10152 "configure"
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char krb5_init_context ();
int
main ()
{
krb5_init_context ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:10171: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:10174: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:10177: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:10180: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_krb5_krb5_init_context=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_krb5_krb5_init_context=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:10191: result: $ac_cv_lib_krb5_krb5_init_context" >&5
echo "${ECHO_T}$ac_cv_lib_krb5_krb5_init_context" >&6
if test $ac_cv_lib_krb5_krb5_init_context = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBKRB5 1
EOF
LIBS="-lkrb5 $LIBS"
fi
if test "${with_kerberos5+set}" != set; then
2001-10-19 12:33:10 +00:00
echo "$as_me:10204: checking for des_cbc_encrypt in -ldes425" >&5
echo $ECHO_N "checking for des_cbc_encrypt in -ldes425... $ECHO_C" >&6
if test "${ac_cv_lib_des425_des_cbc_encrypt+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldes425 $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 10212 "configure"
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char des_cbc_encrypt ();
int
main ()
{
des_cbc_encrypt ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:10231: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:10234: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:10237: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:10240: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_des425_des_cbc_encrypt=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_des425_des_cbc_encrypt=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:10251: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5
echo "${ECHO_T}$ac_cv_lib_des425_des_cbc_encrypt" >&6
if test $ac_cv_lib_des425_des_cbc_encrypt = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBDES425 1
EOF
LIBS="-ldes425 $LIBS"
else
2001-10-19 12:33:10 +00:00
echo "$as_me:10262: checking for des_cbc_encrypt in -ldes" >&5
echo $ECHO_N "checking for des_cbc_encrypt in -ldes... $ECHO_C" >&6
if test "${ac_cv_lib_des_des_cbc_encrypt+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-ldes $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 10270 "configure"
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char des_cbc_encrypt ();
int
main ()
{
des_cbc_encrypt ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:10289: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:10292: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:10295: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:10298: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_des_des_cbc_encrypt=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_des_des_cbc_encrypt=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:10309: result: $ac_cv_lib_des_des_cbc_encrypt" >&5
echo "${ECHO_T}$ac_cv_lib_des_des_cbc_encrypt" >&6
if test $ac_cv_lib_des_des_cbc_encrypt = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBDES 1
EOF
LIBS="-ldes $LIBS"
fi
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10322: checking for krb_get_cred in -lkrb4" >&5
echo $ECHO_N "checking for krb_get_cred in -lkrb4... $ECHO_C" >&6
if test "${ac_cv_lib_krb4_krb_get_cred+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-lkrb4 $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 10330 "configure"
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char krb_get_cred ();
int
main ()
{
krb_get_cred ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:10349: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:10352: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:10355: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:10358: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_krb4_krb_get_cred=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_krb4_krb_get_cred=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:10369: result: $ac_cv_lib_krb4_krb_get_cred" >&5
echo "${ECHO_T}$ac_cv_lib_krb4_krb_get_cred" >&6
if test $ac_cv_lib_krb4_krb_get_cred = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBKRB4 1
EOF
LIBS="-lkrb4 $LIBS"
else
2001-10-19 12:33:10 +00:00
echo "$as_me:10380: checking for krb_get_cred in -lkrb" >&5
echo $ECHO_N "checking for krb_get_cred in -lkrb... $ECHO_C" >&6
if test "${ac_cv_lib_krb_krb_get_cred+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
LIBS="-lkrb $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 10388 "configure"
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char krb_get_cred ();
int
main ()
{
krb_get_cred ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:10407: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:10410: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:10413: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:10416: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_krb_krb_get_cred=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_krb_krb_get_cred=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:10427: result: $ac_cv_lib_krb_krb_get_cred" >&5
echo "${ECHO_T}$ac_cv_lib_krb_krb_get_cred" >&6
if test $ac_cv_lib_krb_krb_get_cred = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBKRB 1
EOF
LIBS="-lkrb $LIBS"
fi
fi
fi
if test "${with_kerberos5+set}" = set; then
2001-10-19 12:33:10 +00:00
for ac_header in krb5.h
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:10447: 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 10453 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:10457: \"$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:10463: \$? = $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
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10482: 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
2001-10-19 12:33:10 +00:00
fi
done
else
2001-10-19 12:33:10 +00:00
for ac_header in des.h
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:10497: 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 10503 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:10507: \"$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:10513: \$? = $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
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10532: 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
2001-10-19 12:33:10 +00:00
else
2001-10-19 12:33:10 +00:00
for ac_header in kerberosIV/des.h
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:10544: 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 10550 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:10554: \"$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:10560: \$? = $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
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10579: 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
2001-10-19 12:33:10 +00:00
else
2001-10-19 12:33:10 +00:00
for ac_header in kerberos/des.h
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:10591: 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 10597 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:10601: \"$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:10607: \$? = $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
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10626: 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
2001-10-19 12:33:10 +00:00
fi
done
fi
done
fi
done
2001-10-19 12:33:10 +00:00
for ac_header in krb.h
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:10645: 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 10651 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:10655: \"$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:10661: \$? = $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
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10680: 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
2001-10-19 12:33:10 +00:00
else
2001-10-19 12:33:10 +00:00
for ac_header in kerberosIV/krb.h
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:10692: 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 10698 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:10702: \"$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:10708: \$? = $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
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10727: 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
2001-10-19 12:33:10 +00:00
else
2001-10-19 12:33:10 +00:00
for ac_header in kerberos/krb.h
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:10739: 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 10745 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:10749: \"$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:10755: \$? = $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
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10774: 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
2001-10-19 12:33:10 +00:00
fi
done
fi
done
fi
done
fi
2001-10-19 12:33:10 +00:00
for ac_header in com_err.h
do
2001-10-19 12:33:10 +00:00
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:10795: 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 10801 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:10805: \"$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:10811: \$? = $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
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10830: 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
2001-10-19 12:33:10 +00:00
fi
done
fi
1999-10-07 13:06:22 +00:00
# Solaris requires -lintl if you want strerror (which calls dgettext)
# to return localized messages.
2001-10-19 12:33:10 +00:00
echo "$as_me:10845: checking for dgettext in -lintl" >&5
echo $ECHO_N "checking for dgettext in -lintl... $ECHO_C" >&6
if test "${ac_cv_lib_intl_dgettext+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
ac_check_lib_save_LIBS=$LIBS
1999-10-07 13:06:22 +00:00
LIBS="-lintl $LIBS"
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 10853 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
1999-10-07 13:06:22 +00:00
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char dgettext ();
int
main ()
{
dgettext ();
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:10872: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:10875: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:10878: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:10881: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_lib_intl_dgettext=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_lib_intl_dgettext=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
echo "$as_me:10892: result: $ac_cv_lib_intl_dgettext" >&5
echo "${ECHO_T}$ac_cv_lib_intl_dgettext" >&6
if test $ac_cv_lib_intl_dgettext = yes; then
cat >>confdefs.h <<EOF
#define HAVE_LIBINTL 1
1999-10-07 13:06:22 +00:00
EOF
LIBS="-lintl $LIBS"
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10903: checking whether localtime caches TZ" >&5
echo $ECHO_N "checking whether localtime caches TZ... $ECHO_C" >&6
if test "${emacs_cv_localtime_cache+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
if test x$ac_cv_func_tzset = xyes; then
if test "$cross_compiling" = yes; then
# If we have tzset, assume the worst when cross-compiling.
emacs_cv_localtime_cache=yes
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 10914 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <time.h>
extern char **environ;
unset_TZ ()
{
char **from, **to;
for (to = from = environ; (*to = *from); from++)
if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
to++;
}
char TZ_GMT0[] = "TZ=GMT0";
char TZ_PST8[] = "TZ=PST8";
main()
{
time_t now = time ((time_t *) 0);
int hour_GMT0, hour_unset;
if (putenv (TZ_GMT0) != 0)
exit (1);
hour_GMT0 = localtime (&now)->tm_hour;
unset_TZ ();
hour_unset = localtime (&now)->tm_hour;
if (putenv (TZ_PST8) != 0)
exit (1);
if (localtime (&now)->tm_hour == hour_GMT0)
exit (1);
unset_TZ ();
if (localtime (&now)->tm_hour != hour_unset)
exit (1);
exit (0);
}
2001-10-19 12:33:10 +00:00
_ACEOF
rm -f conftest$ac_exeext
if { (eval echo "$as_me:10947: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:10950: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
{ (eval echo "$as_me:10952: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:10955: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
emacs_cv_localtime_cache=no
else
2001-10-19 12:33:10 +00:00
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_localtime_cache=yes
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
else
# If we lack tzset, report that localtime does not cache TZ,
# since we can't invalidate the cache if we don't have tzset.
emacs_cv_localtime_cache=no
fi
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:10972: result: $emacs_cv_localtime_cache" >&5
echo "${ECHO_T}$emacs_cv_localtime_cache" >&6
1999-10-07 13:06:22 +00:00
if test $emacs_cv_localtime_cache = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define LOCALTIME_CACHE 1
EOF
fi
if test "x$HAVE_TIMEVAL" = xyes; then
2001-10-19 12:33:10 +00:00
for ac_func in gettimeofday
2000-06-23 15:43:44 +00:00
do
2001-10-19 12:33:10 +00:00
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:10986: 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
2000-06-23 15:43:44 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 10992 "configure"
2000-06-23 15:43:44 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char $ac_func (); below. */
2000-06-23 15:43:44 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-06-23 15:43:44 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
2000-06-23 15:43:44 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-06-23 15:43:44 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
2000-06-23 15:43:44 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:11023: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:11026: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (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
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:11042: 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
2000-06-23 15:43:44 +00:00
EOF
fi
done
2001-10-19 12:33:10 +00:00
echo "$as_me:11052: checking whether gettimeofday can accept two arguments" >&5
echo $ECHO_N "checking whether gettimeofday can accept two arguments... $ECHO_C" >&6
if test "${emacs_cv_gettimeofday_two_arguments+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11058 "configure"
2000-06-19 10:59:57 +00:00
#include "confdefs.h"
1999-10-07 13:06:22 +00:00
2000-06-19 10:59:57 +00:00
#ifdef TIME_WITH_SYS_TIME
#include <sys/time.h>
#include <time.h>
#else
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#endif
#endif
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-06-19 10:59:57 +00:00
struct timeval time;
2000-06-23 15:43:44 +00:00
gettimeofday (&time, 0);
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:11081: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:11084: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:11087: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:11090: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
1999-10-07 13:06:22 +00:00
emacs_cv_gettimeofday_two_arguments=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_gettimeofday_two_arguments=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:11100: result: $emacs_cv_gettimeofday_two_arguments" >&5
echo "${ECHO_T}$emacs_cv_gettimeofday_two_arguments" >&6
1999-10-07 13:06:22 +00:00
if test $emacs_cv_gettimeofday_two_arguments = no; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define GETTIMEOFDAY_ONE_ARGUMENT 1
EOF
fi
fi
2000-06-23 15:43:44 +00:00
if test "$ac_cv_func_gettimeofday" = yes; then
2001-10-19 12:33:10 +00:00
echo "$as_me:11111: checking for struct timezone" >&5
echo $ECHO_N "checking for struct timezone... $ECHO_C" >&6
if test "${emacs_cv_struct_timezone+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-06-23 15:43:44 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11117 "configure"
2000-06-23 15:43:44 +00:00
#include "confdefs.h"
#include <sys/time.h>
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-06-23 15:43:44 +00:00
struct timezone tz;
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:11129: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:11132: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:11135: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:11138: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-06-23 15:43:44 +00:00
if test "$cross_compiling" = yes; then
emacs_cv_struct_timezone=yes
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11144 "configure"
2000-06-23 15:43:44 +00:00
#include "confdefs.h"
#ifdef TIME_WITH_SYS_TIME
#include <sys/time.h>
#include <time.h>
#else
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#endif
#endif
main () {
struct timeval time;
struct timezone dummy;
exit (gettimeofday (&time, &dummy));
}
2001-10-19 12:33:10 +00:00
_ACEOF
rm -f conftest$ac_exeext
if { (eval echo "$as_me:11164: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:11167: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
{ (eval echo "$as_me:11169: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:11172: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-06-23 15:43:44 +00:00
emacs_cv_struct_timezone=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_struct_timezone=no
2000-06-23 15:43:44 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2000-06-23 15:43:44 +00:00
fi
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
emacs_cv_struct_timezone=no
2000-06-23 15:43:44 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2000-06-23 15:43:44 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:11190: result: $emacs_cv_struct_timezone" >&5
echo "${ECHO_T}$emacs_cv_struct_timezone" >&6
2000-06-23 15:43:44 +00:00
fi
1999-10-07 13:06:22 +00:00
ok_so_far=yes
2001-10-19 12:33:10 +00:00
echo "$as_me:11195: checking for socket" >&5
echo $ECHO_N "checking for socket... $ECHO_C" >&6
if test "${ac_cv_func_socket+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11201 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char socket (); below. */
1999-10-07 13:06:22 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
1999-10-07 13:06:22 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char socket ();
char (*f) ();
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
1999-10-07 13:06:22 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_socket) || defined (__stub___socket)
choke me
#else
2001-10-19 12:33:10 +00:00
f = socket;
1999-10-07 13:06:22 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:11232: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:11235: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:11238: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:11241: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_socket=yes
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_socket=no
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
echo "$as_me:11251: result: $ac_cv_func_socket" >&5
echo "${ECHO_T}$ac_cv_func_socket" >&6
if test $ac_cv_func_socket = yes; then
1999-10-07 13:06:22 +00:00
:
else
2001-10-19 12:33:10 +00:00
ok_so_far=no
1999-10-07 13:06:22 +00:00
fi
if test $ok_so_far = yes; then
2001-10-19 12:33:10 +00:00
echo "$as_me:11260: checking for netinet/in.h" >&5
echo $ECHO_N "checking for netinet/in.h... $ECHO_C" >&6
if test "${ac_cv_header_netinet_in_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11266 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <netinet/in.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:11270: \"$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:11276: \$? = $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_netinet_in_h=yes
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_netinet_in_h=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:11295: result: $ac_cv_header_netinet_in_h" >&5
echo "${ECHO_T}$ac_cv_header_netinet_in_h" >&6
if test $ac_cv_header_netinet_in_h = yes; then
1999-10-07 13:06:22 +00:00
:
else
2001-10-19 12:33:10 +00:00
ok_so_far=no
1999-10-07 13:06:22 +00:00
fi
fi
if test $ok_so_far = yes; then
2001-10-19 12:33:10 +00:00
echo "$as_me:11305: checking for arpa/inet.h" >&5
echo $ECHO_N "checking for arpa/inet.h... $ECHO_C" >&6
if test "${ac_cv_header_arpa_inet_h+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11311 "configure"
1999-10-07 13:06:22 +00:00
#include "confdefs.h"
#include <arpa/inet.h>
2001-10-19 12:33:10 +00:00
_ACEOF
if { (eval echo "$as_me:11315: \"$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:11321: \$? = $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_arpa_inet_h=yes
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
1999-10-07 13:06:22 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
ac_cv_header_arpa_inet_h=no
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:11340: result: $ac_cv_header_arpa_inet_h" >&5
echo "${ECHO_T}$ac_cv_header_arpa_inet_h" >&6
if test $ac_cv_header_arpa_inet_h = yes; then
1999-10-07 13:06:22 +00:00
:
else
2001-10-19 12:33:10 +00:00
ok_so_far=no
1999-10-07 13:06:22 +00:00
fi
fi
if test $ok_so_far = yes; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_INET_SOCKETS 1
EOF
fi
if test -f /usr/lpp/X11/bin/smt.exp; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_AIX_SMT_EXP 1
EOF
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:11363: checking whether system supports dynamic ptys" >&5
echo $ECHO_N "checking whether system supports dynamic ptys... $ECHO_C" >&6
1999-11-08 16:26:25 +00:00
if test -d /dev/pts && ls -d /dev/ptmx > /dev/null 2>&1 ; then
2001-10-19 12:33:10 +00:00
echo "$as_me:11366: result: yes" >&5
echo "${ECHO_T}yes" >&6
cat >>confdefs.h <<\EOF
1999-11-08 16:26:25 +00:00
#define HAVE_DEV_PTMX 1
EOF
else
2001-10-19 12:33:10 +00:00
echo "$as_me:11373: result: no" >&5
echo "${ECHO_T}no" >&6
1999-11-08 16:26:25 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:11377: 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
2000-02-12 16:37:27 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11383 "configure"
2000-02-12 16:37:27 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
$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:11398: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:11401: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:11404: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:11407: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-02-12 16:37:27 +00:00
ac_cv_type_pid_t=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_pid_t=no
2000-02-12 16:37:27 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2000-02-12 16:37:27 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:11417: 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
2000-02-12 16:37:27 +00:00
#define pid_t int
EOF
fi
2001-10-19 12:33:10 +00:00
for ac_header in unistd.h vfork.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
echo "$as_me:11432: 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 11438 "configure"
#include "confdefs.h"
#include <$ac_header>
_ACEOF
if { (eval echo "$as_me:11442: \"$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:11448: \$? = $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
2000-02-12 16:37:27 +00:00
else
2001-10-19 12:33:10 +00:00
ac_cpp_err=yes
fi
if test -z "$ac_cpp_err"; then
eval "$as_ac_Header=yes"
2000-02-12 16:37:27 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
2000-02-12 16:37:27 +00:00
cat conftest.$ac_ext >&5
2001-10-19 12:33:10 +00:00
eval "$as_ac_Header=no"
2000-02-12 16:37:27 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.err conftest.$ac_ext
2000-02-12 16:37:27 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:11467: 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
2000-02-12 16:37:27 +00:00
EOF
2000-09-06 21:42:35 +00:00
fi
2001-10-19 12:33:10 +00:00
done
2000-09-06 21:42:35 +00:00
2001-10-19 12:33:10 +00:00
for ac_func in fork vfork
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:11480: 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
2000-09-06 12:22:09 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11486 "configure"
2000-09-06 12:22:09 +00:00
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
2001-10-19 12:33:10 +00:00
which can conflict with char $ac_func (); below. */
2000-09-06 12:22:09 +00:00
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
2001-10-19 12:33:10 +00:00
#ifdef __cplusplus
extern "C"
#endif
2000-09-06 12:22:09 +00:00
/* We use char because int might match the return type of a gcc2
2001-10-19 12:33:10 +00:00
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
2000-09-06 12:22:09 +00:00
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-09-06 12:22:09 +00:00
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
2001-10-19 12:33:10 +00:00
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
2000-09-06 12:22:09 +00:00
choke me
#else
2001-10-19 12:33:10 +00:00
f = $ac_func;
2000-09-06 12:22:09 +00:00
#endif
2001-10-19 12:33:10 +00:00
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:11517: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:11520: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:11523: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:11526: \$? = $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:11536: 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
2000-09-06 12:22:09 +00:00
EOF
2001-10-19 12:33:10 +00:00
2000-09-06 12:22:09 +00:00
fi
2001-10-19 12:33:10 +00:00
done
2000-09-06 12:22:09 +00:00
2001-10-19 12:33:10 +00:00
ac_cv_func_fork_works=$ac_cv_func_fork
if test "x$ac_cv_func_fork" = xyes; then
echo "$as_me:11548: checking for working fork" >&5
echo $ECHO_N "checking for working fork... $ECHO_C" >&6
if test "${ac_cv_func_fork_works+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
2000-09-06 12:22:09 +00:00
else
2001-10-19 12:33:10 +00:00
if test "$cross_compiling" = yes; then
ac_cv_func_fork_works=cross
else
cat >conftest.$ac_ext <<_ACEOF
/* By R<>diger Kuhlmann. */
#include <sys/types.h>
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
/* Some systems only have a dummy stub for fork() */
int main ()
{
if (fork() < 0)
exit (1);
exit (0);
}
_ACEOF
rm -f conftest$ac_exeext
if { (eval echo "$as_me:11571: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:11574: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
{ (eval echo "$as_me:11576: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:11579: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ac_cv_func_fork_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_fork_works=no
fi
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
echo "$as_me:11591: result: $ac_cv_func_fork_works" >&5
echo "${ECHO_T}$ac_cv_func_fork_works" >&6
fi
if test "x$ac_cv_func_fork_works" = xcross; then
case $host in
*-*-amigaos* | *-*-msdosdjgpp*)
# Override, as these systems have only a dummy fork() stub
ac_cv_func_fork_works=no
;;
*)
ac_cv_func_fork_works=yes
;;
esac
{ echo "$as_me:11605: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;}
2000-09-06 12:22:09 +00:00
fi
2000-09-06 21:42:35 +00:00
ac_cv_func_vfork_works=$ac_cv_func_vfork
2001-10-19 12:33:10 +00:00
if test "x$ac_cv_func_vfork" = xyes; then
echo "$as_me:11610: checking for working vfork" >&5
echo $ECHO_N "checking for working vfork... $ECHO_C" >&6
if test "${ac_cv_func_vfork_works+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
if test "$cross_compiling" = yes; then
ac_cv_func_vfork_works=cross
2000-09-06 12:22:09 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11619 "configure"
2000-09-06 12:22:09 +00:00
#include "confdefs.h"
2000-09-06 21:42:35 +00:00
/* Thanks to Paul Eggert for this test. */
#include <stdio.h>
2000-09-06 12:22:09 +00:00
#include <sys/types.h>
2000-09-06 21:42:35 +00:00
#include <sys/stat.h>
2001-10-19 12:33:10 +00:00
#if HAVE_UNISTD_H
# include <unistd.h>
2000-09-06 21:42:35 +00:00
#endif
2001-10-19 12:33:10 +00:00
#if HAVE_VFORK_H
# include <vfork.h>
2000-09-06 21:42:35 +00:00
#endif
/* On some sparc systems, changes by the child to local and incoming
2001-10-19 12:33:10 +00:00
argument registers are propagated back to the parent. The compiler
is told about this with #include <vfork.h>, but some compilers
(e.g. gcc -O) don't grok <vfork.h>. Test for this by using a
static variable whose address is put into a register that is
clobbered by the vfork. */
2000-09-06 21:42:35 +00:00
static
2000-09-06 12:22:09 +00:00
#ifdef __cplusplus
2000-09-06 21:42:35 +00:00
sparc_address_test (int arg)
2001-10-19 12:33:10 +00:00
# else
2000-09-06 21:42:35 +00:00
sparc_address_test (arg) int arg;
2000-09-06 12:22:09 +00:00
#endif
{
2000-09-06 21:42:35 +00:00
static pid_t child;
if (!child) {
child = vfork ();
if (child < 0) {
perror ("vfork");
_exit(2);
}
if (!child) {
arg = getpid();
write(-1, "", 0);
_exit (arg);
}
}
}
2001-10-19 12:33:10 +00:00
int
main ()
{
2000-09-06 21:42:35 +00:00
pid_t parent = getpid ();
pid_t child;
2000-09-06 12:22:09 +00:00
2000-09-06 21:42:35 +00:00
sparc_address_test ();
2000-09-06 12:22:09 +00:00
2000-09-06 21:42:35 +00:00
child = vfork ();
2000-09-06 12:22:09 +00:00
2000-09-06 21:42:35 +00:00
if (child == 0) {
2001-10-19 12:33:10 +00:00
/* Here is another test for sparc vfork register problems. This
test uses lots of local variables, at least as many local
variables as main has allocated so far including compiler
temporaries. 4 locals are enough for gcc 1.40.3 on a Solaris
4.1.3 sparc, but we use 8 to be safe. A buggy compiler should
reuse the register of parent for one of the local variables,
since it will think that parent can't possibly be used any more
in this routine. Assigning to the local variable will thus
munge parent in the parent process. */
2000-09-06 21:42:35 +00:00
pid_t
p = getpid(), p1 = getpid(), p2 = getpid(), p3 = getpid(),
p4 = getpid(), p5 = getpid(), p6 = getpid(), p7 = getpid();
/* Convince the compiler that p..p7 are live; otherwise, it might
use the same hardware register for all 8 local variables. */
if (p != p1 || p != p2 || p != p3 || p != p4
|| p != p5 || p != p6 || p != p7)
_exit(1);
2000-09-06 12:22:09 +00:00
2001-10-19 12:33:10 +00:00
/* On some systems (e.g. IRIX 3.3), vfork doesn't separate parent
from child file descriptors. If the child closes a descriptor
before it execs or exits, this munges the parent's descriptor
as well. Test for this by closing stdout in the child. */
2000-09-06 21:42:35 +00:00
_exit(close(fileno(stdout)) != 0);
} else {
int status;
struct stat st;
while (wait(&status) != child)
;
exit(
/* Was there some problem with vforking? */
child < 0
/* Did the child fail? (This shouldn't happen.) */
|| status
/* Did the vfork/compiler bug occur? */
|| parent != getpid()
2000-09-06 12:22:09 +00:00
2000-09-06 21:42:35 +00:00
/* Did the file descriptor bug occur? */
|| fstat(fileno(stdout), &st) != 0
);
}
}
2001-10-19 12:33:10 +00:00
_ACEOF
rm -f conftest$ac_exeext
if { (eval echo "$as_me:11716: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:11719: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
{ (eval echo "$as_me:11721: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:11724: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-09-06 21:42:35 +00:00
ac_cv_func_vfork_works=yes
2000-09-06 12:22:09 +00:00
else
2001-10-19 12:33:10 +00:00
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_func_vfork_works=no
fi
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2000-09-06 12:22:09 +00:00
fi
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:11736: result: $ac_cv_func_vfork_works" >&5
echo "${ECHO_T}$ac_cv_func_vfork_works" >&6
2000-09-06 12:22:09 +00:00
2001-10-19 12:33:10 +00:00
fi;
if test "x$ac_cv_func_fork_works" = xcross; then
ac_cv_func_vfork_works=ac_cv_func_vfork
{ echo "$as_me:11742: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;}
2000-09-06 12:22:09 +00:00
fi
2001-10-19 12:33:10 +00:00
if test "x$ac_cv_func_vfork_works" = xyes; then
cat >>confdefs.h <<\EOF
#define HAVE_WORKING_VFORK 1
EOF
else
cat >>confdefs.h <<\EOF
2000-09-06 21:42:35 +00:00
#define vfork fork
2000-09-06 12:22:09 +00:00
EOF
fi
2001-10-19 12:33:10 +00:00
if test "x$ac_cv_func_fork_works" = xyes; then
cat >>confdefs.h <<\EOF
#define HAVE_WORKING_FORK 1
EOF
2000-09-06 12:22:09 +00:00
2001-10-19 12:33:10 +00:00
fi
2000-02-12 16:37:27 +00:00
2000-07-24 09:45:16 +00:00
# Fixme: This should be replaced when we have autoconf 2.14.
2001-10-19 12:33:10 +00:00
echo "$as_me:11768: 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
2000-07-24 09:45:16 +00:00
else
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11774 "configure"
2000-07-24 09:45:16 +00:00
#include "confdefs.h"
2001-10-19 12:33:10 +00:00
$ac_includes_default
int
main ()
{
if ((size_t *) 0)
return 0;
if (sizeof (size_t))
return 0;
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext
if { (eval echo "$as_me:11789: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
echo "$as_me:11792: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest.$ac_objext'
{ (eval echo "$as_me:11795: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:11798: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
2000-07-24 09:45:16 +00:00
ac_cv_type_size_t=yes
else
2001-10-19 12:33:10 +00:00
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
ac_cv_type_size_t=no
2000-07-24 09:45:16 +00:00
fi
2001-10-19 12:33:10 +00:00
rm -f conftest.$ac_objext conftest.$ac_ext
2000-07-24 09:45:16 +00:00
fi
2001-10-19 12:33:10 +00:00
echo "$as_me:11808: 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
2000-07-24 09:45:16 +00:00
#define size_t unsigned
EOF
fi
1999-10-07 13:06:22 +00:00
# Set up the CFLAGS for real compilation, so we can substitute it.
CFLAGS="$REAL_CFLAGS"
CPPFLAGS="$REAL_CPPFLAGS"
1999-10-07 13:06:22 +00:00
#### Find out which version of Emacs this is.
version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
| sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
if test x"${version}" = x; then
2001-10-19 12:33:10 +00:00
{ { echo "$as_me:11828: error: can't find current emacs version in \`${srcdir}/lisp/version.el'." >&5
echo "$as_me: error: can't find current emacs version in \`${srcdir}/lisp/version.el'." >&2;}
{ (exit 1); exit 1; }; }
1999-10-07 13:06:22 +00:00
fi
### Specify what sort of things we'll be editing into Makefile and config.h.
### Use configuration here uncanonicalized to avoid exceeding size limits.
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
1999-10-07 13:06:22 +00:00
#define EMACS_CONFIGURATION "${canonical}"
EOF
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
1999-10-07 13:06:22 +00:00
#define EMACS_CONFIG_OPTIONS "${ac_configure_args}"
EOF
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
1999-10-07 13:06:22 +00:00
#define config_machfile "${machfile}"
EOF
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
1999-10-07 13:06:22 +00:00
#define config_opsysfile "${opsysfile}"
EOF
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
1999-10-07 13:06:22 +00:00
#define LD_SWITCH_X_SITE ${LD_SWITCH_X_SITE}
EOF
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
1999-10-07 13:06:22 +00:00
#define LD_SWITCH_X_SITE_AUX ${LD_SWITCH_X_SITE_AUX}
EOF
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
1999-10-07 13:06:22 +00:00
#define C_SWITCH_X_SITE ${C_SWITCH_X_SITE}
EOF
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<EOF
1999-10-07 13:06:22 +00:00
#define UNEXEC_SRC ${UNEXEC_SRC}
EOF
if test "${HAVE_X_WINDOWS}" = "yes" ; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_X_WINDOWS 1
EOF
fi
if test "${USE_X_TOOLKIT}" != "none" ; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define USE_X_TOOLKIT 1
EOF
fi
if test "${HAVE_X11}" = "yes" ; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_X11 1
EOF
fi
if test "${HAVE_XFREE386}" = "yes" ; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_XFREE386 1
EOF
fi
if test "${HAVE_MENUS}" = "yes" ; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define HAVE_MENUS 1
EOF
fi
if test "${GNU_MALLOC}" = "yes" ; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define GNU_MALLOC 1
EOF
fi
if test "${REL_ALLOC}" = "yes" ; then
2001-10-19 12:33:10 +00:00
cat >>confdefs.h <<\EOF
1999-10-07 13:06:22 +00:00
#define REL_ALLOC 1
EOF
fi
#### Report on what we decided to do.
echo "
Configured for \`${canonical}'.
Where should the build process find the source code? ${srcdir}
What operating system and machine description files should Emacs use?
\`${opsysfile}' and \`${machfile}'
What compiler should emacs be built with? ${CC} ${CFLAGS}
Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason}
2000-09-06 21:42:35 +00:00
Should Emacs use a relocating allocator for buffers? ${REL_ALLOC}
2000-09-14 15:15:16 +00:00
Should Emacs use mmap(2) for buffer allocation? $use_mmap_for_buffers
1999-10-07 13:06:22 +00:00
What window system should Emacs use? ${window_system}
What toolkit should Emacs use? ${USE_X_TOOLKIT}"
if test -n "${x_includes}"; then
echo " Where do we find X Windows header files? ${x_includes}"
else
echo " Where do we find X Windows header files? Standard dirs"
fi
if test -n "${x_libraries}"; then
echo " Where do we find X Windows libraries? ${x_libraries}"
else
echo " Where do we find X Windows libraries? Standard dirs"
fi
echo " Does Emacs use -lXaw3d? ${HAVE_XAW3D}"
echo " Does Emacs use -lXpm? ${HAVE_XPM}"
echo " Does Emacs use -ljpeg? ${HAVE_JPEG}"
echo " Does Emacs use -ltiff? ${HAVE_TIFF}"
echo " Does Emacs use -lungif? ${HAVE_GIF}"
echo " Does Emacs use -lpng? ${HAVE_PNG}"
echo " Does Emacs use X toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}"
echo
# Remove any trailing slashes in these variables.
test "${prefix}" != NONE &&
prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'`
test "${exec_prefix}" != NONE &&
exec_prefix=`echo "${exec_prefix}" | sed 's,\([^/]\)/*$,\1,'`
2001-02-23 13:32:13 +00:00
## Check if the C preprocessor will convert `..' to `. .'. If so, set
## CPP_NEED_TRADITIONAL to `yes' so that the code to generate Makefile
## from Makefile.c can correctly provide the arg `-traditional' to the
## C preprocessor.
2001-10-19 12:33:10 +00:00
cat >conftest.$ac_ext <<_ACEOF
#line 11957 "configure"
2001-02-23 13:32:13 +00:00
#include "confdefs.h"
yes..yes
2001-10-19 12:33:10 +00:00
_ACEOF
2001-02-23 13:32:13 +00:00
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
egrep "yes..yes" >/dev/null 2>&1; then
CPP_NEED_TRADITIONAL=no
else
CPP_NEED_TRADITIONAL=yes
fi
rm -f conftest*
2001-10-19 12:33:10 +00:00
ac_config_files="$ac_config_files Makefile lib-src/Makefile.c:lib-src/Makefile.in oldXMenu/Makefile man/Makefile lwlib/Makefile src/Makefile.c:src/Makefile.in lisp/Makefile leim/Makefile"
ac_config_commands="$ac_config_commands default"
cat >confcache <<\_ACEOF
1999-10-07 13:06:22 +00:00
# This file is a shell script that caches the results of configure
# tests run on this system so they can be shared between configure
2001-10-19 12:33:10 +00:00
# scripts and configure runs, see configure's option --config-cache.
# It is not useful on other systems. If it contains results you don't
# want to keep, you may remove or edit it.
1999-10-07 13:06:22 +00:00
#
2001-10-19 12:33:10 +00:00
# config.status only pays attention to the cache file if you give it
# the --recheck option to rerun configure.
1999-10-07 13:06:22 +00:00
#
2001-10-19 12:33:10 +00:00
# `ac_cv_env_foo' variables (set or unset) will be overriden when
# loading this file, other *unset* `ac_cv_foo' will be assigned the
# following values.
_ACEOF
1999-10-07 13:06:22 +00:00
# The following way of writing the cache mishandles newlines in values,
# but we know of no workaround that is simple, portable, and efficient.
# So, don't put newlines in cache variables' values.
# Ultrix sh set writes to stderr and can't be redirected directly,
# and sets the high bit in the cache file unless we assign to the vars.
2001-10-19 12:33:10 +00:00
{
(set) 2>&1 |
case `(ac_space=' '; set | grep ac_space) 2>&1` in
*ac_space=\ *)
# `set' does not quote correctly, so add quotes (double-quote
# substitution turns \\\\ into \\, and sed turns \\ into \).
sed -n \
"s/'/'\\\\''/g;
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
1999-10-07 13:06:22 +00:00
if test -w $cache_file; then
2001-10-19 12:33:10 +00:00
test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
cat confcache >$cache_file
1999-10-07 13:06:22 +00:00
else
echo "not updating unwritable cache $cache_file"
fi
fi
rm -f confcache
test "x$prefix" = xNONE && prefix=$ac_default_prefix
# Let make expand exec_prefix.
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
2001-10-19 12:33:10 +00:00
# VPATH may cause trouble with some makes, so we remove $(srcdir),
# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
# trailing colons and then remove the whole line if VPATH becomes empty
# (actually we leave an empty line to preserve line numbers).
1999-10-07 13:06:22 +00:00
if test "x$srcdir" = x.; then
2001-10-19 12:33:10 +00:00
ac_vpsub='/^[ ]*VPATH[ ]*=/{
s/:*\$(srcdir):*/:/;
s/:*\${srcdir}:*/:/;
s/:*@srcdir@:*/:/;
s/^\([^=]*=[ ]*\):*/\1/;
s/:*$//;
s/^[^=]*=[ ]*$//;
}'
1999-10-07 13:06:22 +00:00
fi
DEFS=-DHAVE_CONFIG_H
: ${CONFIG_STATUS=./config.status}
2001-10-19 12:33:10 +00:00
ac_clean_files_save=$ac_clean_files
ac_clean_files="$ac_clean_files $CONFIG_STATUS"
{ echo "$as_me:12050: creating $CONFIG_STATUS" >&5
echo "$as_me: creating $CONFIG_STATUS" >&6;}
cat >$CONFIG_STATUS <<_ACEOF
#! $SHELL
1999-10-07 13:06:22 +00:00
# Generated automatically by configure.
# Run this file to recreate the current configuration.
# Compiler output produced by configure, useful for debugging
2001-10-19 12:33:10 +00:00
# configure, is in config.log if it exists.
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
debug=false
SHELL=\${CONFIG_SHELL-$SHELL}
ac_cs_invocation="\$0 \$@"
_ACEOF
cat >>$CONFIG_STATUS <<\_ACEOF
# Be Bourne compatible
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
emulate sh
NULLCMD=:
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
set -o posix
fi
# Name of the executable.
as_me=`echo "$0" |sed 's,.*[\\/],,'`
if expr a : '\(a\)' >/dev/null 2>&1; then
as_expr=expr
else
as_expr=false
fi
rm -f conf$$ conf$$.exe conf$$.file
echo >conf$$.file
if ln -s conf$$.file conf$$ 2>/dev/null; then
# We could just check for DJGPP; but this test a) works b) is more generic
# and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
if test -f conf$$.exe; then
# Don't use ln at all; we don't have any links
as_ln_s='cp -p'
else
as_ln_s='ln -s'
fi
elif ln conf$$.file conf$$ 2>/dev/null; then
as_ln_s=ln
else
as_ln_s='cp -p'
fi
rm -f conf$$ conf$$.exe conf$$.file
as_executable_p="test -f"
# Support unset when possible.
if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
as_unset=unset
else
as_unset=false
fi
# NLS nuisances.
$as_unset LANG || test "${LANG+set}" != set || { LANG=C; export LANG; }
$as_unset LC_ALL || test "${LC_ALL+set}" != set || { LC_ALL=C; export LC_ALL; }
$as_unset LC_TIME || test "${LC_TIME+set}" != set || { LC_TIME=C; export LC_TIME; }
$as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set || { LC_CTYPE=C; export LC_CTYPE; }
$as_unset LANGUAGE || test "${LANGUAGE+set}" != set || { LANGUAGE=C; export LANGUAGE; }
$as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set || { LC_COLLATE=C; export LC_COLLATE; }
$as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set || { LC_NUMERIC=C; export LC_NUMERIC; }
$as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set || { LC_MESSAGES=C; export LC_MESSAGES; }
# IFS
# We need space, tab and new line, in precisely that order.
as_nl='
'
IFS=" $as_nl"
# CDPATH.
$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }
exec 6>&1
_ACEOF
# Files that config.status was made for.
if test -n "$ac_config_files"; then
echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
fi
if test -n "$ac_config_headers"; then
echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
fi
if test -n "$ac_config_links"; then
echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
fi
if test -n "$ac_config_commands"; then
echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
fi
cat >>$CONFIG_STATUS <<\EOF
ac_cs_usage="\
\`$as_me' instantiates files from templates according to the
current configuration.
Usage: $0 [OPTIONS] [FILE]...
-h, --help print this help, then exit
-V, --version print version number, then exit
-d, --debug don't remove temporary files
--recheck update $as_me by reconfiguring in the same conditions
--file=FILE[:TEMPLATE]
instantiate the configuration file FILE
--header=FILE[:TEMPLATE]
instantiate the configuration header FILE
Configuration files:
$config_files
Configuration headers:
$config_headers
Configuration commands:
$config_commands
Report bugs to <bug-autoconf@gnu.org>."
EOF
cat >>$CONFIG_STATUS <<EOF
ac_cs_version="\\
config.status
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
1999-10-07 13:06:22 +00:00
do
2001-10-19 12:33:10 +00:00
case $1 in
--*=*)
ac_option=`expr "x$1" : 'x\([^=]*\)='`
ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
shift
set dummy "$ac_option" "$ac_optarg" ${1+"$@"}
shift
;;
-*);;
*) # This is not an option, so the user has probably given explicit
# arguments.
ac_need_defaults=false;;
esac
case $1 in
# Handling of the options.
EOF
cat >>$CONFIG_STATUS <<EOF
1999-10-07 13:06:22 +00:00
-recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
2001-10-19 12:33:10 +00:00
echo "running $SHELL $0 " $ac_configure_args " --no-create --no-recursion"
exec $SHELL $0 $ac_configure_args --no-create --no-recursion ;;
EOF
cat >>$CONFIG_STATUS <<\EOF
--version | --vers* | -V )
echo "$ac_cs_version"; exit 0 ;;
--he | --h)
# Conflict between --help and --header
{ { echo "$as_me:12226: 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:12245: 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" ;;
1999-10-07 13:06:22 +00:00
esac
2001-10-19 12:33:10 +00:00
shift
1999-10-07 13:06:22 +00:00
done
2001-10-19 12:33:10 +00:00
exec 5>>config.log
cat >&5 << _ACEOF
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
## ----------------------- ##
## Running config.status. ##
## ----------------------- ##
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
This file was extended by $as_me 2.52, executed with
CONFIG_FILES = $CONFIG_FILES
CONFIG_HEADERS = $CONFIG_HEADERS
CONFIG_LINKS = $CONFIG_LINKS
CONFIG_COMMANDS = $CONFIG_COMMANDS
> $ac_cs_invocation
on `(hostname || uname -n) 2>/dev/null | sed 1q`
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
_ACEOF
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
cat >>$CONFIG_STATUS <<EOF
#
# INIT-COMMANDS section.
#
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
GCC="$GCC" NON_GNU_CPP="$NON_GNU_CPP" CPP="$CPP" CPP_NEED_TRADITIONAL="$CPP_NEED_TRADITIONAL" CPPFLAGS="$CPPFLAGS"
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" ;;
"lib-src/Makefile.c" ) CONFIG_FILES="$CONFIG_FILES lib-src/Makefile.c:lib-src/Makefile.in" ;;
"oldXMenu/Makefile" ) CONFIG_FILES="$CONFIG_FILES oldXMenu/Makefile" ;;
"man/Makefile" ) CONFIG_FILES="$CONFIG_FILES man/Makefile" ;;
"lwlib/Makefile" ) CONFIG_FILES="$CONFIG_FILES lwlib/Makefile" ;;
"src/Makefile.c" ) CONFIG_FILES="$CONFIG_FILES src/Makefile.c:src/Makefile.in" ;;
"lisp/Makefile" ) CONFIG_FILES="$CONFIG_FILES lisp/Makefile" ;;
"leim/Makefile" ) CONFIG_FILES="$CONFIG_FILES leim/Makefile" ;;
"default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
"src/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS src/config.h:src/config.in" ;;
*) { { echo "$as_me:12299: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
{ (exit 1); exit 1; }; };;
esac
1999-10-07 13:06:22 +00:00
done
2001-10-19 12:33:10 +00:00
# If the user did not use the arguments to specify the items to instantiate,
# then the envvar interface is used. Set only those that are not.
# We use the long form for the default assignment because of an extremely
# bizarre bug on SunOS 4.1.3.
if $ac_need_defaults; then
test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
# 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,@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,@LN_S@,$LN_S,;t t
s,@CPP@,$CPP,;t t
s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
s,@INSTALL_DATA@,$INSTALL_DATA,;t t
s,@YACC@,$YACC,;t t
s,@RANLIB@,$RANLIB,;t t
s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
s,@LIBSOUND@,$LIBSOUND,;t t
s,@SET_MAKE@,$SET_MAKE,;t t
s,@ALLOCA@,$ALLOCA,;t t
s,@liblockfile@,$liblockfile,;t t
s,@LIBOBJS@,$LIBOBJS,;t t
s,@NEED_SETGID@,$NEED_SETGID,;t t
s,@KMEM_GROUP@,$KMEM_GROUP,;t t
s,@GETLOADAVG_LIBS@,$GETLOADAVG_LIBS,;t t
s,@version@,$version,;t t
s,@configuration@,$configuration,;t t
s,@canonical@,$canonical,;t t
s,@srcdir@,$srcdir,;t t
s,@lispdir@,$lispdir,;t t
s,@locallisppath@,$locallisppath,;t t
s,@lisppath@,$lisppath,;t t
s,@x_default_search_path@,$x_default_search_path,;t t
s,@etcdir@,$etcdir,;t t
s,@archlibdir@,$archlibdir,;t t
s,@docdir@,$docdir,;t t
s,@bitmapdir@,$bitmapdir,;t t
s,@c_switch_system@,$c_switch_system,;t t
s,@c_switch_machine@,$c_switch_machine,;t t
s,@LD_SWITCH_X_SITE@,$LD_SWITCH_X_SITE,;t t
s,@LD_SWITCH_X_SITE_AUX@,$LD_SWITCH_X_SITE_AUX,;t t
s,@C_SWITCH_X_SITE@,$C_SWITCH_X_SITE,;t t
s,@X_TOOLKIT_TYPE@,$X_TOOLKIT_TYPE,;t t
s,@machfile@,$machfile,;t t
s,@opsysfile@,$opsysfile,;t t
CEOF
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
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"
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
cat >>$CONFIG_STATUS <<\EOF
for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
1999-10-07 13:06:22 +00:00
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
2001-10-19 12:33:10 +00:00
case $ac_file in
- | *:- | *:-:* ) # input from stdin
cat >$tmp/stdin
ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
* ) ac_file_in=$ac_file.in ;;
1999-10-07 13:06:22 +00:00
esac
2001-10-19 12:33:10 +00:00
# Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X"$ac_file" : 'X\(//\)[^/]' \| \
X"$ac_file" : 'X\(//\)$' \| \
X"$ac_file" : 'X\(/\)' \| \
. : '\(.\)' 2>/dev/null ||
echo X"$ac_file" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
/^X\(\/\/\)$/{ s//\1/; q; }
/^X\(\/\).*/{ s//\1/; q; }
s/.*/./; q'`
1999-10-07 13:06:22 +00:00
if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
2001-10-19 12:33:10 +00:00
{ case "$ac_dir" in
[\\/]* | ?:[\\/]* ) as_incr_dir=;;
*) as_incr_dir=.;;
esac
as_dummy="$ac_dir"
for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
case $as_mkdir_dir in
# Skip DOS drivespec
?:) as_incr_dir=$as_mkdir_dir ;;
*)
as_incr_dir=$as_incr_dir/$as_mkdir_dir
test -d "$as_incr_dir" || mkdir "$as_incr_dir"
;;
esac
done; }
ac_dir_suffix="/`echo $ac_dir|sed 's,^\./,,'`"
1999-10-07 13:06:22 +00:00
# A "../" for each directory in $ac_dir_suffix.
2001-10-19 12:33:10 +00:00
ac_dots=`echo "$ac_dir_suffix" | sed 's,/[^/]*,../,g'`
1999-10-07 13:06:22 +00:00
else
ac_dir_suffix= ac_dots=
fi
2001-10-19 12:33:10 +00:00
case $srcdir in
.) ac_srcdir=.
if test -z "$ac_dots"; then
ac_top_srcdir=.
else
ac_top_srcdir=`echo $ac_dots | sed 's,/$,,'`
fi ;;
[\\/]* | ?:[\\/]* )
ac_srcdir=$srcdir$ac_dir_suffix;
ac_top_srcdir=$srcdir ;;
1999-10-07 13:06:22 +00:00
*) # Relative path.
2001-10-19 12:33:10 +00:00
ac_srcdir=$ac_dots$srcdir$ac_dir_suffix
ac_top_srcdir=$ac_dots$srcdir ;;
1999-10-07 13:06:22 +00:00
esac
2001-10-19 12:33:10 +00:00
case $INSTALL in
[\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
*) ac_INSTALL=$ac_dots$INSTALL ;;
1999-10-07 13:06:22 +00:00
esac
2001-10-19 12:33:10 +00:00
if test x"$ac_file" != x-; then
{ echo "$as_me:12546: 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:12564: 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:12577: 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
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
#
# CONFIG_HEADER section.
#
1999-10-07 13:06:22 +00:00
# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
# NAME is the cpp macro being defined and VALUE is the value it is being given.
#
# ac_d sets the value in "#define NAME VALUE" lines.
2001-10-19 12:33:10 +00:00
ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
ac_dB='[ ].*$,\1#\2'
ac_dC=' '
ac_dD=',;t'
# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
ac_uB='$,\1#\2define\3'
1999-10-07 13:06:22 +00:00
ac_uC=' '
2001-10-19 12:33:10 +00:00
ac_uD=',;t'
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
1999-10-07 13:06:22 +00:00
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
2001-10-19 12:33:10 +00:00
case $ac_file in
- | *:- | *:-:* ) # input from stdin
cat >$tmp/stdin
ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
* ) ac_file_in=$ac_file.in ;;
1999-10-07 13:06:22 +00:00
esac
2001-10-19 12:33:10 +00:00
test x"$ac_file" != x- && { echo "$as_me:12638: 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:12649: 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:12662: 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
1999-10-07 13:06:22 +00:00
# This sed command replaces #undef with comments. This is necessary, for
# example, in the case of _POSIX_SOURCE, which is predefined and required
# on some systems where configure will not decide to define it.
2001-10-19 12:33:10 +00:00
cat >>conftest.undefs <<\EOF
s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
# Break up conftest.defines because some shells have a limit on the size
# of here documents, and old seds have small limits too (100 cmds).
echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
echo ' if egrep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
echo ' :' >>$CONFIG_STATUS
rm -f conftest.tail
while grep . conftest.defines >/dev/null
do
# Write a limited-size here document to $tmp/defines.sed.
echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
# Speed up: don't consider the non `#define' lines.
echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
# Work around the forget-to-reset-the-flag bug.
echo 't clr' >>$CONFIG_STATUS
echo ': clr' >>$CONFIG_STATUS
sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
echo 'CEOF
sed -f $tmp/defines.sed $tmp/in >$tmp/out
rm -f $tmp/in
mv $tmp/out $tmp/in
' >>$CONFIG_STATUS
sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
rm -f conftest.defines
mv conftest.tail conftest.defines
done
rm -f conftest.defines
echo ' fi # egrep' >>$CONFIG_STATUS
echo >>$CONFIG_STATUS
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
# Break up conftest.undefs because some shells have a limit on the size
# of here documents, and old seds have small limits too (100 cmds).
echo ' # Handle all the #undef templates' >>$CONFIG_STATUS
1999-10-07 13:06:22 +00:00
rm -f conftest.tail
2001-10-19 12:33:10 +00:00
while grep . conftest.undefs >/dev/null
1999-10-07 13:06:22 +00:00
do
2001-10-19 12:33:10 +00:00
# Write a limited-size here document to $tmp/undefs.sed.
echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
# Speed up: don't consider the non `#undef'
echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
# Work around the forget-to-reset-the-flag bug.
echo 't clr' >>$CONFIG_STATUS
echo ': clr' >>$CONFIG_STATUS
sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
1999-10-07 13:06:22 +00:00
echo 'CEOF
2001-10-19 12:33:10 +00:00
sed -f $tmp/undefs.sed $tmp/in >$tmp/out
rm -f $tmp/in
mv $tmp/out $tmp/in
' >>$CONFIG_STATUS
sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
rm -f conftest.undefs
mv conftest.tail conftest.undefs
1999-10-07 13:06:22 +00:00
done
2001-10-19 12:33:10 +00:00
rm -f conftest.undefs
cat >>$CONFIG_STATUS <<\EOF
# Let's still pretend it is `configure' which instantiates (i.e., don't
# use $as_me), people would be surprised to read:
# /* config.h. Generated automatically by config.status. */
if test x"$ac_file" = x-; then
echo "/* Generated automatically by configure. */" >$tmp/config.h
1999-10-07 13:06:22 +00:00
else
2001-10-19 12:33:10 +00:00
echo "/* $ac_file. Generated automatically by configure. */" >$tmp/config.h
fi
cat $tmp/in >>$tmp/config.h
rm -f $tmp/in
if test x"$ac_file" != x-; then
if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
{ echo "$as_me:12779: $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'`
1999-10-07 13:06:22 +00:00
if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
2001-10-19 12:33:10 +00:00
{ case "$ac_dir" in
[\\/]* | ?:[\\/]* ) as_incr_dir=;;
*) as_incr_dir=.;;
esac
as_dummy="$ac_dir"
for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
case $as_mkdir_dir in
# Skip DOS drivespec
?:) as_incr_dir=$as_mkdir_dir ;;
*)
as_incr_dir=$as_incr_dir/$as_mkdir_dir
test -d "$as_incr_dir" || mkdir "$as_incr_dir"
;;
esac
done; }
fi
rm -f $ac_file
mv $tmp/config.h $ac_file
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
else
cat $tmp/config.h
rm -f $tmp/config.h
1999-10-07 13:06:22 +00:00
fi
2001-10-19 12:33:10 +00:00
done
1999-10-07 13:06:22 +00:00
EOF
2001-10-19 12:33:10 +00:00
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,[^:]*:,,'`
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
case $ac_dest in
default )
1999-10-07 13:06:22 +00:00
### Make the necessary directories, if they don't exist.
for dir in etc lisp ; do
test -d ${dir} || mkdir ${dir}
done
# Build src/Makefile from ${srcdir}/src/Makefile.c
# and lib-src/Makefile from ${srcdir}/lib-src/Makefile.c
# This must be done after src/config.h is built, since we rely on that file.
# Now get this: Some word that is part of the ${srcdir} directory name
# or the ${configuration} value might, just might, happen to be an
# identifier like `sun4' or `i386' or something, and be predefined by
# the C preprocessor to some helpful value like 1, or maybe the empty
# string. Needless to say consequent macro substitutions are less
# than conducive to the makefile finding the correct directory.
undefs="`echo $top_srcdir $configuration $canonical |
sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/^/ /' -e 's/ *$//' \
-e 's/ */ -U/g' -e 's/-U[0-9][^ ]*//g' \
`"
echo creating src/epaths.h
make epaths-force
2000-11-20 19:17:00 +00:00
# As of 2000-11-19, newest development versions of GNU cpp preprocess
# `..' to `. .' unless invoked with -traditional
2001-02-23 13:32:13 +00:00
if test "x$GCC" = xyes && test "x$CPP_NEED_TRADITIONAL" = xyes; then
2000-11-20 19:17:00 +00:00
CPPFLAGS="$CPPFLAGS -traditional"
fi
1999-10-07 13:06:22 +00:00
echo creating lib-src/Makefile
( cd lib-src
rm -f junk.c junk1.c junk2.c
sed -e '/start of cpp stuff/q' \
< Makefile.c > junk1.c
sed -e '1,/start of cpp stuff/d'\
2001-09-11 08:31:16 +00:00
-e 's,/\*\*/#\(.*\)$,/* \1 */,' \
1999-10-07 13:06:22 +00:00
< Makefile.c > junk.c
2001-10-19 12:33:10 +00:00
$CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \
1999-10-07 13:06:22 +00:00
sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c
cat junk1.c junk2.c > Makefile.new
rm -f junk.c junk1.c junk2.c
chmod 444 Makefile.new
mv -f Makefile.new Makefile
)
echo creating src/Makefile
( cd src
rm -f junk.c junk1.c junk2.c
sed -e '/start of cpp stuff/q' \
< Makefile.c > junk1.c
sed -e '1,/start of cpp stuff/d'\
2001-09-11 08:31:16 +00:00
-e 's,/\*\*/#\(.*\)$,/* \1 */,' \
1999-10-07 13:06:22 +00:00
< Makefile.c > junk.c
2001-10-19 12:33:10 +00:00
$CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \
1999-10-07 13:06:22 +00:00
sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c
cat junk1.c junk2.c > Makefile.new
rm -f junk.c junk1.c junk2.c
chmod 444 Makefile.new
mv -f Makefile.new Makefile
)
2001-10-19 12:33:10 +00:00
if test ! -f src/.gdbinit && test -f $srcdir/src/.gdbinit; then
1999-10-07 13:06:22 +00:00
echo creating src/.gdbinit
2001-10-19 12:33:10 +00:00
echo source $srcdir/src/.gdbinit > src/.gdbinit
1999-10-07 13:06:22 +00:00
fi
# This is how we know whether to re-run configure in certain cases.
touch src/config.stamp
2001-10-19 12:33:10 +00:00
;;
esac
done
EOF
cat >>$CONFIG_STATUS <<\EOF
1999-10-07 13:06:22 +00:00
2001-10-19 12:33:10 +00:00
{ (exit 0); exit 0; }
1999-10-07 13:06:22 +00:00
EOF
chmod +x $CONFIG_STATUS
2001-10-19 12:33:10 +00:00
ac_clean_files=$ac_clean_files_save
# configure is writing to config.log, and then calls config.status.
# config.status does its own redirection, appending to config.log.
# Unfortunately, on DOS this fails, as config.log is still kept open
# by configure, so config.status won't be able to write to it; its
# output is simply discarded. So we exec the FD to /dev/null,
# effectively closing config.log, so it can be properly (re)opened and
# appended to by config.status. When coming back to configure, we
# need to make the FD available again.
if test "$no_create" != yes; then
ac_cs_success=:
exec 5>/dev/null
$SHELL $CONFIG_STATUS || ac_cs_success=false
exec 5>>config.log
# Use ||, not &&, to avoid exiting from the if with $? = 1, which
# would make configure fail if this is the last instruction.
$ac_cs_success || { (exit 1); exit 1; }
fi
2000-11-21 12:50:59 +00:00