home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-11-08 | 70.0 KB | 1,900 lines |
- Fri Aug 13 11:18:44 1999 Mumit Khan <khan@xraylith.wisc.edu>
-
- * configure.in: Handle --disable/enable-win32-registry.
- * install.texi: Document --disable/enable-win32-registry.
- * acconfig.h (ENABLE_WIN32_REGISTRY): New macro.
- (WIN32_REGISTRY_KEY): New macro.
- * prefix.c: Use to enable/disable win32-specific code.
- (lookup_key): Use versioned key.
- * configure: Regenerate.
- * config.in: Likewise.
-
- Index: gcc-2.95.2/gcc/configure.in
- ===================================================================
- RCS file: /homes/khan/src/CVSROOT/gcc-2.95.2/gcc/configure.in,v
- retrieving revision 1.1.1.1
- diff -u -3 -p -r1.1.1.1 configure.in
- --- gcc-2.95.2/gcc/configure.in 1999/11/05 01:09:41 1.1.1.1
- +++ gcc-2.95.2/gcc/configure.in 1999/11/05 08:13:37
- @@ -3738,6 +3738,46 @@ AC_ARG_ENABLE(nls,
- AM_GNU_GETTEXT
- XGETTEXT="AWK='$AWK' \$(SHELL) \$(top_srcdir)/exgettext $XGETTEXT"
-
- +# Windows32 Registry support for specifying GCC installation paths.
- +AC_ARG_ENABLE(win32-registry,
- +[ --disable-win32-registry
- + Disable lookup of installation paths in the
- + Registry on Windows hosts.
- + --enable-win32-registry Enable registry lookup (default).
- + --enable-win32-registry=KEY
- + Use KEY instead of GCC version as the last portion
- + of the registry key.],,)
- +
- +AC_MSG_CHECKING(whether windows registry support is requested)
- +if test x$enable_win32_registry != xno; then
- + AC_DEFINE(ENABLE_WIN32_REGISTRY)
- + AC_MSG_RESULT(yes)
- +else
- + AC_MSG_RESULT(no)
- +fi
- +
- +# Check if user specified a different registry key.
- +case x${enable_win32_registry} in
- +x | xyes)
- + # default.
- + gcc_cv_win32_registry_key="$VERSION"
- + ;;
- +xno)
- + # no registry lookup.
- + gcc_cv_win32_registry_key=''
- + ;;
- +*)
- + # user-specified key.
- + gcc_cv_win32_registry_key="$enable_win32_registry"
- + ;;
- +esac
- +
- +if test x$enable_win32_registry != xno; then
- + AC_MSG_CHECKING(registry key on windows hosts)
- + AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$gcc_cv_win32_registry_key")
- + AC_MSG_RESULT($gcc_cv_win32_registry_key)
- +fi
- +
- # Get an absolute path to the GCC top-level source directory
- holddir=`pwd`
- cd $srcdir
- Index: gcc-2.95.2/gcc/install.texi
- ===================================================================
- RCS file: /homes/khan/src/CVSROOT/gcc-2.95.2/gcc/install.texi,v
- retrieving revision 1.1.1.1
- diff -u -3 -p -r1.1.1.1 install.texi
- --- gcc-2.95.2/gcc/install.texi 1999/11/05 01:09:43 1.1.1.1
- +++ gcc-2.95.2/gcc/install.texi 1999/11/05 08:13:37
- @@ -305,6 +305,25 @@ inferior @code{catgets} interface, the G
- ignores @code{catgets} and instead uses GCC's copy of the GNU
- @code{gettext} library. The @samp{--with-catgets} option causes the
- build procedure to use the host's @code{catgets} in this situation.
- +
- +@cindex Windows32 Registry support
- +@item --enable-win32-registry
- +@itemx --enable-win32-registry=@var{KEY}
- +@itemx --disable-win32-registry
- +The @samp{--enable-win32-registry} option enables Windows-hosted GCC
- +to look up installations paths in the registry using the following key:
- +
- +@smallexample
- +@code{HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\<KEY>}
- +@end smallexample
- +
- +<KEY> defaults to GCC version number, and can be overridden by the
- +@code{--enable-win32-registry=KEY} option. Vendors and distributors
- +who use custom installers are encouraged to provide a different key,
- +perhaps one comprised of vendor name and GCC version number, to
- +avoid conflict with existing installations. This feature is enabled
- +by default, and can be disabled by @code{--disable-win32-registry}
- +option. This option has no effect on the other hosts.
- @end table
-
- @item
- Index: gcc-2.95.2/gcc/acconfig.h
- ===================================================================
- RCS file: /homes/khan/src/CVSROOT/gcc-2.95.2/gcc/acconfig.h,v
- retrieving revision 1.1.1.1
- diff -u -3 -p -r1.1.1.1 acconfig.h
- --- gcc-2.95.2/gcc/acconfig.h 1999/11/05 01:09:41 1.1.1.1
- +++ gcc-2.95.2/gcc/acconfig.h 1999/11/05 08:13:37
- @@ -10,6 +10,13 @@
- /* Define to 1 if NLS is requested. */
- #undef ENABLE_NLS
-
- +/* Define to 1 if installation paths should be looked up in Windows32
- + Registry. Ignored on non windows32 hosts. */
- +#undef ENABLE_WIN32_REGISTRY
- +
- +/* Define to be the last portion of registry key on windows hosts. */
- +#undef WIN32_REGISTRY_KEY
- +
- /* Define as 1 if you have catgets and don't want to use GNU gettext. */
- #undef HAVE_CATGETS
-
- Index: gcc-2.95.2/gcc/configure
- ===================================================================
- RCS file: /homes/khan/src/CVSROOT/gcc-2.95.2/gcc/configure,v
- retrieving revision 1.1.1.1
- diff -u -3 -p -r1.1.1.1 configure
- --- gcc-2.95.2/gcc/configure 1999/11/05 01:09:41 1.1.1.1
- +++ gcc-2.95.2/gcc/configure 1999/11/05 08:13:37
- @@ -69,6 +69,14 @@ ac_help="$ac_help
- --with-included-gettext use the GNU gettext library included here"
- ac_help="$ac_help
- --with-catgets use catgets functions if available"
- +ac_help="$ac_help
- + --disable-win32-registry
- + Disable lookup of installation paths in the
- + Registry on Windows hosts.
- + --enable-win32-registry Enable registry lookup (default).
- + --enable-win32-registry=KEY
- + Use KEY instead of GCC version as the last portion
- + of the registry key."
-
- # Initialize some variables set by options.
- # The variables have the same names as the options, with
- @@ -595,7 +603,7 @@ copy=cp
- # - two terminals occur directly after each other
- # - the path contains an element with a dot in it
- echo $ac_n "checking LIBRARY_PATH variable""... $ac_c" 1>&6
- -echo "configure:599: checking LIBRARY_PATH variable" >&5
- +echo "configure:607: checking LIBRARY_PATH variable" >&5
- case ${LIBRARY_PATH} in
- [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
- library_path_setting="contains current directory"
- @@ -620,7 +628,7 @@ fi
- # - two terminals occur directly after each other
- # - the path contains an element with a dot in it
- echo $ac_n "checking GCC_EXEC_PREFIX variable""... $ac_c" 1>&6
- -echo "configure:624: checking GCC_EXEC_PREFIX variable" >&5
- +echo "configure:632: checking GCC_EXEC_PREFIX variable" >&5
- case ${GCC_EXEC_PREFIX} in
- [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
- gcc_exec_prefix_setting="contains current directory"
- @@ -961,7 +969,7 @@ else { echo "configure: error: can not r
- fi
-
- echo $ac_n "checking host system type""... $ac_c" 1>&6
- -echo "configure:965: checking host system type" >&5
- +echo "configure:973: checking host system type" >&5
-
- host_alias=$host
- case "$host_alias" in
- @@ -982,7 +990,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-
- echo "$ac_t""$host" 1>&6
-
- echo $ac_n "checking target system type""... $ac_c" 1>&6
- -echo "configure:986: checking target system type" >&5
- +echo "configure:994: checking target system type" >&5
-
- target_alias=$target
- case "$target_alias" in
- @@ -1000,7 +1008,7 @@ target_os=`echo $target | sed 's/^\([^-]
- echo "$ac_t""$target" 1>&6
-
- echo $ac_n "checking build system type""... $ac_c" 1>&6
- -echo "configure:1004: checking build system type" >&5
- +echo "configure:1012: checking build system type" >&5
-
- build_alias=$build
- case "$build_alias" in
- @@ -1027,7 +1035,7 @@ test "$host_alias" != "$target_alias" &&
- # Extract the first word of "gcc", so it can be a program name with args.
- set dummy gcc; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:1031: checking for $ac_word" >&5
- +echo "configure:1039: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1057,7 +1065,7 @@ 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 $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:1061: checking for $ac_word" >&5
- +echo "configure:1069: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1108,7 +1116,7 @@ fi
- # Extract the first word of "cl", so it can be a program name with args.
- set dummy cl; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:1112: checking for $ac_word" >&5
- +echo "configure:1120: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1140,7 +1148,7 @@ fi
- fi
-
- echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
- -echo "configure:1144: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
- +echo "configure:1152: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
-
- ac_ext=c
- # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
- @@ -1151,12 +1159,12 @@ cross_compiling=$ac_cv_prog_cc_cross
-
- cat > conftest.$ac_ext << EOF
-
- -#line 1155 "configure"
- +#line 1163 "configure"
- #include "confdefs.h"
-
- main(){return(0);}
- EOF
- -if { (eval echo configure:1160: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:1168: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- ac_cv_prog_cc_works=yes
- # If we can't run a trivial program, we are probably using a cross compiler.
- if (./conftest; exit) 2>/dev/null; then
- @@ -1182,12 +1190,12 @@ if test $ac_cv_prog_cc_works = no; then
- { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
- fi
- echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
- -echo "configure:1186: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
- +echo "configure:1194: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
- echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
- cross_compiling=$ac_cv_prog_cc_cross
-
- echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
- -echo "configure:1191: checking whether we are using GNU C" >&5
- +echo "configure:1199: checking whether we are using GNU C" >&5
- if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1196,7 +1204,7 @@ else
- yes;
- #endif
- EOF
- -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1200: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
- +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1208: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
- ac_cv_prog_gcc=yes
- else
- ac_cv_prog_gcc=no
- @@ -1215,7 +1223,7 @@ ac_test_CFLAGS="${CFLAGS+set}"
- ac_save_CFLAGS="$CFLAGS"
- CFLAGS=
- echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
- -echo "configure:1219: checking whether ${CC-cc} accepts -g" >&5
- +echo "configure:1227: checking whether ${CC-cc} accepts -g" >&5
- if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1258,7 +1266,7 @@ fi
-
-
- echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
- -echo "configure:1262: checking whether ${MAKE-make} sets \${MAKE}" >&5
- +echo "configure:1270: checking whether ${MAKE-make} sets \${MAKE}" >&5
- set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- @@ -1286,7 +1294,7 @@ fi
-
-
- echo $ac_n "checking whether a default assembler was specified""... $ac_c" 1>&6
- -echo "configure:1290: checking whether a default assembler was specified" >&5
- +echo "configure:1298: checking whether a default assembler was specified" >&5
- if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
- if test x"$gas_flag" = x"no"; then
- echo "$ac_t""yes ($DEFAULT_ASSEMBLER)" 1>&6
- @@ -1298,7 +1306,7 @@ else
- fi
-
- echo $ac_n "checking whether a default linker was specified""... $ac_c" 1>&6
- -echo "configure:1302: checking whether a default linker was specified" >&5
- +echo "configure:1310: checking whether a default linker was specified" >&5
- if test x"${DEFAULT_LINKER+set}" = x"set"; then
- if test x"$gnu_ld_flag" = x"no"; then
- echo "$ac_t""yes ($DEFAULT_LINKER)" 1>&6
- @@ -1310,12 +1318,12 @@ else
- fi
-
- # Find some useful tools
- -for ac_prog in gawk mawk nawk awk
- +for ac_prog in mawk gawk nawk awk
- do
- # Extract the first word of "$ac_prog", so it can be a program name with args.
- set dummy $ac_prog; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:1319: checking for $ac_word" >&5
- +echo "configure:1327: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1347,7 +1355,7 @@ done
- # Extract the first word of "flex", so it can be a program name with args.
- set dummy flex; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:1351: checking for $ac_word" >&5
- +echo "configure:1359: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1381,7 +1389,7 @@ then
- *) ac_lib=l ;;
- esac
- echo $ac_n "checking for yywrap in -l$ac_lib""... $ac_c" 1>&6
- -echo "configure:1385: checking for yywrap in -l$ac_lib" >&5
- +echo "configure:1393: checking for yywrap in -l$ac_lib" >&5
- ac_lib_var=`echo $ac_lib'_'yywrap | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- @@ -1389,7 +1397,7 @@ else
- ac_save_LIBS="$LIBS"
- LIBS="-l$ac_lib $LIBS"
- cat > conftest.$ac_ext <<EOF
- -#line 1393 "configure"
- +#line 1401 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
- @@ -1400,7 +1408,7 @@ int main() {
- yywrap()
- ; return 0; }
- EOF
- -if { (eval echo configure:1404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:1412: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
- @@ -1423,7 +1431,7 @@ fi
- fi
-
- echo $ac_n "checking whether ln works""... $ac_c" 1>&6
- -echo "configure:1427: checking whether ln works" >&5
- +echo "configure:1435: checking whether ln works" >&5
- if eval "test \"`echo '$''{'gcc_cv_prog_LN'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1455,7 +1463,7 @@ else
- fi
-
- echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
- -echo "configure:1459: checking whether ln -s works" >&5
- +echo "configure:1467: checking whether ln -s works" >&5
- if eval "test \"`echo '$''{'gcc_cv_prog_LN_S'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1487,19 +1495,19 @@ else
- fi
-
- echo $ac_n "checking for volatile""... $ac_c" 1>&6
- -echo "configure:1491: checking for volatile" >&5
- +echo "configure:1499: checking for volatile" >&5
- if eval "test \"`echo '$''{'gcc_cv_c_volatile'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 1496 "configure"
- +#line 1504 "configure"
- #include "confdefs.h"
-
- int main() {
- volatile int foo;
- ; return 0; }
- EOF
- -if { (eval echo configure:1503: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:1511: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- gcc_cv_c_volatile=yes
- else
- @@ -1522,7 +1530,7 @@ fi
- # Extract the first word of "ranlib", so it can be a program name with args.
- set dummy ranlib; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:1526: checking for $ac_word" >&5
- +echo "configure:1534: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1554,7 +1562,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 $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:1558: checking for $ac_word" >&5
- +echo "configure:1566: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -1595,7 +1603,7 @@ test -n "$YACC" || YACC="yacc"
- # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
- # ./install, which can be erroneously created by make from ./install.sh.
- echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
- -echo "configure:1599: checking for a BSD compatible install" >&5
- +echo "configure:1607: checking for a BSD compatible install" >&5
- if test -z "$INSTALL"; then
- if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- @@ -1646,7 +1654,7 @@ test -z "$INSTALL_DATA" && INSTALL_DATA=
-
-
- echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
- -echo "configure:1650: checking how to run the C preprocessor" >&5
- +echo "configure:1658: checking how to run the C preprocessor" >&5
- # On Suns, sometimes $CPP names a directory.
- if test -n "$CPP" && test -d "$CPP"; then
- CPP=
- @@ -1661,13 +1669,13 @@ else
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp.
- cat > conftest.$ac_ext <<EOF
- -#line 1665 "configure"
- +#line 1673 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:1671: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:1679: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- :
- @@ -1678,13 +1686,13 @@ else
- rm -rf conftest*
- CPP="${CC-cc} -E -traditional-cpp"
- cat > conftest.$ac_ext <<EOF
- -#line 1682 "configure"
- +#line 1690 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:1688: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:1696: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- :
- @@ -1695,13 +1703,13 @@ else
- rm -rf conftest*
- CPP="${CC-cc} -nologo -E"
- cat > conftest.$ac_ext <<EOF
- -#line 1699 "configure"
- +#line 1707 "configure"
- #include "confdefs.h"
- #include <assert.h>
- Syntax Error
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:1705: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:1713: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- :
- @@ -1726,12 +1734,12 @@ fi
- echo "$ac_t""$CPP" 1>&6
-
- echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
- -echo "configure:1730: checking for ANSI C header files" >&5
- +echo "configure:1738: checking for ANSI C header files" >&5
- if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 1735 "configure"
- +#line 1743 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- #include <stdarg.h>
- @@ -1739,7 +1747,7 @@ else
- #include <float.h>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:1743: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:1751: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
- @@ -1756,7 +1764,7 @@ rm -f conftest*
- if test $ac_cv_header_stdc = yes; then
- # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
- -#line 1760 "configure"
- +#line 1768 "configure"
- #include "confdefs.h"
- #include <string.h>
- EOF
- @@ -1774,7 +1782,7 @@ fi
- if test $ac_cv_header_stdc = yes; then
- # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
- -#line 1778 "configure"
- +#line 1786 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- EOF
- @@ -1795,7 +1803,7 @@ if test "$cross_compiling" = yes; then
- :
- else
- cat > conftest.$ac_ext <<EOF
- -#line 1799 "configure"
- +#line 1807 "configure"
- #include "confdefs.h"
- #include <ctype.h>
- #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
- @@ -1806,7 +1814,7 @@ if (XOR (islower (i), ISLOWER (i)) || to
- exit (0); }
-
- EOF
- -if { (eval echo configure:1810: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- +if { (eval echo configure:1818: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- then
- :
- else
- @@ -1830,12 +1838,12 @@ EOF
- fi
-
- echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6
- -echo "configure:1834: checking whether time.h and sys/time.h may both be included" >&5
- +echo "configure:1842: checking whether time.h and sys/time.h may both be included" >&5
- if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 1839 "configure"
- +#line 1847 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/time.h>
- @@ -1844,7 +1852,7 @@ int main() {
- struct tm *tp;
- ; return 0; }
- EOF
- -if { (eval echo configure:1848: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:1856: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_header_time=yes
- else
- @@ -1865,12 +1873,12 @@ EOF
- fi
-
- echo $ac_n "checking whether string.h and strings.h may both be included""... $ac_c" 1>&6
- -echo "configure:1869: checking whether string.h and strings.h may both be included" >&5
- +echo "configure:1877: checking whether string.h and strings.h may both be included" >&5
- if eval "test \"`echo '$''{'gcc_cv_header_string'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 1874 "configure"
- +#line 1882 "configure"
- #include "confdefs.h"
- #include <string.h>
- #include <strings.h>
- @@ -1878,7 +1886,7 @@ int main() {
-
- ; return 0; }
- EOF
- -if { (eval echo configure:1882: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:1890: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- gcc_cv_header_string=yes
- else
- @@ -1899,12 +1907,12 @@ EOF
- fi
-
- echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&6
- -echo "configure:1903: checking for sys/wait.h that is POSIX.1 compatible" >&5
- +echo "configure:1911: checking for sys/wait.h that is POSIX.1 compatible" >&5
- if eval "test \"`echo '$''{'ac_cv_header_sys_wait_h'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 1908 "configure"
- +#line 1916 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/wait.h>
- @@ -1920,7 +1928,7 @@ wait (&s);
- s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
- ; return 0; }
- EOF
- -if { (eval echo configure:1924: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:1932: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_header_sys_wait_h=yes
- else
- @@ -1944,17 +1952,17 @@ for ac_hdr in limits.h stddef.h string.h
- do
- ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
- -echo "configure:1948: checking for $ac_hdr" >&5
- +echo "configure:1956: checking for $ac_hdr" >&5
- if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 1953 "configure"
- +#line 1961 "configure"
- #include "confdefs.h"
- #include <$ac_hdr>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:1958: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:1966: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
- @@ -1984,17 +1992,17 @@ done
- # Check for thread headers.
- ac_safe=`echo "thread.h" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for thread.h""... $ac_c" 1>&6
- -echo "configure:1988: checking for thread.h" >&5
- +echo "configure:1996: checking for thread.h" >&5
- if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 1993 "configure"
- +#line 2001 "configure"
- #include "confdefs.h"
- #include <thread.h>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:1998: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:2006: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
- @@ -2018,17 +2026,17 @@ fi
-
- ac_safe=`echo "pthread.h" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for pthread.h""... $ac_c" 1>&6
- -echo "configure:2022: checking for pthread.h" >&5
- +echo "configure:2030: checking for pthread.h" >&5
- if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2027 "configure"
- +#line 2035 "configure"
- #include "confdefs.h"
- #include <pthread.h>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:2032: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:2040: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
- @@ -2055,7 +2063,7 @@ fi
- # Extract the first word of "gnatbind", so it can be a program name with args.
- set dummy gnatbind; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:2059: checking for $ac_word" >&5
- +echo "configure:2067: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_prog_gnat'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -2086,12 +2094,12 @@ fi
- # See if the system preprocessor understands the ANSI C preprocessor
- # stringification operator.
- echo $ac_n "checking whether cpp understands the stringify operator""... $ac_c" 1>&6
- -echo "configure:2090: checking whether cpp understands the stringify operator" >&5
- +echo "configure:2098: checking whether cpp understands the stringify operator" >&5
- if eval "test \"`echo '$''{'gcc_cv_c_have_stringify'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2095 "configure"
- +#line 2103 "configure"
- #include "confdefs.h"
-
- int main() {
- @@ -2099,7 +2107,7 @@ int main() {
- char *test = S(foo);
- ; return 0; }
- EOF
- -if { (eval echo configure:2103: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:2111: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- gcc_cv_c_have_stringify=yes
- else
- @@ -2122,12 +2130,12 @@ fi
- # Use <inttypes.h> only if it exists,
- # doesn't clash with <sys/types.h>, and declares intmax_t.
- echo $ac_n "checking for inttypes.h""... $ac_c" 1>&6
- -echo "configure:2126: checking for inttypes.h" >&5
- +echo "configure:2134: checking for inttypes.h" >&5
- if eval "test \"`echo '$''{'gcc_cv_header_inttypes_h'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2131 "configure"
- +#line 2139 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <inttypes.h>
- @@ -2135,7 +2143,7 @@ int main() {
- intmax_t i = -1;
- ; return 0; }
- EOF
- -if { (eval echo configure:2139: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:2147: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- gcc_cv_header_inttypes_h=yes
- else
- @@ -2161,12 +2169,12 @@ for ac_func in strtoul bsearch strerror
- fputs_unlocked
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
- -echo "configure:2165: checking for $ac_func" >&5
- +echo "configure:2173: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2170 "configure"
- +#line 2178 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
- @@ -2189,7 +2197,7 @@ $ac_func();
-
- ; return 0; }
- EOF
- -if { (eval echo configure:2193: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:2201: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
- @@ -2218,12 +2226,12 @@ done
- #AC_CHECK_TYPE(wchar_t, unsigned int)
-
- echo $ac_n "checking for vprintf""... $ac_c" 1>&6
- -echo "configure:2222: checking for vprintf" >&5
- +echo "configure:2230: checking for vprintf" >&5
- if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2227 "configure"
- +#line 2235 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char vprintf(); below. */
- @@ -2246,7 +2254,7 @@ vprintf();
-
- ; return 0; }
- EOF
- -if { (eval echo configure:2250: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:2258: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_vprintf=yes"
- else
- @@ -2270,12 +2278,12 @@ fi
-
- if test "$ac_cv_func_vprintf" != yes; then
- echo $ac_n "checking for _doprnt""... $ac_c" 1>&6
- -echo "configure:2274: checking for _doprnt" >&5
- +echo "configure:2282: checking for _doprnt" >&5
- if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2279 "configure"
- +#line 2287 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char _doprnt(); below. */
- @@ -2298,7 +2306,7 @@ _doprnt();
-
- ; return 0; }
- EOF
- -if { (eval echo configure:2302: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:2310: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func__doprnt=yes"
- else
- @@ -2334,7 +2342,7 @@ fi
-
-
- echo $ac_n "checking whether the printf functions support %p""... $ac_c" 1>&6
- -echo "configure:2338: checking whether the printf functions support %p" >&5
- +echo "configure:2346: checking whether the printf functions support %p" >&5
- if eval "test \"`echo '$''{'gcc_cv_func_printf_ptr'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -2342,7 +2350,7 @@ else
- gcc_cv_func_printf_ptr=no
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2346 "configure"
- +#line 2354 "configure"
- #include "confdefs.h"
- #include <stdio.h>
-
- @@ -2355,7 +2363,7 @@ main()
- exit (p != q);
- }
- EOF
- -if { (eval echo configure:2359: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- +if { (eval echo configure:2367: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- then
- gcc_cv_func_printf_ptr=yes
- else
- @@ -2388,12 +2396,12 @@ case "${host}" in
- ;;
- esac
- echo $ac_n "checking for pid_t""... $ac_c" 1>&6
- -echo "configure:2392: checking for pid_t" >&5
- +echo "configure:2400: checking for pid_t" >&5
- if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2397 "configure"
- +#line 2405 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- @@ -2422,17 +2430,17 @@ fi
-
- ac_safe=`echo "vfork.h" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for vfork.h""... $ac_c" 1>&6
- -echo "configure:2426: checking for vfork.h" >&5
- +echo "configure:2434: checking for vfork.h" >&5
- if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2431 "configure"
- +#line 2439 "configure"
- #include "confdefs.h"
- #include <vfork.h>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:2436: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:2444: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
- @@ -2457,18 +2465,18 @@ else
- fi
-
- echo $ac_n "checking for working vfork""... $ac_c" 1>&6
- -echo "configure:2461: checking for working vfork" >&5
- +echo "configure:2469: checking for working vfork" >&5
- if eval "test \"`echo '$''{'ac_cv_func_vfork_works'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- if test "$cross_compiling" = yes; then
- echo $ac_n "checking for vfork""... $ac_c" 1>&6
- -echo "configure:2467: checking for vfork" >&5
- +echo "configure:2475: checking for vfork" >&5
- if eval "test \"`echo '$''{'ac_cv_func_vfork'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2472 "configure"
- +#line 2480 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char vfork(); below. */
- @@ -2491,7 +2499,7 @@ vfork();
-
- ; return 0; }
- EOF
- -if { (eval echo configure:2495: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:2503: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_vfork=yes"
- else
- @@ -2513,7 +2521,7 @@ fi
- ac_cv_func_vfork_works=$ac_cv_func_vfork
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2517 "configure"
- +#line 2525 "configure"
- #include "confdefs.h"
- /* Thanks to Paul Eggert for this test. */
- #include <stdio.h>
- @@ -2608,7 +2616,7 @@ main() {
- }
- }
- EOF
- -if { (eval echo configure:2612: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- +if { (eval echo configure:2620: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- then
- ac_cv_func_vfork_works=yes
- else
- @@ -2636,12 +2644,12 @@ for ac_func in malloc realloc calloc fre
- strsignal putc_unlocked fputs_unlocked strstr
- do
- echo $ac_n "checking whether $ac_func must be declared""... $ac_c" 1>&6
- -echo "configure:2640: checking whether $ac_func must be declared" >&5
- +echo "configure:2648: checking whether $ac_func must be declared" >&5
- if eval "test \"`echo '$''{'gcc_cv_decl_needed_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2645 "configure"
- +#line 2653 "configure"
- #include "confdefs.h"
-
- #include <stdio.h>
- @@ -2674,7 +2682,7 @@ int main() {
- char *(*pfn) = (char *(*)) $ac_func
- ; return 0; }
- EOF
- -if { (eval echo configure:2678: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:2686: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- eval "gcc_cv_decl_needed_$ac_func=no"
- else
- @@ -2703,12 +2711,12 @@ done
- for ac_func in getrlimit setrlimit
- do
- echo $ac_n "checking whether $ac_func must be declared""... $ac_c" 1>&6
- -echo "configure:2707: checking whether $ac_func must be declared" >&5
- +echo "configure:2715: checking whether $ac_func must be declared" >&5
- if eval "test \"`echo '$''{'gcc_cv_decl_needed_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2712 "configure"
- +#line 2720 "configure"
- #include "confdefs.h"
-
- #include <stdio.h>
- @@ -2745,7 +2753,7 @@ int main() {
- char *(*pfn) = (char *(*)) $ac_func
- ; return 0; }
- EOF
- -if { (eval echo configure:2749: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:2757: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- eval "gcc_cv_decl_needed_$ac_func=no"
- else
- @@ -2772,12 +2780,12 @@ done
-
-
- echo $ac_n "checking for sys_siglist declaration in signal.h or unistd.h""... $ac_c" 1>&6
- -echo "configure:2776: checking for sys_siglist declaration in signal.h or unistd.h" >&5
- +echo "configure:2784: checking for sys_siglist declaration in signal.h or unistd.h" >&5
- if eval "test \"`echo '$''{'ac_cv_decl_sys_siglist'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2781 "configure"
- +#line 2789 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <signal.h>
- @@ -2789,7 +2797,7 @@ int main() {
- char *msg = *(sys_siglist + 1);
- ; return 0; }
- EOF
- -if { (eval echo configure:2793: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:2801: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_decl_sys_siglist=yes
- else
- @@ -2812,12 +2820,12 @@ fi
-
- # mkdir takes a single argument on some systems.
- echo $ac_n "checking if mkdir takes one argument""... $ac_c" 1>&6
- -echo "configure:2816: checking if mkdir takes one argument" >&5
- +echo "configure:2824: checking if mkdir takes one argument" >&5
- if eval "test \"`echo '$''{'gcc_cv_mkdir_takes_one_arg'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 2821 "configure"
- +#line 2829 "configure"
- #include "confdefs.h"
-
- #include <sys/types.h>
- @@ -2834,7 +2842,7 @@ int main() {
- mkdir ("foo", 0);
- ; return 0; }
- EOF
- -if { (eval echo configure:2838: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:2846: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- gcc_cv_mkdir_takes_one_arg=no
- else
- @@ -6049,7 +6057,7 @@ fi
-
-
- echo $ac_n "checking for strerror in -lcposix""... $ac_c" 1>&6
- -echo "configure:6044: checking for strerror in -lcposix" >&5
- +echo "configure:6052: checking for strerror in -lcposix" >&5
- ac_lib_var=`echo cposix'_'strerror | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- @@ -6057,7 +6065,7 @@ else
- ac_save_LIBS="$LIBS"
- LIBS="-lcposix $LIBS"
- cat > conftest.$ac_ext <<EOF
- -#line 6052 "configure"
- +#line 6060 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
- @@ -6068,7 +6076,7 @@ int main() {
- strerror()
- ; return 0; }
- EOF
- -if { (eval echo configure:6063: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:6071: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
- @@ -6091,12 +6099,12 @@ fi
-
-
- echo $ac_n "checking for working const""... $ac_c" 1>&6
- -echo "configure:6086: checking for working const" >&5
- +echo "configure:6094: checking for working const" >&5
- if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6091 "configure"
- +#line 6099 "configure"
- #include "confdefs.h"
-
- int main() {
- @@ -6145,7 +6153,7 @@ ccp = (char const *const *) p;
-
- ; return 0; }
- EOF
- -if { (eval echo configure:6140: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:6148: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_c_const=yes
- else
- @@ -6166,21 +6174,21 @@ EOF
- fi
-
- echo $ac_n "checking for inline""... $ac_c" 1>&6
- -echo "configure:6161: checking for inline" >&5
- +echo "configure:6169: checking for inline" >&5
- if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- ac_cv_c_inline=no
- for ac_kw in inline __inline__ __inline; do
- cat > conftest.$ac_ext <<EOF
- -#line 6168 "configure"
- +#line 6176 "configure"
- #include "confdefs.h"
-
- int main() {
- } $ac_kw foo() {
- ; return 0; }
- EOF
- -if { (eval echo configure:6175: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- +if { (eval echo configure:6183: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_c_inline=$ac_kw; break
- else
- @@ -6206,12 +6214,12 @@ EOF
- esac
-
- echo $ac_n "checking for off_t""... $ac_c" 1>&6
- -echo "configure:6201: checking for off_t" >&5
- +echo "configure:6209: checking for off_t" >&5
- if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6206 "configure"
- +#line 6214 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- @@ -6239,12 +6247,12 @@ EOF
- fi
-
- echo $ac_n "checking for size_t""... $ac_c" 1>&6
- -echo "configure:6234: checking for size_t" >&5
- +echo "configure:6242: checking for size_t" >&5
- if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6239 "configure"
- +#line 6247 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
- @@ -6274,19 +6282,19 @@ fi
- # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
- # for constant arguments. Useless!
- echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
- -echo "configure:6269: checking for working alloca.h" >&5
- +echo "configure:6277: checking for working alloca.h" >&5
- if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6274 "configure"
- +#line 6282 "configure"
- #include "confdefs.h"
- #include <alloca.h>
- int main() {
- char *p = alloca(2 * sizeof(int));
- ; return 0; }
- EOF
- -if { (eval echo configure:6281: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:6289: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- ac_cv_header_alloca_h=yes
- else
- @@ -6307,12 +6315,12 @@ EOF
- fi
-
- echo $ac_n "checking for alloca""... $ac_c" 1>&6
- -echo "configure:6302: checking for alloca" >&5
- +echo "configure:6310: checking for alloca" >&5
- if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6307 "configure"
- +#line 6315 "configure"
- #include "confdefs.h"
-
- #ifdef __GNUC__
- @@ -6340,7 +6348,7 @@ int main() {
- char *p = (char *) alloca(1);
- ; return 0; }
- EOF
- -if { (eval echo configure:6335: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:6343: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- ac_cv_func_alloca_works=yes
- else
- @@ -6372,12 +6380,12 @@ EOF
-
-
- echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
- -echo "configure:6367: checking whether alloca needs Cray hooks" >&5
- +echo "configure:6375: checking whether alloca needs Cray hooks" >&5
- if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6372 "configure"
- +#line 6380 "configure"
- #include "confdefs.h"
- #if defined(CRAY) && ! defined(CRAY2)
- webecray
- @@ -6402,12 +6410,12 @@ echo "$ac_t""$ac_cv_os_cray" 1>&6
- if test $ac_cv_os_cray = yes; then
- for ac_func in _getb67 GETB67 getb67; do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
- -echo "configure:6397: checking for $ac_func" >&5
- +echo "configure:6405: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6402 "configure"
- +#line 6410 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
- @@ -6430,7 +6438,7 @@ $ac_func();
-
- ; return 0; }
- EOF
- -if { (eval echo configure:6425: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:6433: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
- @@ -6457,7 +6465,7 @@ done
- fi
-
- echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
- -echo "configure:6452: checking stack direction for C alloca" >&5
- +echo "configure:6460: checking stack direction for C alloca" >&5
- if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -6465,7 +6473,7 @@ else
- ac_cv_c_stack_direction=0
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6460 "configure"
- +#line 6468 "configure"
- #include "confdefs.h"
- find_stack_direction ()
- {
- @@ -6484,7 +6492,7 @@ main ()
- exit (find_stack_direction() < 0);
- }
- EOF
- -if { (eval echo configure:6479: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- +if { (eval echo configure:6487: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- then
- ac_cv_c_stack_direction=1
- else
- @@ -6509,17 +6517,17 @@ for ac_hdr in unistd.h
- do
- ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
- -echo "configure:6504: checking for $ac_hdr" >&5
- +echo "configure:6512: checking for $ac_hdr" >&5
- if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6509 "configure"
- +#line 6517 "configure"
- #include "confdefs.h"
- #include <$ac_hdr>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:6514: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:6522: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
- @@ -6548,12 +6556,12 @@ done
- for ac_func in getpagesize
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
- -echo "configure:6543: checking for $ac_func" >&5
- +echo "configure:6551: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6548 "configure"
- +#line 6556 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
- @@ -6576,7 +6584,7 @@ $ac_func();
-
- ; return 0; }
- EOF
- -if { (eval echo configure:6571: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:6579: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
- @@ -6601,7 +6609,7 @@ fi
- done
-
- echo $ac_n "checking for working mmap""... $ac_c" 1>&6
- -echo "configure:6596: checking for working mmap" >&5
- +echo "configure:6604: checking for working mmap" >&5
- if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -6609,7 +6617,7 @@ else
- ac_cv_func_mmap_fixed_mapped=no
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6604 "configure"
- +#line 6612 "configure"
- #include "confdefs.h"
-
- /* Thanks to Mike Haertel and Jim Avera for this test.
- @@ -6749,7 +6757,7 @@ main()
- }
-
- EOF
- -if { (eval echo configure:6744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- +if { (eval echo configure:6752: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- then
- ac_cv_func_mmap_fixed_mapped=yes
- else
- @@ -6777,17 +6785,17 @@ unistd.h sys/param.h
- do
- ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
- -echo "configure:6772: checking for $ac_hdr" >&5
- +echo "configure:6780: checking for $ac_hdr" >&5
- if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6777 "configure"
- +#line 6785 "configure"
- #include "confdefs.h"
- #include <$ac_hdr>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:6782: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:6790: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
- @@ -6817,12 +6825,12 @@ done
- strdup __argz_count __argz_stringify __argz_next
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
- -echo "configure:6812: checking for $ac_func" >&5
- +echo "configure:6820: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6817 "configure"
- +#line 6825 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
- @@ -6845,7 +6853,7 @@ $ac_func();
-
- ; return 0; }
- EOF
- -if { (eval echo configure:6840: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:6848: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
- @@ -6874,12 +6882,12 @@ done
- for ac_func in stpcpy
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
- -echo "configure:6869: checking for $ac_func" >&5
- +echo "configure:6877: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6874 "configure"
- +#line 6882 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
- @@ -6902,7 +6910,7 @@ $ac_func();
-
- ; return 0; }
- EOF
- -if { (eval echo configure:6897: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:6905: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
- @@ -6936,19 +6944,19 @@ EOF
-
- if test $ac_cv_header_locale_h = yes; then
- echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6
- -echo "configure:6931: checking for LC_MESSAGES" >&5
- +echo "configure:6939: checking for LC_MESSAGES" >&5
- if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 6936 "configure"
- +#line 6944 "configure"
- #include "confdefs.h"
- #include <locale.h>
- int main() {
- return LC_MESSAGES
- ; return 0; }
- EOF
- -if { (eval echo configure:6943: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:6951: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- am_cv_val_LC_MESSAGES=yes
- else
- @@ -6969,7 +6977,7 @@ EOF
- fi
- fi
- echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6
- -echo "configure:6964: checking whether NLS is requested" >&5
- +echo "configure:6972: checking whether NLS is requested" >&5
- # Check whether --enable-nls or --disable-nls was given.
- if test "${enable_nls+set}" = set; then
- enableval="$enable_nls"
- @@ -6989,7 +6997,7 @@ fi
- EOF
-
- echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6
- -echo "configure:6984: checking whether included gettext is requested" >&5
- +echo "configure:6992: checking whether included gettext is requested" >&5
- # Check whether --with-included-gettext or --without-included-gettext was given.
- if test "${with_included_gettext+set}" = set; then
- withval="$with_included_gettext"
- @@ -7008,17 +7016,17 @@ fi
-
- ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for libintl.h""... $ac_c" 1>&6
- -echo "configure:7003: checking for libintl.h" >&5
- +echo "configure:7011: checking for libintl.h" >&5
- if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 7008 "configure"
- +#line 7016 "configure"
- #include "confdefs.h"
- #include <libintl.h>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:7013: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:7021: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
- @@ -7035,19 +7043,19 @@ fi
- if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
- echo "$ac_t""yes" 1>&6
- echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6
- -echo "configure:7030: checking for gettext in libc" >&5
- +echo "configure:7038: checking for gettext in libc" >&5
- if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 7035 "configure"
- +#line 7043 "configure"
- #include "confdefs.h"
- #include <libintl.h>
- int main() {
- return (int) gettext ("")
- ; return 0; }
- EOF
- -if { (eval echo configure:7042: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:7050: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- gt_cv_func_gettext_libc=yes
- else
- @@ -7063,7 +7071,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1
-
- if test "$gt_cv_func_gettext_libc" != "yes"; then
- echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6
- -echo "configure:7058: checking for bindtextdomain in -lintl" >&5
- +echo "configure:7066: checking for bindtextdomain in -lintl" >&5
- ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- @@ -7071,7 +7079,7 @@ else
- ac_save_LIBS="$LIBS"
- LIBS="-lintl $LIBS"
- cat > conftest.$ac_ext <<EOF
- -#line 7066 "configure"
- +#line 7074 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
- @@ -7082,7 +7090,7 @@ int main() {
- bindtextdomain()
- ; return 0; }
- EOF
- -if { (eval echo configure:7077: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:7085: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
- @@ -7098,12 +7106,12 @@ fi
- if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
- echo "$ac_t""yes" 1>&6
- echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6
- -echo "configure:7093: checking for gettext in libintl" >&5
- +echo "configure:7101: checking for gettext in libintl" >&5
- if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- echo $ac_n "checking for gettext in -lintl""... $ac_c" 1>&6
- -echo "configure:7098: checking for gettext in -lintl" >&5
- +echo "configure:7106: checking for gettext in -lintl" >&5
- ac_lib_var=`echo intl'_'gettext | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- @@ -7111,7 +7119,7 @@ else
- ac_save_LIBS="$LIBS"
- LIBS="-lintl $LIBS"
- cat > conftest.$ac_ext <<EOF
- -#line 7106 "configure"
- +#line 7114 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
- @@ -7122,7 +7130,7 @@ int main() {
- gettext()
- ; return 0; }
- EOF
- -if { (eval echo configure:7117: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:7125: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
- @@ -7161,7 +7169,7 @@ EOF
- # Extract the first word of "msgfmt", so it can be a program name with args.
- set dummy msgfmt; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:7156: checking for $ac_word" >&5
- +echo "configure:7164: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -7195,12 +7203,12 @@ fi
- for ac_func in dcgettext
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
- -echo "configure:7190: checking for $ac_func" >&5
- +echo "configure:7198: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 7195 "configure"
- +#line 7203 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
- @@ -7223,7 +7231,7 @@ $ac_func();
-
- ; return 0; }
- EOF
- -if { (eval echo configure:7218: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:7226: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
- @@ -7250,7 +7258,7 @@ done
- # Extract the first word of "gmsgfmt", so it can be a program name with args.
- set dummy gmsgfmt; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:7245: checking for $ac_word" >&5
- +echo "configure:7253: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -7286,7 +7294,7 @@ fi
- # Extract the first word of "xgettext", so it can be a program name with args.
- set dummy xgettext; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:7281: checking for $ac_word" >&5
- +echo "configure:7289: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -7318,7 +7326,7 @@ else
- fi
-
- cat > conftest.$ac_ext <<EOF
- -#line 7313 "configure"
- +#line 7321 "configure"
- #include "confdefs.h"
-
- int main() {
- @@ -7326,7 +7334,7 @@ extern int _nl_msg_cat_cntr;
- return _nl_msg_cat_cntr
- ; return 0; }
- EOF
- -if { (eval echo configure:7321: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:7329: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- CATOBJEXT=.gmo
- DATADIRNAME=share
- @@ -7349,7 +7357,7 @@ fi
-
- if test "$CATOBJEXT" = "NONE"; then
- echo $ac_n "checking whether catgets can be used""... $ac_c" 1>&6
- -echo "configure:7344: checking whether catgets can be used" >&5
- +echo "configure:7352: checking whether catgets can be used" >&5
- # Check whether --with-catgets or --without-catgets was given.
- if test "${with_catgets+set}" = set; then
- withval="$with_catgets"
- @@ -7362,7 +7370,7 @@ fi
-
- if test "$nls_cv_use_catgets" = "yes"; then
- echo $ac_n "checking for main in -li""... $ac_c" 1>&6
- -echo "configure:7357: checking for main in -li" >&5
- +echo "configure:7365: checking for main in -li" >&5
- ac_lib_var=`echo i'_'main | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- @@ -7370,14 +7378,14 @@ else
- ac_save_LIBS="$LIBS"
- LIBS="-li $LIBS"
- cat > conftest.$ac_ext <<EOF
- -#line 7365 "configure"
- +#line 7373 "configure"
- #include "confdefs.h"
-
- int main() {
- main()
- ; return 0; }
- EOF
- -if { (eval echo configure:7372: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:7380: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
- @@ -7405,12 +7413,12 @@ else
- fi
-
- echo $ac_n "checking for catgets""... $ac_c" 1>&6
- -echo "configure:7400: checking for catgets" >&5
- +echo "configure:7408: checking for catgets" >&5
- if eval "test \"`echo '$''{'ac_cv_func_catgets'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 7405 "configure"
- +#line 7413 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char catgets(); below. */
- @@ -7433,7 +7441,7 @@ catgets();
-
- ; return 0; }
- EOF
- -if { (eval echo configure:7428: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- +if { (eval echo configure:7436: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_catgets=yes"
- else
- @@ -7455,7 +7463,7 @@ EOF
- # Extract the first word of "gencat", so it can be a program name with args.
- set dummy gencat; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:7450: checking for $ac_word" >&5
- +echo "configure:7458: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_GENCAT'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -7491,7 +7499,7 @@ fi
- # Extract the first word of "gmsgfmt", so it can be a program name with args.
- set dummy gmsgfmt; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:7486: checking for $ac_word" >&5
- +echo "configure:7494: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -7528,7 +7536,7 @@ fi
- # Extract the first word of "msgfmt", so it can be a program name with args.
- set dummy msgfmt; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:7523: checking for $ac_word" >&5
- +echo "configure:7531: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -7563,7 +7571,7 @@ fi
- # Extract the first word of "xgettext", so it can be a program name with args.
- set dummy xgettext; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:7558: checking for $ac_word" >&5
- +echo "configure:7566: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -7621,7 +7629,7 @@ fi
- # Extract the first word of "msgfmt", so it can be a program name with args.
- set dummy msgfmt; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:7616: checking for $ac_word" >&5
- +echo "configure:7624: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -7655,7 +7663,7 @@ fi
- # Extract the first word of "gmsgfmt", so it can be a program name with args.
- set dummy gmsgfmt; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:7650: checking for $ac_word" >&5
- +echo "configure:7658: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -7691,7 +7699,7 @@ fi
- # Extract the first word of "xgettext", so it can be a program name with args.
- set dummy xgettext; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
- -echo "configure:7686: checking for $ac_word" >&5
- +echo "configure:7694: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- @@ -7784,7 +7792,7 @@ fi
- LINGUAS=
- else
- echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6
- -echo "configure:7779: checking for catalogs to be installed" >&5
- +echo "configure:7787: checking for catalogs to be installed" >&5
- NEW_LINGUAS=
- for lang in ${LINGUAS=$ALL_LINGUAS}; do
- case "$ALL_LINGUAS" in
- @@ -7812,17 +7820,17 @@ echo "configure:7779: checking for catal
- if test "$CATOBJEXT" = ".cat"; then
- ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6
- -echo "configure:7807: checking for linux/version.h" >&5
- +echo "configure:7815: checking for linux/version.h" >&5
- if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- -#line 7812 "configure"
- +#line 7820 "configure"
- #include "confdefs.h"
- #include <linux/version.h>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- -{ (eval echo configure:7817: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- +{ (eval echo configure:7825: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
- @@ -7888,6 +7896,52 @@ fi
-
- XGETTEXT="AWK='$AWK' \$(SHELL) \$(top_srcdir)/exgettext $XGETTEXT"
-
- +# Windows32 Registry support for specifying GCC installation paths.
- +# Check whether --enable-win32-registry or --disable-win32-registry was given.
- +if test "${enable_win32_registry+set}" = set; then
- + enableval="$enable_win32_registry"
- + :
- +fi
- +
- +
- +echo $ac_n "checking whether windows registry support is requested""... $ac_c" 1>&6
- +echo "configure:7900: checking whether windows registry support is requested" >&5
- +if test x$enable_win32_registry != xno; then
- + cat >> confdefs.h <<\EOF
- +#define ENABLE_WIN32_REGISTRY 1
- +EOF
- +
- + echo "$ac_t""yes" 1>&6
- +else
- + echo "$ac_t""no" 1>&6
- +fi
- +
- +# Check if user specified a different registry key.
- +case x${enable_win32_registry} in
- +x | xyes)
- + # default.
- + gcc_cv_win32_registry_key="$VERSION"
- + ;;
- +xno)
- + # no registry lookup.
- + gcc_cv_win32_registry_key=''
- + ;;
- +*)
- + # user-specified key.
- + gcc_cv_win32_registry_key="$enable_win32_registry"
- + ;;
- +esac
- +
- +if test x$enable_win32_registry != xno; then
- + echo $ac_n "checking registry key on windows hosts""... $ac_c" 1>&6
- +echo "configure:7929: checking registry key on windows hosts" >&5
- + cat >> confdefs.h <<EOF
- +#define WIN32_REGISTRY_KEY "$gcc_cv_win32_registry_key"
- +EOF
- +
- + echo "$ac_t""$gcc_cv_win32_registry_key" 1>&6
- +fi
- +
- # Get an absolute path to the GCC top-level source directory
- holddir=`pwd`
- cd $srcdir
- @@ -8056,7 +8110,7 @@ fi
-
- # Figure out what assembler alignment features are present.
- echo $ac_n "checking assembler alignment features""... $ac_c" 1>&6
- -echo "configure:8051: checking assembler alignment features" >&5
- +echo "configure:8105: checking assembler alignment features" >&5
- gcc_cv_as=
- gcc_cv_as_alignment_features=
- gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
- @@ -8177,7 +8231,7 @@ fi
- echo "$ac_t""$gcc_cv_as_alignment_features" 1>&6
-
- echo $ac_n "checking assembler subsection support""... $ac_c" 1>&6
- -echo "configure:8172: checking assembler subsection support" >&5
- +echo "configure:8226: checking assembler subsection support" >&5
- gcc_cv_as_subsections=
- if test x$gcc_cv_as != x; then
- # Check if we have .subsection
- @@ -8217,7 +8271,7 @@ fi
- echo "$ac_t""$gcc_cv_as_subsections" 1>&6
-
- echo $ac_n "checking assembler instructions""... $ac_c" 1>&6
- -echo "configure:8212: checking assembler instructions" >&5
- +echo "configure:8266: checking assembler instructions" >&5
- gcc_cv_as_instructions=
- if test x$gcc_cv_as != x; then
- set "filds fists" "filds mem; fists mem"
- Index: gcc-2.95.2/gcc/config.in
- ===================================================================
- RCS file: /homes/khan/src/CVSROOT/gcc-2.95.2/gcc/config.in,v
- retrieving revision 1.1.1.1
- diff -u -3 -p -r1.1.1.1 config.in
- --- gcc-2.95.2/gcc/config.in 1999/11/05 01:09:41 1.1.1.1
- +++ gcc-2.95.2/gcc/config.in 1999/11/05 08:13:37
- @@ -11,6 +11,13 @@
- /* Define to 1 if NLS is requested. */
- #undef ENABLE_NLS
-
- +/* Define to 1 if installation paths should be looked up in Windows32
- + Registry. Ignored on non windows32 hosts. */
- +#undef ENABLE_WIN32_REGISTRY
- +
- +/* Define to be the last portion of registry key on windows hosts. */
- +#undef WIN32_REGISTRY_KEY
- +
- /* Define as 1 if you have catgets and don't want to use GNU gettext. */
- #undef HAVE_CATGETS
-
- Index: gcc-2.95.2/gcc/prefix.c
- ===================================================================
- RCS file: /homes/khan/src/CVSROOT/gcc-2.95.2/gcc/prefix.c,v
- retrieving revision 1.1.1.1
- diff -u -3 -p -r1.1.1.1 prefix.c
- --- gcc-2.95.2/gcc/prefix.c 1999/11/05 01:09:44 1.1.1.1
- +++ gcc-2.95.2/gcc/prefix.c 1999/11/05 08:13:37
- @@ -44,9 +44,10 @@ Boston, MA 02111-1307, USA. */
- -- If this is a Win32 OS, then the Registry will be examined for
- an entry of "key" in
-
- - HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\
- + HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\<KEY>
-
- - if found, that value will be used.
- + if found, that value will be used. <KEY> defaults to GCC version
- + string, but can be overridden at configuration time.
-
- -- If not found (or not a Win32 OS), the environment variable
- key_ROOT (the value of "key" concatenated with the constant "_ROOT")
- @@ -65,7 +66,7 @@ Boston, MA 02111-1307, USA. */
-
- #include "config.h"
- #include "system.h"
- -#ifdef _WIN32
- +#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
- #include <windows.h>
- #endif
- #include "prefix.h"
- @@ -76,7 +77,7 @@ static const char *get_key_value PROTO((
- static const char *translate_name PROTO((const char *));
- static char *save_string PROTO((const char *, int));
-
- -#ifdef _WIN32
- +#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
- static char *lookup_key PROTO((char *));
- static HKEY reg_key = (HKEY) INVALID_HANDLE_VALUE;
- #endif
- @@ -101,7 +102,7 @@ get_key_value (key)
- const char *prefix = 0;
- char *temp = 0;
-
- -#ifdef _WIN32
- +#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
- prefix = lookup_key (key);
- #endif
-
- @@ -187,7 +188,7 @@ save_string (s, len)
- return result;
- }
-
- -#ifdef _WIN32
- +#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
-
- /* Look up "key" in the registry, as above. */
-
- @@ -207,6 +208,10 @@ lookup_key (key)
-
- if (res == ERROR_SUCCESS)
- res = RegOpenKeyExA (reg_key, "Free Software Foundation", 0,
- + KEY_READ, ®_key);
- +
- + if (res == ERROR_SUCCESS)
- + res = RegOpenKeyExA (reg_key, WIN32_REGISTRY_KEY, 0,
- KEY_READ, ®_key);
-
- if (res != ERROR_SUCCESS)
-