From 54abc854d09c5b411a22406de19cbd7cdf88e748 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Fri, 20 Jan 2006 22:42:46 +0000 Subject: [PATCH] 2006-01-20 Jeff Johnston * acconfig.h: New file to generate newlib.hin from. * newlib.hin: Regenerated. * stamp-h.in: Regenerated. * Makefile.am: Add ACLOCAL_AMFLAGS so aclocal can be called automatically. * Makefile.in: Regenerated. * acinclude.m4: Add proper comment for hack in previous change. * aclocal.m4 */aclocal.m4: Regenerated. * configure */configure: Regenerated. --- newlib/ChangeLog | 12 ++ newlib/Makefile.am | 1 + newlib/Makefile.in | 11 +- newlib/acconfig.h | 149 ++++++++++++++++++ newlib/aclocal.m4 | 2 +- newlib/configure | 129 ++++++--------- newlib/doc/aclocal.m4 | 2 +- newlib/doc/configure | 2 +- newlib/libc/aclocal.m4 | 2 +- newlib/libc/configure | 2 +- newlib/libc/machine/aclocal.m4 | 2 +- newlib/libc/machine/configure | 2 +- newlib/libc/machine/i386/aclocal.m4 | 2 +- newlib/libc/machine/i386/configure | 2 +- newlib/libc/sys/aclocal.m4 | 2 +- newlib/libc/sys/configure | 2 +- newlib/libc/sys/linux/aclocal.m4 | 2 +- newlib/libc/sys/linux/configure | 2 +- newlib/libc/sys/linux/linuxthreads/aclocal.m4 | 2 +- newlib/libc/sys/linux/linuxthreads/configure | 2 +- .../sys/linux/linuxthreads/machine/aclocal.m4 | 2 +- .../sys/linux/linuxthreads/machine/configure | 2 +- .../linuxthreads/machine/i386/aclocal.m4 | 2 +- .../linux/linuxthreads/machine/i386/configure | 2 +- newlib/libc/sys/linux/machine/aclocal.m4 | 2 +- newlib/libc/sys/linux/machine/configure | 2 +- newlib/libc/sys/linux/machine/i386/aclocal.m4 | 2 +- newlib/libc/sys/linux/machine/i386/configure | 2 +- newlib/libm/aclocal.m4 | 2 +- newlib/libm/configure | 2 +- newlib/libm/machine/aclocal.m4 | 2 +- newlib/libm/machine/configure | 2 +- newlib/libm/machine/i386/aclocal.m4 | 2 +- newlib/libm/machine/i386/configure | 2 +- newlib/newlib.hin | 21 ++- newlib/stamp-h.in | 1 + 36 files changed, 263 insertions(+), 119 deletions(-) create mode 100644 newlib/acconfig.h diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 06790bf37..c07bd637c 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,15 @@ +2006-01-20 Jeff Johnston + + * acconfig.h: New file to generate newlib.hin from. + * newlib.hin: Regenerated. + * stamp-h.in: Regenerated. + * Makefile.am: Add ACLOCAL_AMFLAGS so aclocal can be + called automatically. + * Makefile.in: Regenerated. + * acinclude.m4: Add proper comment for hack in previous change. + * aclocal.m4 */aclocal.m4: Regenerated. + * configure */configure: Regenerated. + 2006-01-11 Jeff Johnston * acinclude.m4: Add hack to prevent INSTALL in subdirs diff --git a/newlib/Makefile.am b/newlib/Makefile.am index 1cb2d31c3..f249ce49c 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -1,6 +1,7 @@ ## Process this file with automake to generate Makefile.in AUTOMAKE_OPTIONS = cygnus dejagnu +ACLOCAL_AMFLAGS = -I . # Multilib support variables. MULTISRCTOP = diff --git a/newlib/Makefile.in b/newlib/Makefile.in index 3cfeab722..6d9dc258c 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -112,6 +112,7 @@ oext = @oext@ sys_dir = @sys_dir@ AUTOMAKE_OPTIONS = cygnus dejagnu +ACLOCAL_AMFLAGS = -I . # Multilib support variables. MULTISRCTOP = @@ -211,7 +212,8 @@ LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ DATA = $(noinst_DATA) $(toollib_DATA) DIST_COMMON = README ./stamp-h.in ChangeLog Makefile.am Makefile.in \ -NEWS acinclude.m4 aclocal.m4 configure configure.in newlib.hin +NEWS acconfig.h acinclude.m4 aclocal.m4 configure configure.in \ +newlib.hin DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) @@ -234,8 +236,9 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) \ && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status -$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in acinclude.m4 - cd $(srcdir) && $(ACLOCAL) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in acinclude.m4 \ + ./acinclude.m4 ./aclocal.m4 ./libtool.m4 + cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck @@ -257,7 +260,7 @@ $(srcdir)/newlib.hin: @MAINTAINER_MODE_TRUE@$(srcdir)/stamp-h.in rm -f $(srcdir)/stamp-h.in; \ $(MAKE) $(srcdir)/stamp-h.in; \ else :; fi -$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h cd $(top_srcdir) && $(AUTOHEADER) @echo timestamp > $(srcdir)/stamp-h.in 2> /dev/null diff --git a/newlib/acconfig.h b/newlib/acconfig.h new file mode 100644 index 000000000..033951c21 --- /dev/null +++ b/newlib/acconfig.h @@ -0,0 +1,149 @@ +#ifndef __NEWLIB_H__ + +#define __NEWLIB_H__ 1 +@TOP@ + +/* EL/IX level */ +#undef _ELIX_LEVEL + +/* Newlib version */ +#undef _NEWLIB_VERSION + +/* long long type support in IO functions like printf/scanf enabled */ +#undef _WANT_IO_LONG_LONG + +/* long double type support in IO functions like printf/scanf enabled */ +#undef _WANT_IO_LONG_DOUBLE + +/* Positional argument support in printf functions enabled. */ +#undef _WANT_IO_POS_ARGS + +/* Multibyte supported */ +#undef _MB_CAPABLE + +/* MB_LEN_MAX */ +#undef _MB_LEN_MAX + +/* ICONV enabled */ +#undef _ICONV_ENABLED + +/* Enable ICONV external CCS files loading capabilities */ +#undef _ICONV_ENABLE_EXTERNAL_CCS + +/* Define if the linker supports .preinit_array/.init_array/.fini_array + * sections. */ +#undef HAVE_INITFINI_ARRAY + +/* Define if the compiler supports aliasing an array to an address. */ +#undef _HAVE_ARRAY_ALIASING +@BOTTOM@ +/* + * Iconv encodings enabled ("to" direction) + */ +#undef _ICONV_TO_ENCODING_BIG5 +#undef _ICONV_TO_ENCODING_CP775 +#undef _ICONV_TO_ENCODING_CP850 +#undef _ICONV_TO_ENCODING_CP852 +#undef _ICONV_TO_ENCODING_CP855 +#undef _ICONV_TO_ENCODING_CP866 +#undef _ICONV_TO_ENCODING_EUC_JP +#undef _ICONV_TO_ENCODING_EUC_TW +#undef _ICONV_TO_ENCODING_EUC_KR +#undef _ICONV_TO_ENCODING_ISO_8859_1 +#undef _ICONV_TO_ENCODING_ISO_8859_10 +#undef _ICONV_TO_ENCODING_ISO_8859_11 +#undef _ICONV_TO_ENCODING_ISO_8859_13 +#undef _ICONV_TO_ENCODING_ISO_8859_14 +#undef _ICONV_TO_ENCODING_ISO_8859_15 +#undef _ICONV_TO_ENCODING_ISO_8859_2 +#undef _ICONV_TO_ENCODING_ISO_8859_3 +#undef _ICONV_TO_ENCODING_ISO_8859_4 +#undef _ICONV_TO_ENCODING_ISO_8859_5 +#undef _ICONV_TO_ENCODING_ISO_8859_6 +#undef _ICONV_TO_ENCODING_ISO_8859_7 +#undef _ICONV_TO_ENCODING_ISO_8859_8 +#undef _ICONV_TO_ENCODING_ISO_8859_9 +#undef _ICONV_TO_ENCODING_ISO_IR_111 +#undef _ICONV_TO_ENCODING_KOI8_R +#undef _ICONV_TO_ENCODING_KOI8_RU +#undef _ICONV_TO_ENCODING_KOI8_U +#undef _ICONV_TO_ENCODING_KOI8_UNI +#undef _ICONV_TO_ENCODING_UCS_2 +#undef _ICONV_TO_ENCODING_UCS_2_INTERNAL +#undef _ICONV_TO_ENCODING_UCS_2BE +#undef _ICONV_TO_ENCODING_UCS_2LE +#undef _ICONV_TO_ENCODING_UCS_4 +#undef _ICONV_TO_ENCODING_UCS_4_INTERNAL +#undef _ICONV_TO_ENCODING_UCS_4BE +#undef _ICONV_TO_ENCODING_UCS_4LE +#undef _ICONV_TO_ENCODING_US_ASCII +#undef _ICONV_TO_ENCODING_UTF_16 +#undef _ICONV_TO_ENCODING_UTF_16BE +#undef _ICONV_TO_ENCODING_UTF_16LE +#undef _ICONV_TO_ENCODING_UTF_8 +#undef _ICONV_TO_ENCODING_WIN_1250 +#undef _ICONV_TO_ENCODING_WIN_1251 +#undef _ICONV_TO_ENCODING_WIN_1252 +#undef _ICONV_TO_ENCODING_WIN_1253 +#undef _ICONV_TO_ENCODING_WIN_1254 +#undef _ICONV_TO_ENCODING_WIN_1255 +#undef _ICONV_TO_ENCODING_WIN_1256 +#undef _ICONV_TO_ENCODING_WIN_1257 +#undef _ICONV_TO_ENCODING_WIN_1258 + +/* + * Iconv encodings enabled ("from" direction) + */ +#undef _ICONV_FROM_ENCODING_BIG5 +#undef _ICONV_FROM_ENCODING_CP775 +#undef _ICONV_FROM_ENCODING_CP850 +#undef _ICONV_FROM_ENCODING_CP852 +#undef _ICONV_FROM_ENCODING_CP855 +#undef _ICONV_FROM_ENCODING_CP866 +#undef _ICONV_FROM_ENCODING_EUC_JP +#undef _ICONV_FROM_ENCODING_EUC_TW +#undef _ICONV_FROM_ENCODING_EUC_KR +#undef _ICONV_FROM_ENCODING_ISO_8859_1 +#undef _ICONV_FROM_ENCODING_ISO_8859_10 +#undef _ICONV_FROM_ENCODING_ISO_8859_11 +#undef _ICONV_FROM_ENCODING_ISO_8859_13 +#undef _ICONV_FROM_ENCODING_ISO_8859_14 +#undef _ICONV_FROM_ENCODING_ISO_8859_15 +#undef _ICONV_FROM_ENCODING_ISO_8859_2 +#undef _ICONV_FROM_ENCODING_ISO_8859_3 +#undef _ICONV_FROM_ENCODING_ISO_8859_4 +#undef _ICONV_FROM_ENCODING_ISO_8859_5 +#undef _ICONV_FROM_ENCODING_ISO_8859_6 +#undef _ICONV_FROM_ENCODING_ISO_8859_7 +#undef _ICONV_FROM_ENCODING_ISO_8859_8 +#undef _ICONV_FROM_ENCODING_ISO_8859_9 +#undef _ICONV_FROM_ENCODING_ISO_IR_111 +#undef _ICONV_FROM_ENCODING_KOI8_R +#undef _ICONV_FROM_ENCODING_KOI8_RU +#undef _ICONV_FROM_ENCODING_KOI8_U +#undef _ICONV_FROM_ENCODING_KOI8_UNI +#undef _ICONV_FROM_ENCODING_UCS_2 +#undef _ICONV_FROM_ENCODING_UCS_2_INTERNAL +#undef _ICONV_FROM_ENCODING_UCS_2BE +#undef _ICONV_FROM_ENCODING_UCS_2LE +#undef _ICONV_FROM_ENCODING_UCS_4 +#undef _ICONV_FROM_ENCODING_UCS_4_INTERNAL +#undef _ICONV_FROM_ENCODING_UCS_4BE +#undef _ICONV_FROM_ENCODING_UCS_4LE +#undef _ICONV_FROM_ENCODING_US_ASCII +#undef _ICONV_FROM_ENCODING_UTF_16 +#undef _ICONV_FROM_ENCODING_UTF_16BE +#undef _ICONV_FROM_ENCODING_UTF_16LE +#undef _ICONV_FROM_ENCODING_UTF_8 +#undef _ICONV_FROM_ENCODING_WIN_1250 +#undef _ICONV_FROM_ENCODING_WIN_1251 +#undef _ICONV_FROM_ENCODING_WIN_1252 +#undef _ICONV_FROM_ENCODING_WIN_1253 +#undef _ICONV_FROM_ENCODING_WIN_1254 +#undef _ICONV_FROM_ENCODING_WIN_1255 +#undef _ICONV_FROM_ENCODING_WIN_1256 +#undef _ICONV_FROM_ENCODING_WIN_1257 +#undef _ICONV_FROM_ENCODING_WIN_1258 + +#endif /* !__NEWLIB_H__ */ + diff --git a/newlib/aclocal.m4 b/newlib/aclocal.m4 index cf5c8c34b..865bcb3f6 100644 --- a/newlib/aclocal.m4 +++ b/newlib/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/configure b/newlib/configure index b1401ea76..9ca4ada28 100755 --- a/newlib/configure +++ b/newlib/configure @@ -1550,7 +1550,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 @@ -1699,34 +1699,6 @@ OBJEXT=${oext} -# AC_CACHE_VAL(ac_cv_path_install, -# [ 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 -# /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; -# *) -# # OSF1 and SCO ODT 3.0 have their own names for install. -# # Don't use installbsd from OSF since it installs stuff as root -# # by default. -# for ac_prog in ginstall scoinst install; do -# if test -f $ac_dir/$ac_prog; then -# if test $ac_prog = install && -# grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then -# # AIX install. It has an incompatible calling convention. -# : -# else -# ac_cv_path_install="$ac_dir/$ac_prog -c" -# break 2 -# fi -# fi -# done -# ;; -# esac -# done -# IFS="$ac_save_IFS" -# ])dnl - if test "${use_libtool}" = "yes"; then # Check whether --enable-shared or --disable-shared was given. @@ -1801,7 +1773,7 @@ fi # 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:1805: checking for $ac_word" >&5 +echo "configure:1777: 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 @@ -1831,7 +1803,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:1835: checking for $ac_word" >&5 +echo "configure:1807: 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 @@ -1882,7 +1854,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:1886: checking for $ac_word" >&5 +echo "configure:1858: 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 @@ -1914,7 +1886,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:1918: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:1890: 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. @@ -1925,12 +1897,12 @@ cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext << EOF -#line 1929 "configure" +#line 1901 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:1934: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1906: \"$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 @@ -1956,12 +1928,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:1960: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:1932: 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:1965: checking whether we are using GNU C" >&5 +echo "configure:1937: 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 @@ -1970,7 +1942,7 @@ else yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1974: \"$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:1946: \"$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 @@ -1989,7 +1961,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:1993: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:1965: 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 @@ -2032,7 +2004,7 @@ ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 -echo "configure:2036: checking for ld used by GCC" >&5 +echo "configure:2008: checking for ld used by GCC" >&5 case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw @@ -2062,10 +2034,10 @@ echo "configure:2036: checking for ld used by GCC" >&5 esac elif test "$with_gnu_ld" = yes; then echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 -echo "configure:2066: checking for GNU ld" >&5 +echo "configure:2038: checking for GNU ld" >&5 else echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 -echo "configure:2069: checking for non-GNU ld" >&5 +echo "configure:2041: checking for non-GNU ld" >&5 fi if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2100,7 +2072,7 @@ else fi test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 -echo "configure:2104: checking if the linker ($LD) is GNU ld" >&5 +echo "configure:2076: checking if the linker ($LD) is GNU ld" >&5 if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2117,7 +2089,7 @@ with_gnu_ld=$lt_cv_prog_gnu_ld echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 -echo "configure:2121: checking for $LD option to reload object files" >&5 +echo "configure:2093: checking for $LD option to reload object files" >&5 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2129,7 +2101,7 @@ reload_flag=$lt_cv_ld_reload_flag test -n "$reload_flag" && reload_flag=" $reload_flag" echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 -echo "configure:2133: checking for BSD-compatible nm" >&5 +echo "configure:2105: checking for BSD-compatible nm" >&5 if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2167,7 +2139,7 @@ NM="$lt_cv_path_NM" echo "$ac_t""$NM" 1>&6 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 -echo "configure:2171: checking whether ln -s works" >&5 +echo "configure:2143: checking whether ln -s works" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2188,7 +2160,7 @@ else fi echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 -echo "configure:2192: checking how to recognise dependant libraries" >&5 +echo "configure:2164: checking how to recognise dependant libraries" >&5 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2361,13 +2333,13 @@ file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method echo $ac_n "checking for object suffix""... $ac_c" 1>&6 -echo "configure:2365: checking for object suffix" >&5 +echo "configure:2337: checking for object suffix" >&5 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else rm -f conftest* echo 'int i = 1;' > conftest.$ac_ext -if { (eval echo configure:2371: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2343: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then for ac_file in conftest.*; do case $ac_file in *.c) ;; @@ -2391,7 +2363,7 @@ case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 -echo "configure:2395: checking for ${ac_tool_prefix}file" >&5 +echo "configure:2367: checking for ${ac_tool_prefix}file" >&5 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2453,7 +2425,7 @@ fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then echo $ac_n "checking for file""... $ac_c" 1>&6 -echo "configure:2457: checking for file" >&5 +echo "configure:2429: checking for file" >&5 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2524,7 +2496,7 @@ esac # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2528: checking for $ac_word" >&5 +echo "configure:2500: 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 @@ -2556,7 +2528,7 @@ if test -n "$ac_tool_prefix"; then # 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:2560: checking for $ac_word" >&5 +echo "configure:2532: 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 @@ -2591,7 +2563,7 @@ fi # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2595: checking for $ac_word" >&5 +echo "configure:2567: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2623,7 +2595,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2627: checking for $ac_word" >&5 +echo "configure:2599: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2690,8 +2662,8 @@ test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic" case $host in *-*-irix6*) # Find out which ABI we are using. - echo '#line 2694 "configure"' > conftest.$ac_ext - if { (eval echo configure:2695: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + echo '#line 2666 "configure"' > conftest.$ac_ext + if { (eval echo configure:2667: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" @@ -2710,7 +2682,7 @@ case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext - if { (eval echo configure:2714: \"$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 case "`/usr/bin/file conftest.o`" in *ELF-32*) HPUX_IA64_MODE="32" @@ -2728,7 +2700,7 @@ ia64-*-hpux*) SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 -echo "configure:2732: checking whether the C compiler needs -belf" >&5 +echo "configure:2704: checking whether the C compiler needs -belf" >&5 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2741,14 +2713,14 @@ ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$a cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2724: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* lt_cv_cc_needs_belf=yes else @@ -2778,7 +2750,7 @@ echo "$ac_t""$lt_cv_cc_needs_belf" 1>&6 # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2782: checking for $ac_word" >&5 +echo "configure:2754: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2810,7 +2782,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2814: checking for $ac_word" >&5 +echo "configure:2786: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2845,7 +2817,7 @@ fi # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. set dummy ${ac_tool_prefix}as; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2849: checking for $ac_word" >&5 +echo "configure:2821: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2877,7 +2849,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "as", so it can be a program name with args. set dummy as; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2881: checking for $ac_word" >&5 +echo "configure:2853: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2912,7 +2884,7 @@ fi # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2916: checking for $ac_word" >&5 +echo "configure:2888: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2944,7 +2916,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2948: checking for $ac_word" >&5 +echo "configure:2920: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2980,12 +2952,12 @@ fi # recent cygwin and mingw systems supply a stub DllMain which the user # can override, but on older systems we have to supply one echo $ac_n "checking if libtool should supply DllMain function""... $ac_c" 1>&6 -echo "configure:2984: checking if libtool should supply DllMain function" >&5 +echo "configure:2956: checking if libtool should supply DllMain function" >&5 if eval "test \"`echo '$''{'lt_cv_need_dllmain'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2969: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* lt_cv_need_dllmain=no else @@ -3014,19 +2986,19 @@ echo "$ac_t""$lt_cv_need_dllmain" 1>&6 SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -mdll" echo $ac_n "checking how to link DLLs""... $ac_c" 1>&6 -echo "configure:3018: checking how to link DLLs" >&5 +echo "configure:2990: checking how to link DLLs" >&5 if eval "test \"`echo '$''{'lt_cv_cc_dll_switch'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3002: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* lt_cv_cc_dll_switch=-mdll else @@ -3140,7 +3112,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:3144: checking for $ac_word" >&5 +echo "configure:3116: 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 @@ -3457,7 +3429,7 @@ EOF fi; echo $ac_n "checking for .preinit_array/.init_array/.fini_array support""... $ac_c" 1>&6 -echo "configure:3461: checking for .preinit_array/.init_array/.fini_array support" >&5 +echo "configure:3433: checking for .preinit_array/.init_array/.fini_array support" >&5 if eval "test \"`echo '$''{'libc_cv_initfinit_array'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3468,7 +3440,7 @@ int foo (void) { return 1; } int (*fp) (void) __attribute__ ((section (".init_array"))) = foo; EOF if { ac_try='${CC} $CFLAGS $CPPFLAGS $LDFLAGS -o conftest conftest.c - -static -nostartfiles -nostdlib 1>&AS_MESSAGE_LOG_FD'; { (eval echo configure:3472: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + -static -nostartfiles -nostdlib 1>&AS_MESSAGE_LOG_FD'; { (eval echo configure:3444: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then if readelf -S conftest | grep -e INIT_ARRAY > /dev/null; then libc_cv_initfinit_array=yes @@ -3491,7 +3463,7 @@ EOF fi echo $ac_n "checking for array aliasing support""... $ac_c" 1>&6 -echo "configure:3495: checking for array aliasing support" >&5 +echo "configure:3467: checking for array aliasing support" >&5 if eval "test \"`echo '$''{'libc_cv_array_aliasing'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3500,7 +3472,7 @@ char x3 = { 'a', 'b', 'c' }; extern char y2 __attribute__((alias ("x+1"))); EOF if { ac_try='${CC} $CFLAGS $CPPFLAGS -c conftest.c - 1>&AS_MESSAGE_LOG_FD'; { (eval echo configure:3504: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } + 1>&AS_MESSAGE_LOG_FD'; { (eval echo configure:3476: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then libc_cv_array_aliasing=yes else @@ -3955,7 +3927,6 @@ CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} newlib_basedir=${newlib_basedir} CC="${CC}" LDFLAGS="${LDFLAGS}" -INSTALL="${INSTALL}" EOF cat >> $CONFIG_STATUS <<\EOF diff --git a/newlib/doc/aclocal.m4 b/newlib/doc/aclocal.m4 index 55d5e67ce..b03b0d2ed 100644 --- a/newlib/doc/aclocal.m4 +++ b/newlib/doc/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/doc/configure b/newlib/doc/configure index 2ae249818..47e58888c 100755 --- a/newlib/doc/configure +++ b/newlib/doc/configure @@ -1419,7 +1419,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libc/aclocal.m4 b/newlib/libc/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libc/aclocal.m4 +++ b/newlib/libc/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libc/configure b/newlib/libc/configure index 3f849c831..ac29def3c 100755 --- a/newlib/libc/configure +++ b/newlib/libc/configure @@ -1445,7 +1445,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libc/machine/aclocal.m4 b/newlib/libc/machine/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libc/machine/aclocal.m4 +++ b/newlib/libc/machine/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libc/machine/configure b/newlib/libc/machine/configure index afb4ba2fc..72835683d 100755 --- a/newlib/libc/machine/configure +++ b/newlib/libc/machine/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libc/machine/i386/aclocal.m4 b/newlib/libc/machine/i386/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libc/machine/i386/aclocal.m4 +++ b/newlib/libc/machine/i386/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libc/machine/i386/configure b/newlib/libc/machine/i386/configure index dcc825788..60bb861a8 100755 --- a/newlib/libc/machine/i386/configure +++ b/newlib/libc/machine/i386/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libc/sys/aclocal.m4 b/newlib/libc/sys/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libc/sys/aclocal.m4 +++ b/newlib/libc/sys/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libc/sys/configure b/newlib/libc/sys/configure index 746727f4d..04436d960 100755 --- a/newlib/libc/sys/configure +++ b/newlib/libc/sys/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libc/sys/linux/aclocal.m4 b/newlib/libc/sys/linux/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libc/sys/linux/aclocal.m4 +++ b/newlib/libc/sys/linux/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libc/sys/linux/configure b/newlib/libc/sys/linux/configure index b71b385e6..202a986e1 100755 --- a/newlib/libc/sys/linux/configure +++ b/newlib/libc/sys/linux/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libc/sys/linux/linuxthreads/aclocal.m4 b/newlib/libc/sys/linux/linuxthreads/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libc/sys/linux/linuxthreads/aclocal.m4 +++ b/newlib/libc/sys/linux/linuxthreads/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libc/sys/linux/linuxthreads/configure b/newlib/libc/sys/linux/linuxthreads/configure index c332ab30d..65714818c 100755 --- a/newlib/libc/sys/linux/linuxthreads/configure +++ b/newlib/libc/sys/linux/linuxthreads/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libc/sys/linux/linuxthreads/machine/aclocal.m4 b/newlib/libc/sys/linux/linuxthreads/machine/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libc/sys/linux/linuxthreads/machine/aclocal.m4 +++ b/newlib/libc/sys/linux/linuxthreads/machine/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libc/sys/linux/linuxthreads/machine/configure b/newlib/libc/sys/linux/linuxthreads/machine/configure index f717255df..32cb952b1 100755 --- a/newlib/libc/sys/linux/linuxthreads/machine/configure +++ b/newlib/libc/sys/linux/linuxthreads/machine/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libc/sys/linux/linuxthreads/machine/i386/aclocal.m4 b/newlib/libc/sys/linux/linuxthreads/machine/i386/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libc/sys/linux/linuxthreads/machine/i386/aclocal.m4 +++ b/newlib/libc/sys/linux/linuxthreads/machine/i386/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libc/sys/linux/linuxthreads/machine/i386/configure b/newlib/libc/sys/linux/linuxthreads/machine/i386/configure index a2c0c3c26..dfd1c9e65 100755 --- a/newlib/libc/sys/linux/linuxthreads/machine/i386/configure +++ b/newlib/libc/sys/linux/linuxthreads/machine/i386/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libc/sys/linux/machine/aclocal.m4 b/newlib/libc/sys/linux/machine/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libc/sys/linux/machine/aclocal.m4 +++ b/newlib/libc/sys/linux/machine/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libc/sys/linux/machine/configure b/newlib/libc/sys/linux/machine/configure index 933e26978..3c3167990 100755 --- a/newlib/libc/sys/linux/machine/configure +++ b/newlib/libc/sys/linux/machine/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libc/sys/linux/machine/i386/aclocal.m4 b/newlib/libc/sys/linux/machine/i386/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libc/sys/linux/machine/i386/aclocal.m4 +++ b/newlib/libc/sys/linux/machine/i386/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libc/sys/linux/machine/i386/configure b/newlib/libc/sys/linux/machine/i386/configure index 530462a9f..f957f6692 100755 --- a/newlib/libc/sys/linux/machine/i386/configure +++ b/newlib/libc/sys/linux/machine/i386/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libm/aclocal.m4 b/newlib/libm/aclocal.m4 index 9171eecc9..34da4a63f 100644 --- a/newlib/libm/aclocal.m4 +++ b/newlib/libm/aclocal.m4 @@ -178,7 +178,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libm/configure b/newlib/libm/configure index d0471707c..075165c8d 100755 --- a/newlib/libm/configure +++ b/newlib/libm/configure @@ -1455,7 +1455,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libm/machine/aclocal.m4 b/newlib/libm/machine/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libm/machine/aclocal.m4 +++ b/newlib/libm/machine/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libm/machine/configure b/newlib/libm/machine/configure index 78a7d01fb..09ca607a9 100755 --- a/newlib/libm/machine/configure +++ b/newlib/libm/machine/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/libm/machine/i386/aclocal.m4 b/newlib/libm/machine/i386/aclocal.m4 index 82647f0e1..35519acf9 100644 --- a/newlib/libm/machine/i386/aclocal.m4 +++ b/newlib/libm/machine/i386/aclocal.m4 @@ -165,7 +165,7 @@ AC_CHECK_TOOL(RANLIB, ranlib, :) AC_PROG_INSTALL -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE diff --git a/newlib/libm/machine/i386/configure b/newlib/libm/machine/i386/configure index 5404c24bc..6a01f4342 100755 --- a/newlib/libm/machine/i386/configure +++ b/newlib/libm/machine/i386/configure @@ -1431,7 +1431,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -# Hack +# Hack to ensure that INSTALL won't be set to "../" with autoconf 2.13. */ ac_given_INSTALL=$INSTALL echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 diff --git a/newlib/newlib.hin b/newlib/newlib.hin index b08160cdb..5cd520c96 100644 --- a/newlib/newlib.hin +++ b/newlib/newlib.hin @@ -1,3 +1,4 @@ +/* newlib.hin. Generated automatically from configure.in by autoheader. */ #ifndef __NEWLIB_H__ #define __NEWLIB_H__ 1 @@ -29,6 +30,19 @@ /* Enable ICONV external CCS files loading capabilities */ #undef _ICONV_ENABLE_EXTERNAL_CCS +/* Define if the linker supports .preinit_array/.init_array/.fini_array + * sections. */ +#undef HAVE_INITFINI_ARRAY + +/* Define if the compiler supports aliasing an array to an address. */ +#undef _HAVE_ARRAY_ALIASING + +/* Name of package */ +#undef PACKAGE + +/* Version number of package */ +#undef VERSION + /* * Iconv encodings enabled ("to" direction) */ @@ -137,12 +151,5 @@ #undef _ICONV_FROM_ENCODING_WIN_1257 #undef _ICONV_FROM_ENCODING_WIN_1258 -/* Define if the linker supports .preinit_array/.init_array/.fini_array - * sections. */ -#undef HAVE_INITFINI_ARRAY - -/* Define if the compiler supports aliasing an array to an address. */ -#undef _HAVE_ARRAY_ALIASING - #endif /* !__NEWLIB_H__ */ diff --git a/newlib/stamp-h.in b/newlib/stamp-h.in index e69de29bb..9788f7023 100644 --- a/newlib/stamp-h.in +++ b/newlib/stamp-h.in @@ -0,0 +1 @@ +timestamp