diff options
author | Doug Kwan <dougkwan@google.com> | 2009-06-23 18:10:42 +0000 |
---|---|---|
committer | Doug Kwan <dougkwan@google.com> | 2009-06-23 18:10:42 +0000 |
commit | 3d857b98f555ee56c6fa6ed90c024424215574ed (patch) | |
tree | c68df6e845e52dc25b22b566e7d61de85004920f /gold/config.in | |
parent | 27aa8d6aa032b25160328cd92c78c4f8158fa0b7 (diff) | |
download | gdb-3d857b98f555ee56c6fa6ed90c024424215574ed.zip gdb-3d857b98f555ee56c6fa6ed90c024424215574ed.tar.gz gdb-3d857b98f555ee56c6fa6ed90c024424215574ed.tar.bz2 |
2009-06-23 Doug Kwan <dougkwan@google.com>
* Makefile.am (libgold_a_LIBADD): New.
(ld_new_DEPENDENCIES, ld_new_LDADD): Remove LIBOBJS
* Makefile.in: Regenerate.
* config.in (HAVE_DECL_MEMMEM, HAVE_DECL_STRNDUP): New.
* configure: Regenerate.
* configure.ac (AC_CHECK_DECLS): Add strndup and memmem.
* fileread.cc: Include sys/state.h
* gold.h: Declare memmem and strndup if found missing.
* gold_reloc.h: Include byteswap.h if HAVE_BYTESWAP_H is defined.
Diffstat (limited to 'gold/config.in')
-rw-r--r-- | gold/config.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gold/config.in b/gold/config.in index 1904650..82eaa07 100644 --- a/gold/config.in +++ b/gold/config.in @@ -39,10 +39,18 @@ /* Define to 1 if you have the declaration of `ffs', and to 0 if you don't. */ #undef HAVE_DECL_FFS +/* Define to 1 if you have the declaration of `memmem', and to 0 if you + don't. */ +#undef HAVE_DECL_MEMMEM + /* Define to 1 if you have the declaration of `snprintf', and to 0 if you don't. */ #undef HAVE_DECL_SNPRINTF +/* Define to 1 if you have the declaration of `strndup', and to 0 if you + don't. */ +#undef HAVE_DECL_STRNDUP + /* Define to 1 if you have the declaration of `strverscmp', and to 0 if you don't. */ #undef HAVE_DECL_STRVERSCMP |