mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-17 14:01:27 +08:00
* acgeneral.m4 (_AC_INIT_PREPARE, _AC_INIT_PARSE_ARGS): Move more
initializations to... (_AC_INIT_DEFAULTS): here.
This commit is contained in:
parent
bb03a37786
commit
a420def412
@ -1,3 +1,9 @@
|
||||
2000-03-21 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* acgeneral.m4 (_AC_INIT_PREPARE, _AC_INIT_PARSE_ARGS): Move more
|
||||
initializations to...
|
||||
(_AC_INIT_DEFAULTS): here.
|
||||
|
||||
2000-03-21 Akim Demaille <akim@epita.fr>
|
||||
|
||||
Give a means to compute `srcdir' earlier in configure.
|
||||
|
98
acgeneral.m4
98
acgeneral.m4
@ -738,9 +738,56 @@ define(AC_PREREQ,
|
||||
AC_DEFUN(_AC_INIT_DEFAULTS,
|
||||
[AC_DIVERT_PUSH([DEFAULTS])dnl
|
||||
|
||||
# Defaults:
|
||||
#
|
||||
# Initializations.
|
||||
#
|
||||
ac_default_prefix=/usr/local
|
||||
@%:@ Any additions from configure.in:
|
||||
subdirs=
|
||||
MFLAGS= MAKEFLAGS=
|
||||
AC_SUBST(SHELL, ${CONFIG_SHELL-/bin/sh})dnl
|
||||
# Maximum number of lines to put in a shell here document.
|
||||
dnl This variable seems obsolete. It should probably be removed, and
|
||||
dnl only ac_max_sed_lines should be used.
|
||||
: ${ac_max_here_lines=48}
|
||||
# Sed expression to map a string onto a valid sh and CPP variable names.
|
||||
ac_tr_sh='sed -e y%*+%pp%;s%[[^a-zA-Z0-9_]]%_%g'
|
||||
ac_tr_cpp='sed -e y%*abcdefghijklmnopqrstuvwxyz%PABCDEFGHIJKLMNOPQRSTUVWXYZ%;s%[[^A-Z0-9_]]%_%g'
|
||||
|
||||
# By default always use an empty string as the executable extension.
|
||||
# Only change it if the script calls AC_EXEEXT.
|
||||
ac_exeext=
|
||||
# By default assume that objects files use an extension of .o. Only
|
||||
# change it if the script calls AC_OBJEXT.
|
||||
ac_objext=o
|
||||
# Factoring default headers for most tests.
|
||||
dnl If ever you change this variable, please keep autoconf.texi in sync.
|
||||
ac_includes_default="\
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#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>
|
||||
#else
|
||||
# if HAVE_STRINGS_H
|
||||
# include <strings.h>
|
||||
# endif
|
||||
#endif
|
||||
#if HAVE_INTTYPES_H
|
||||
# include <inttypes.h>
|
||||
#endif
|
||||
#if HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
#endif"
|
||||
AC_DIVERT_POP()dnl
|
||||
])# _AC_INIT_DEFAULTS
|
||||
|
||||
@ -834,18 +881,6 @@ AC_SUBST(oldincludedir, '/usr/include')dnl
|
||||
AC_SUBST(infodir, '${prefix}/info')dnl
|
||||
AC_SUBST(mandir, '${prefix}/man')dnl
|
||||
|
||||
# Initialize some other variables.
|
||||
subdirs=
|
||||
MFLAGS= MAKEFLAGS=
|
||||
AC_SUBST(SHELL, ${CONFIG_SHELL-/bin/sh})dnl
|
||||
# Maximum number of lines to put in a shell here document.
|
||||
dnl This variable seems obsolete. It should probably be removed, and
|
||||
dnl only ac_max_sed_lines should be used.
|
||||
: ${ac_max_here_lines=48}
|
||||
# Sed expression to map a string onto a valid sh and CPP variable names.
|
||||
ac_tr_sh='sed -e y%*+%pp%;s%[[^a-zA-Z0-9_]]%_%g'
|
||||
ac_tr_cpp='sed -e y%*abcdefghijklmnopqrstuvwxyz%PABCDEFGHIJKLMNOPQRSTUVWXYZ%;s%[[^A-Z0-9_]]%_%g'
|
||||
|
||||
ac_prev=
|
||||
for ac_option
|
||||
do
|
||||
@ -1342,41 +1377,6 @@ dnl Let the site file select an alternate cache file if it wants to.
|
||||
AC_SITE_LOAD
|
||||
AC_CACHE_LOAD
|
||||
AC_LANG_C
|
||||
dnl By default always use an empty string as the executable
|
||||
dnl extension. Only change it if the script calls AC_EXEEXT.
|
||||
ac_exeext=
|
||||
dnl By default assume that objects files use an extension of .o. Only
|
||||
dnl change it if the script calls AC_OBJEXT.
|
||||
ac_objext=o
|
||||
# Factoring default headers for most tests.
|
||||
dnl If ever you change this variable, please keep autoconf.texi in sync.
|
||||
ac_includes_default="\
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#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>
|
||||
#else
|
||||
# if HAVE_STRINGS_H
|
||||
# include <strings.h>
|
||||
# endif
|
||||
#endif
|
||||
#if HAVE_INTTYPES_H
|
||||
# include <inttypes.h>
|
||||
#endif
|
||||
#if HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
#endif"
|
||||
|
||||
_AC_PROG_ECHO()dnl
|
||||
dnl Substitute for predefined variables.
|
||||
|
288
configure
vendored
288
configure
vendored
@ -1,14 +1,59 @@
|
||||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated automatically using Autoconf version 2.14a.
|
||||
# Generated by Autoconf 2.14a.
|
||||
#
|
||||
# Copyright (C) 1992, 93, 94, 95, 96, 98, 99, 2000
|
||||
# Free Software Foundation, Inc.
|
||||
#
|
||||
# This configure script is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy, distribute and modify it.
|
||||
# Defaults:
|
||||
|
||||
#
|
||||
# Initializations.
|
||||
#
|
||||
ac_default_prefix=/usr/local
|
||||
# Any additions from configure.in:
|
||||
subdirs=
|
||||
MFLAGS= MAKEFLAGS=
|
||||
SHELL=${CONFIG_SHELL-/bin/sh}
|
||||
# Maximum number of lines to put in a shell here document.
|
||||
: ${ac_max_here_lines=48}
|
||||
# Sed expression to map a string onto a valid sh and CPP variable names.
|
||||
ac_tr_sh='sed -e y%*+%pp%;s%[^a-zA-Z0-9_]%_%g'
|
||||
ac_tr_cpp='sed -e y%*abcdefghijklmnopqrstuvwxyz%PABCDEFGHIJKLMNOPQRSTUVWXYZ%;s%[^A-Z0-9_]%_%g'
|
||||
|
||||
# By default always use an empty string as the executable extension.
|
||||
# Only change it if the script calls AC_EXEEXT.
|
||||
ac_exeext=
|
||||
# By default assume that objects files use an extension of .o. Only
|
||||
# change it if the script calls AC_OBJEXT.
|
||||
ac_objext=o
|
||||
# Factoring default headers for most tests.
|
||||
ac_includes_default="\
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#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>
|
||||
#else
|
||||
# if HAVE_STRINGS_H
|
||||
# include <strings.h>
|
||||
# endif
|
||||
#endif
|
||||
#if HAVE_INTTYPES_H
|
||||
# include <inttypes.h>
|
||||
#endif
|
||||
#if HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
#endif"
|
||||
|
||||
# Initialize some variables set by options.
|
||||
ac_init_help=false
|
||||
@ -46,16 +91,6 @@ oldincludedir='/usr/include'
|
||||
infodir='${prefix}/info'
|
||||
mandir='${prefix}/man'
|
||||
|
||||
# Initialize some other variables.
|
||||
subdirs=
|
||||
MFLAGS= MAKEFLAGS=
|
||||
SHELL=${CONFIG_SHELL-/bin/sh}
|
||||
# Maximum number of lines to put in a shell here document.
|
||||
: ${ac_max_here_lines=48}
|
||||
# Sed expression to map a string onto a valid sh and CPP variable names.
|
||||
ac_tr_sh='sed -e y%*+%pp%;s%[^a-zA-Z0-9_]%_%g'
|
||||
ac_tr_cpp='sed -e y%*abcdefghijklmnopqrstuvwxyz%PABCDEFGHIJKLMNOPQRSTUVWXYZ%;s%[^A-Z0-9_]%_%g'
|
||||
|
||||
ac_prev=
|
||||
for ac_option
|
||||
do
|
||||
@ -351,11 +386,38 @@ done
|
||||
if test -n "$ac_prev"; then
|
||||
{ echo "configure: error: missing argument to --\`echo $ac_prev | sed 's/_/-/g'\`" 1>&2; exit 1; }
|
||||
fi
|
||||
|
||||
# Find the source files, if location was not specified.
|
||||
if test -z "$srcdir"; then
|
||||
ac_srcdir_defaulted=yes
|
||||
# Try the directory containing this script, then its parent.
|
||||
ac_prog=$0
|
||||
ac_confdir=`echo "$ac_prog" | sed 's%/[^/][^/]*$%%'`
|
||||
test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
|
||||
srcdir=$ac_confdir
|
||||
if test ! -r $srcdir/acgeneral.m4; then
|
||||
srcdir=..
|
||||
fi
|
||||
else
|
||||
ac_srcdir_defaulted=no
|
||||
fi
|
||||
if test ! -r $srcdir/acgeneral.m4; then
|
||||
if test "$ac_srcdir_defaulted" = yes; then
|
||||
{ echo "configure: error: cannot find sources in $ac_confdir or .." 1>&2; exit 1; }
|
||||
else
|
||||
{ echo "configure: error: cannot find sources in $srcdir" 1>&2; exit 1; }
|
||||
fi
|
||||
fi
|
||||
srcdir=`echo "$srcdir" | sed 's%\([^/]\)/*$%\1%'`
|
||||
|
||||
#
|
||||
# Report the --help message.
|
||||
#
|
||||
if $ac_init_help; 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 software source code packages to adapt to many kinds
|
||||
`configure' configures Autoconf 2.14a to adapt to many kinds
|
||||
of systems.
|
||||
|
||||
Usage: configure [OPTION]... [VAR=VALUE]... [HOST]
|
||||
@ -408,26 +470,59 @@ EOF
|
||||
cat <<\EOF
|
||||
|
||||
Program names:
|
||||
--program-prefix=PREFIX prepend PREFIX to installed program names
|
||||
--program-suffix=SUFFIX append SUFFIX to installed program names
|
||||
--program-transform-name=PROGRAM
|
||||
run sed PROGRAM on installed program names
|
||||
--program-prefix=PREFIX prepend PREFIX to installed program names
|
||||
--program-suffix=SUFFIX append SUFFIX to installed program names
|
||||
--program-transform-name=PROGRAM run sed PROGRAM on installed program names
|
||||
EOF
|
||||
exit 0
|
||||
fi
|
||||
if $ac_init_version; then
|
||||
cat <<\EOF
|
||||
Generated automatically using Autoconf version 2.14a.
|
||||
configure (Autoconf 2.14a) 2.14a
|
||||
|
||||
Copyright (C) 1992, 93, 94, 95, 96, 98, 99, 2000
|
||||
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
|
||||
# NLS nuisances.
|
||||
# Only set these to C if already set. These must not be set unconditionally
|
||||
# because not all systems understand e.g. LANG=C (notably SCO).
|
||||
# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
|
||||
# Non-C LC_CTYPE values break the ctype check.
|
||||
if test "${LANG+set}" = set; then LANG=C; export LANG; fi
|
||||
if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
|
||||
if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
|
||||
if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
|
||||
|
||||
# IFS
|
||||
# We need space, tab and new line, in precisely that order.
|
||||
ac_nl='
|
||||
'
|
||||
IFS=" $ac_nl"
|
||||
|
||||
trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
|
||||
|
||||
# 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=
|
||||
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_arg'" ;;
|
||||
*) ac_configure_args="$ac_configure_args $ac_arg" ;;
|
||||
esac
|
||||
done
|
||||
|
||||
# File descriptor usage:
|
||||
# 0 standard input
|
||||
# 1 file creation
|
||||
@ -446,67 +541,16 @@ exec 5>./config.log
|
||||
echo "\
|
||||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by configure version 2.14a, executed with
|
||||
> $0 $ac_configure_args
|
||||
" 1>&5
|
||||
|
||||
# Strip out --no-create and --no-recursion so they do not pile up.
|
||||
# Also quote any args containing shell meta-characters.
|
||||
ac_configure_args=
|
||||
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_arg'" ;;
|
||||
*) ac_configure_args="$ac_configure_args $ac_arg" ;;
|
||||
esac
|
||||
done
|
||||
|
||||
# NLS nuisances.
|
||||
# Only set these to C if already set. These must not be set unconditionally
|
||||
# because not all systems understand e.g. LANG=C (notably SCO).
|
||||
# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
|
||||
# Non-C LC_CTYPE values break the ctype check.
|
||||
if test "${LANG+set}" = set; then LANG=C; export LANG; fi
|
||||
if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
|
||||
if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
|
||||
if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
|
||||
|
||||
# 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
|
||||
|
||||
# A filename unique to this package, relative to the directory that
|
||||
# configure is in, which we can look for to find out if srcdir is correct.
|
||||
ac_unique_file=acgeneral.m4
|
||||
|
||||
# Find the source files, if location was not specified.
|
||||
if test -z "$srcdir"; then
|
||||
ac_srcdir_defaulted=yes
|
||||
# Try the directory containing this script, then its parent.
|
||||
ac_prog=$0
|
||||
ac_confdir=`echo "$ac_prog" | sed 's%/[^/][^/]*$%%'`
|
||||
test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
|
||||
srcdir=$ac_confdir
|
||||
if test ! -r $srcdir/$ac_unique_file; then
|
||||
srcdir=..
|
||||
fi
|
||||
else
|
||||
ac_srcdir_defaulted=no
|
||||
fi
|
||||
if test ! -r $srcdir/$ac_unique_file; then
|
||||
if test "$ac_srcdir_defaulted" = yes; then
|
||||
{ echo "configure: error: cannot find sources in $ac_confdir or .." 1>&2; exit 1; }
|
||||
else
|
||||
{ echo "configure: error: cannot find sources in $srcdir" 1>&2; exit 1; }
|
||||
fi
|
||||
fi
|
||||
srcdir=`echo "$srcdir" | sed 's%\([^/]\)/*$%\1%'`
|
||||
|
||||
# Prefer explicitly selected file to automatically selected ones.
|
||||
if test -z "$CONFIG_SITE"; then
|
||||
if test "x$prefix" != xNONE; then
|
||||
@ -537,37 +581,6 @@ ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
|
||||
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
|
||||
cross_compiling=$ac_cv_prog_cc_cross
|
||||
|
||||
ac_exeext=
|
||||
ac_objext=o
|
||||
# Factoring default headers for most tests.
|
||||
ac_includes_default="\
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#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>
|
||||
#else
|
||||
# if HAVE_STRINGS_H
|
||||
# include <strings.h>
|
||||
# endif
|
||||
#endif
|
||||
#if HAVE_INTTYPES_H
|
||||
# include <inttypes.h>
|
||||
#endif
|
||||
#if HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
#endif"
|
||||
|
||||
if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
|
||||
# Stardent Vistra SVR4 grep lacks -e, says Kaveh R. Ghazi.
|
||||
if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
|
||||
@ -615,12 +628,12 @@ ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
|
||||
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
||||
# ./install, which can be erroneously created by make from ./install.sh.
|
||||
echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" 1>&6
|
||||
echo "configure:619: checking for a BSD compatible install" 1>&5
|
||||
echo "configure:556: checking for a BSD compatible install" 1>&5
|
||||
if test -z "$INSTALL"; then
|
||||
if test "${ac_cv_path_install+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" 1>&6
|
||||
else
|
||||
IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":"
|
||||
ac_save_IFS=$IFS; IFS=':'
|
||||
for ac_dir in $PATH; do
|
||||
# Account for people who put trailing slashes in PATH elements.
|
||||
case "$ac_dir/" in
|
||||
@ -648,7 +661,7 @@ else
|
||||
;;
|
||||
esac
|
||||
done
|
||||
IFS="$ac_save_IFS"
|
||||
IFS=$ac_save_IFS
|
||||
|
||||
fi
|
||||
if test "${ac_cv_path_install+set}" = set; then
|
||||
@ -672,7 +685,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
|
||||
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
||||
|
||||
echo $ECHO_N "checking whether build environment is sane... $ECHO_C" 1>&6
|
||||
echo "configure:676: checking whether build environment is sane" 1>&5
|
||||
echo "configure:608: checking whether build environment is sane" 1>&5
|
||||
# Just in case
|
||||
sleep 1
|
||||
echo timestamp > conftestfile
|
||||
@ -713,10 +726,10 @@ if test "$program_transform_name" = s,x,x,; then
|
||||
program_transform_name=
|
||||
else
|
||||
# Double any \ or $. echo might interpret backslashes.
|
||||
cat <<\EOF_SED >conftestsed
|
||||
cat <<\EOF >conftestsed
|
||||
s,\\,\\\\,g; s,\$,$$,g
|
||||
EOF_SED
|
||||
program_transform_name=`echo $program_transform_name|sed -f conftestsed`
|
||||
EOF
|
||||
program_transform_name=`echo $program_transform_name | sed -f conftestsed`
|
||||
rm -f conftestsed
|
||||
fi
|
||||
test "$program_prefix" != NONE &&
|
||||
@ -729,7 +742,7 @@ test "$program_suffix" != NONE &&
|
||||
test "$program_transform_name" = "" && program_transform_name="s,x,x,"
|
||||
|
||||
echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" 1>&6
|
||||
echo "configure:733: checking whether ${MAKE-make} sets \${MAKE}" 1>&5
|
||||
echo "configure:661: checking whether ${MAKE-make} sets \${MAKE}" 1>&5
|
||||
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" 1>&6
|
||||
@ -772,7 +785,7 @@ EOF
|
||||
|
||||
missing_dir=`cd $ac_aux_dir && pwd`
|
||||
echo $ECHO_N "checking for working aclocal... $ECHO_C" 1>&6
|
||||
echo "configure:776: checking for working aclocal" 1>&5
|
||||
echo "configure:699: checking for working aclocal" 1>&5
|
||||
# Run test in a subshell; some versions of sh will print an error if
|
||||
# an executable is not found, even if stderr is redirected.
|
||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||
@ -785,7 +798,7 @@ else
|
||||
fi
|
||||
|
||||
echo $ECHO_N "checking for working autoconf... $ECHO_C" 1>&6
|
||||
echo "configure:789: checking for working autoconf" 1>&5
|
||||
echo "configure:711: checking for working autoconf" 1>&5
|
||||
# Run test in a subshell; some versions of sh will print an error if
|
||||
# an executable is not found, even if stderr is redirected.
|
||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||
@ -798,7 +811,7 @@ else
|
||||
fi
|
||||
|
||||
echo $ECHO_N "checking for working automake... $ECHO_C" 1>&6
|
||||
echo "configure:802: checking for working automake" 1>&5
|
||||
echo "configure:723: checking for working automake" 1>&5
|
||||
# Run test in a subshell; some versions of sh will print an error if
|
||||
# an executable is not found, even if stderr is redirected.
|
||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||
@ -811,7 +824,7 @@ else
|
||||
fi
|
||||
|
||||
echo $ECHO_N "checking for working autoheader... $ECHO_C" 1>&6
|
||||
echo "configure:815: checking for working autoheader" 1>&5
|
||||
echo "configure:735: checking for working autoheader" 1>&5
|
||||
# Run test in a subshell; some versions of sh will print an error if
|
||||
# an executable is not found, even if stderr is redirected.
|
||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||
@ -824,7 +837,7 @@ else
|
||||
fi
|
||||
|
||||
echo $ECHO_N "checking for working makeinfo... $ECHO_C" 1>&6
|
||||
echo "configure:828: checking for working makeinfo" 1>&5
|
||||
echo "configure:747: checking for working makeinfo" 1>&5
|
||||
# Run test in a subshell; some versions of sh will print an error if
|
||||
# an executable is not found, even if stderr is redirected.
|
||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||
@ -843,7 +856,7 @@ 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 $ECHO_N "checking for $ac_word... $ECHO_C" 1>&6
|
||||
echo "configure:847: checking for $ac_word" 1>&5
|
||||
echo "configure:764: checking for $ac_word" 1>&5
|
||||
if test "${ac_cv_path_M4+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" 1>&6
|
||||
else
|
||||
@ -852,7 +865,7 @@ else
|
||||
ac_cv_path_M4="$M4" # Let the user override the test with a path.
|
||||
;;
|
||||
*)
|
||||
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
|
||||
ac_save_ifs=$IFS; IFS=':'
|
||||
ac_dummy="$PATH"
|
||||
for ac_dir in $ac_dummy; do
|
||||
test -z "$ac_dir" && ac_dir=.
|
||||
@ -861,7 +874,7 @@ else
|
||||
break
|
||||
fi
|
||||
done
|
||||
IFS="$ac_save_ifs"
|
||||
IFS=$ac_save_ifs
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
@ -877,7 +890,7 @@ done
|
||||
test -n "$M4" || M4="m4"
|
||||
|
||||
echo $ECHO_N "checking whether m4 supports frozen files... $ECHO_C" 1>&6
|
||||
echo "configure:881: checking whether m4 supports frozen files" 1>&5
|
||||
echo "configure:796: checking whether m4 supports frozen files" 1>&5
|
||||
if test "${ac_cv_prog_gnu_m4+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" 1>&6
|
||||
else
|
||||
@ -898,14 +911,14 @@ 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 $ECHO_N "checking for $ac_word... $ECHO_C" 1>&6
|
||||
echo "configure:902: checking for $ac_word" 1>&5
|
||||
echo "configure:816: checking for $ac_word" 1>&5
|
||||
if test "${ac_cv_prog_AWK+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" 1>&6
|
||||
else
|
||||
if test -n "$AWK"; then
|
||||
ac_cv_prog_AWK="$AWK" # Let the user override the test.
|
||||
else
|
||||
for ac_path in `IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
|
||||
for ac_path in `ac_save_ifs=$IFS; IFS=':'
|
||||
ac_dummy="$PATH"
|
||||
for ac_dir in $ac_dummy; do
|
||||
test -z "$ac_dir" && ac_dir=.
|
||||
@ -913,7 +926,7 @@ for ac_dir in $ac_dummy; do
|
||||
echo "$ac_dir/$ac_word"
|
||||
fi
|
||||
done
|
||||
IFS="$ac_save_ifs"
|
||||
IFS=$ac_save_ifs
|
||||
`; do
|
||||
ac_cv_prog_AWK="$ac_prog"
|
||||
break
|
||||
@ -931,7 +944,7 @@ test -n "$AWK" && break
|
||||
done
|
||||
|
||||
echo $ECHO_N "checking for working help2man... $ECHO_C" 1>&6
|
||||
echo "configure:935: checking for working help2man" 1>&5
|
||||
echo "configure:847: checking for working help2man" 1>&5
|
||||
# Run test in a subshell; some versions of sh will print an error if
|
||||
# an executable is not found, even if stderr is redirected.
|
||||
# Redirect stdin to placate older versions of autoconf. Sigh.
|
||||
@ -946,7 +959,7 @@ fi
|
||||
# Extract the first word of "perl", so it can be a program name with args.
|
||||
set dummy perl; ac_word=$2
|
||||
echo $ECHO_N "checking for $ac_word... $ECHO_C" 1>&6
|
||||
echo "configure:950: checking for $ac_word" 1>&5
|
||||
echo "configure:861: checking for $ac_word" 1>&5
|
||||
if test "${ac_cv_path_PERL+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" 1>&6
|
||||
else
|
||||
@ -955,7 +968,7 @@ else
|
||||
ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
|
||||
;;
|
||||
*)
|
||||
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
|
||||
ac_save_ifs=$IFS; IFS=':'
|
||||
ac_dummy="$PATH"
|
||||
for ac_dir in $ac_dummy; do
|
||||
test -z "$ac_dir" && ac_dir=.
|
||||
@ -964,7 +977,7 @@ else
|
||||
break
|
||||
fi
|
||||
done
|
||||
IFS="$ac_save_ifs"
|
||||
IFS=$ac_save_ifs
|
||||
test -z "$ac_cv_path_PERL" && ac_cv_path_PERL="no"
|
||||
;;
|
||||
esac
|
||||
@ -994,12 +1007,12 @@ fi
|
||||
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
||||
# ./install, which can be erroneously created by make from ./install.sh.
|
||||
echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" 1>&6
|
||||
echo "configure:998: checking for a BSD compatible install" 1>&5
|
||||
echo "configure:907: checking for a BSD compatible install" 1>&5
|
||||
if test -z "$INSTALL"; then
|
||||
if test "${ac_cv_path_install+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" 1>&6
|
||||
else
|
||||
IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":"
|
||||
ac_save_IFS=$IFS; IFS=':'
|
||||
for ac_dir in $PATH; do
|
||||
# Account for people who put trailing slashes in PATH elements.
|
||||
case "$ac_dir/" in
|
||||
@ -1027,7 +1040,7 @@ else
|
||||
;;
|
||||
esac
|
||||
done
|
||||
IFS="$ac_save_IFS"
|
||||
IFS=$ac_save_IFS
|
||||
|
||||
fi
|
||||
if test "${ac_cv_path_install+set}" = set; then
|
||||
@ -1261,13 +1274,6 @@ trap 'rm -fr $ac_cs_root*; exit 1' 1 2 15
|
||||
|
||||
EOF
|
||||
|
||||
cat >>$CONFIG_STATUS <<EOF
|
||||
#
|
||||
# INIT-COMMANDS section.
|
||||
#
|
||||
|
||||
EOF
|
||||
|
||||
cat >>$CONFIG_STATUS <<EOF
|
||||
|
||||
#
|
||||
@ -1280,6 +1286,7 @@ 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/' >\$ac_cs_root.subs <<\\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
|
||||
@ -1295,7 +1302,6 @@ s%@includedir@%$includedir%;t t
|
||||
s%@oldincludedir@%$oldincludedir%;t t
|
||||
s%@infodir@%$infodir%;t t
|
||||
s%@mandir@%$mandir%;t t
|
||||
s%@SHELL@%$SHELL%;t t
|
||||
s%@ECHO_C@%$ECHO_C%;t t
|
||||
s%@ECHO_N@%$ECHO_N%;t t
|
||||
s%@ECHO_T@%$ECHO_T%;t t
|
||||
|
@ -738,9 +738,56 @@ define(AC_PREREQ,
|
||||
AC_DEFUN(_AC_INIT_DEFAULTS,
|
||||
[AC_DIVERT_PUSH([DEFAULTS])dnl
|
||||
|
||||
# Defaults:
|
||||
#
|
||||
# Initializations.
|
||||
#
|
||||
ac_default_prefix=/usr/local
|
||||
@%:@ Any additions from configure.in:
|
||||
subdirs=
|
||||
MFLAGS= MAKEFLAGS=
|
||||
AC_SUBST(SHELL, ${CONFIG_SHELL-/bin/sh})dnl
|
||||
# Maximum number of lines to put in a shell here document.
|
||||
dnl This variable seems obsolete. It should probably be removed, and
|
||||
dnl only ac_max_sed_lines should be used.
|
||||
: ${ac_max_here_lines=48}
|
||||
# Sed expression to map a string onto a valid sh and CPP variable names.
|
||||
ac_tr_sh='sed -e y%*+%pp%;s%[[^a-zA-Z0-9_]]%_%g'
|
||||
ac_tr_cpp='sed -e y%*abcdefghijklmnopqrstuvwxyz%PABCDEFGHIJKLMNOPQRSTUVWXYZ%;s%[[^A-Z0-9_]]%_%g'
|
||||
|
||||
# By default always use an empty string as the executable extension.
|
||||
# Only change it if the script calls AC_EXEEXT.
|
||||
ac_exeext=
|
||||
# By default assume that objects files use an extension of .o. Only
|
||||
# change it if the script calls AC_OBJEXT.
|
||||
ac_objext=o
|
||||
# Factoring default headers for most tests.
|
||||
dnl If ever you change this variable, please keep autoconf.texi in sync.
|
||||
ac_includes_default="\
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#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>
|
||||
#else
|
||||
# if HAVE_STRINGS_H
|
||||
# include <strings.h>
|
||||
# endif
|
||||
#endif
|
||||
#if HAVE_INTTYPES_H
|
||||
# include <inttypes.h>
|
||||
#endif
|
||||
#if HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
#endif"
|
||||
AC_DIVERT_POP()dnl
|
||||
])# _AC_INIT_DEFAULTS
|
||||
|
||||
@ -834,18 +881,6 @@ AC_SUBST(oldincludedir, '/usr/include')dnl
|
||||
AC_SUBST(infodir, '${prefix}/info')dnl
|
||||
AC_SUBST(mandir, '${prefix}/man')dnl
|
||||
|
||||
# Initialize some other variables.
|
||||
subdirs=
|
||||
MFLAGS= MAKEFLAGS=
|
||||
AC_SUBST(SHELL, ${CONFIG_SHELL-/bin/sh})dnl
|
||||
# Maximum number of lines to put in a shell here document.
|
||||
dnl This variable seems obsolete. It should probably be removed, and
|
||||
dnl only ac_max_sed_lines should be used.
|
||||
: ${ac_max_here_lines=48}
|
||||
# Sed expression to map a string onto a valid sh and CPP variable names.
|
||||
ac_tr_sh='sed -e y%*+%pp%;s%[[^a-zA-Z0-9_]]%_%g'
|
||||
ac_tr_cpp='sed -e y%*abcdefghijklmnopqrstuvwxyz%PABCDEFGHIJKLMNOPQRSTUVWXYZ%;s%[[^A-Z0-9_]]%_%g'
|
||||
|
||||
ac_prev=
|
||||
for ac_option
|
||||
do
|
||||
@ -1342,41 +1377,6 @@ dnl Let the site file select an alternate cache file if it wants to.
|
||||
AC_SITE_LOAD
|
||||
AC_CACHE_LOAD
|
||||
AC_LANG_C
|
||||
dnl By default always use an empty string as the executable
|
||||
dnl extension. Only change it if the script calls AC_EXEEXT.
|
||||
ac_exeext=
|
||||
dnl By default assume that objects files use an extension of .o. Only
|
||||
dnl change it if the script calls AC_OBJEXT.
|
||||
ac_objext=o
|
||||
# Factoring default headers for most tests.
|
||||
dnl If ever you change this variable, please keep autoconf.texi in sync.
|
||||
ac_includes_default="\
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#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>
|
||||
#else
|
||||
# if HAVE_STRINGS_H
|
||||
# include <strings.h>
|
||||
# endif
|
||||
#endif
|
||||
#if HAVE_INTTYPES_H
|
||||
# include <inttypes.h>
|
||||
#endif
|
||||
#if HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
#endif"
|
||||
|
||||
_AC_PROG_ECHO()dnl
|
||||
dnl Substitute for predefined variables.
|
||||
|
Loading…
Reference in New Issue
Block a user