aboutsummaryrefslogtreecommitdiff
path: root/gold
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2012-04-06 16:49:02 +0000
committerRoland McGrath <roland@gnu.org>2012-04-06 16:49:02 +0000
commit58797674628264ab9d71631970f74000dc522e81 (patch)
tree5d69c6f022fda9497d470dad70e1bf287fe33291 /gold
parente127cba8317b3641f8012db22b8008d84002132d (diff)
downloadbinutils-58797674628264ab9d71631970f74000dc522e81.zip
binutils-58797674628264ab9d71631970f74000dc522e81.tar.gz
binutils-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 'gold')
-rw-r--r--gold/ChangeLog12
-rw-r--r--gold/config.in9
-rwxr-xr-xgold/configure12
-rw-r--r--gold/configure.ac3
4 files changed, 29 insertions, 7 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog
index cc00632..e68190b 100644
--- a/gold/ChangeLog
+++ b/gold/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.ac (AC_CHECK_FUNCS): Add setlocale.
@@ -913,7 +919,7 @@
(get_section_name): New function.
(get_section_contents): New function.
(update_section_order): New function.
- (allow_section_ordering): New function.
+ (allow_section_ordering): New function.
(Plugin::load): Add the new interfaces to the transfer vector.
(Plugin_manager::load_plugins): New parameter.
(Plugin_manager::all_symbols_read): New parameter.
@@ -1979,7 +1985,7 @@
(Incremental_input_entry_reader::get_global_symbol_count): Rewrite.
(Incremental_input_entry_reader::get_output_symbol_index): Adjust
size of shared library info entry.
- * layout.cc (Layout::finish_dynamic_section): Don't test for
+ * layout.cc (Layout::finish_dynamic_section): Don't test for
incremental link when adding DT_NEEDED entries.
* object.h (Object::Object): Initialize new data member.
(Object::dynobj): New function.
@@ -3335,7 +3341,7 @@
(Arm_exidx_merge_section::section_contents_): New data member.
(Arm_input_section::Arm_input_section): Initialize original_contents_.
(Arm_input_section::~Arm_input_section): De-allocate memory.
- (Arm_input_section::original_contents_): New data member.
+ (Arm_input_section::original_contents_): New data member.
(Arm_exidx_fixup::process_exidx_section): Pass EXIDX section contents
in parameters instead of calling Object::section_contents without
locking.
diff --git a/gold/config.in b/gold/config.in
index 68ea1f6..dd6d827 100644
--- a/gold/config.in
+++ b/gold/config.in
@@ -84,6 +84,9 @@
/* Define if your <locale.h> file defines LC_MESSAGES. */
#undef HAVE_LC_MESSAGES
+/* Define to 1 if you have the <locale.h> header file. */
+#undef HAVE_LOCALE_H
+
/* Define to 1 if you have the `mallinfo' function. */
#undef HAVE_MALLINFO
@@ -108,6 +111,9 @@
/* Define to 1 if you have the `readv' function. */
#undef HAVE_READV
+/* Define to 1 if you have the `setlocale' function. */
+#undef HAVE_SETLOCALE
+
/* Define if struct stat has a field st_mtim with timespec for mtime */
#undef HAVE_STAT_ST_MTIM
@@ -117,9 +123,6 @@
/* 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
diff --git a/gold/configure b/gold/configure
index 04dd11e..745e727 100755
--- a/gold/configure
+++ b/gold/configure
@@ -7336,6 +7336,18 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
ac_compiler_gnu=$ac_cv_c_compiler_gnu
+for ac_header in locale.h
+do :
+ ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default"
+if test "x$ac_cv_header_locale_h" = x""yes; then :
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LOCALE_H 1
+_ACEOF
+
+fi
+
+done
+
for ac_func in setlocale
do :
ac_fn_c_check_func "$LINENO" "setlocale" "ac_cv_func_setlocale"
diff --git a/gold/configure.ac b/gold/configure.ac
index a6d1a59..ee53409 100644
--- a/gold/configure.ac
+++ b/gold/configure.ac
@@ -45,7 +45,7 @@ dnl "installed_linker" is the installed gold linker name.
default_ld=
AC_ARG_ENABLE(ld,
[[ --enable-ld[=ARG] build ld [ARG={default,yes,no}]]],
-[case "${enableval}" in
+[case "${enableval}" in
default)
default_ld=ld.bfd
;;
@@ -536,6 +536,7 @@ fi
AC_LANG_POP(C++)
+AC_CHECK_HEADERS(locale.h)
AC_CHECK_FUNCS(setlocale)
AM_LC_MESSAGES