diff options
author | Roland McGrath <roland@gnu.org> | 2012-04-06 16:49:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2012-04-06 16:49:02 +0000 |
commit | 58797674628264ab9d71631970f74000dc522e81 (patch) | |
tree | 5d69c6f022fda9497d470dad70e1bf287fe33291 /ld | |
parent | e127cba8317b3641f8012db22b8008d84002132d (diff) | |
download | gdb-58797674628264ab9d71631970f74000dc522e81.zip gdb-58797674628264ab9d71631970f74000dc522e81.tar.gz gdb-58797674628264ab9d71631970f74000dc522e81.tar.bz2 |
binutils/
2012-04-06 Roland McGrath <mcgrathr@google.com>
* configure.in (AC_CHECK_HEADERS): Add locale.h.
* config.in: Regenerate.
* configure: Regenerate.
gas/
2012-04-06 Roland McGrath <mcgrathr@google.com>
* configure.in (AC_CHECK_HEADERS): Add locale.h.
* config.in: Regenerate.
* configure: Regenerate.
gold/
2012-04-06 Roland McGrath <mcgrathr@google.com>
* configure.in (AC_CHECK_HEADERS): Add locale.h.
* config.in: Regenerate.
* configure: Regenerate.
ld/
2012-04-06 Roland McGrath <mcgrathr@google.com>
* configure.in (AC_CHECK_HEADERS): Add locale.h.
* config.in: Regenerate.
* configure: Regenerate.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/config.in | 13 | ||||
-rwxr-xr-x | ld/configure | 2 | ||||
-rw-r--r-- | ld/configure.in | 2 |
4 files changed, 16 insertions, 7 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index cd3e4cc..ebad05a 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2012-04-06 Roland McGrath <mcgrathr@google.com> + + * configure.in (AC_CHECK_HEADERS): Add locale.h. + * config.in: Regenerate. + * configure: Regenerate. + 2012-04-05 Nick Clifton <nickc@redhat.com> * configure.in (AC_CHECK_FUNCS): Add setlocale. diff --git a/ld/config.in b/ld/config.in index fc013fa..0a3219e 100644 --- a/ld/config.in +++ b/ld/config.in @@ -73,6 +73,9 @@ /* Define to 1 if you have the <limits.h> header file. */ #undef HAVE_LIMITS_H +/* Define to 1 if you have the <locale.h> header file. */ +#undef HAVE_LOCALE_H + /* Define to 1 if you have the `lseek' function. */ #undef HAVE_LSEEK @@ -94,15 +97,15 @@ /* Define to 1 if you have the `sbrk' function. */ #undef HAVE_SBRK +/* Define to 1 if you have the `setlocale' function. */ +#undef HAVE_SETLOCALE + /* Define to 1 if you have the <stdint.h> header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H -/* Define to 1 if you have the `setlocale' function. */ -#undef HAVE_SETLOCALE - /* Define to 1 if you have the <strings.h> header file. */ #undef HAVE_STRINGS_H @@ -169,8 +172,8 @@ /* Define to the version of this package. */ #undef PACKAGE_VERSION -/* The size of `long', as computed by sizeof. */ -#undef SIZEOF_LONG +/* The size of `void *', as computed by sizeof. */ +#undef SIZEOF_VOID_P /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS diff --git a/ld/configure b/ld/configure index a41921c..d087605 100755 --- a/ld/configure +++ b/ld/configure @@ -16188,7 +16188,7 @@ do_compare="$gcc_cv_prog_cmp_skip" -for ac_header in string.h strings.h stdlib.h unistd.h elf-hints.h limits.h sys/param.h +for ac_header in string.h strings.h stdlib.h unistd.h elf-hints.h limits.h locale.h sys/param.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" diff --git a/ld/configure.in b/ld/configure.in index 99648cf..b29923c 100644 --- a/ld/configure.in +++ b/ld/configure.in @@ -162,7 +162,7 @@ AC_SUBST(HOSTING_CRT0) AC_SUBST(HOSTING_LIBS) AC_SUBST(NATIVE_LIB_DIRS) -AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h elf-hints.h limits.h sys/param.h) +AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h elf-hints.h limits.h locale.h sys/param.h) AC_CHECK_HEADERS(fcntl.h sys/file.h sys/time.h sys/stat.h) AC_CHECK_FUNCS(glob mkstemp realpath sbrk setlocale waitpid) AC_CHECK_FUNCS(open lseek close) |