diff options
author | Jim Wilson <wilson@tuliptree.org> | 2005-06-09 18:39:34 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 2005-06-09 18:39:34 +0000 |
commit | 502bdb00ee094e41445a0d3458a2848f8adcca57 (patch) | |
tree | 34623b2353bc9f821f4472a246b1a53878ae16cf /ld/config.in | |
parent | f9ecb0a4402c67583df83bebec0c6ae3191e1e88 (diff) | |
download | gdb-502bdb00ee094e41445a0d3458a2848f8adcca57.zip gdb-502bdb00ee094e41445a0d3458a2848f8adcca57.tar.gz gdb-502bdb00ee094e41445a0d3458a2848f8adcca57.tar.bz2 |
configure clean up patch from Steve Ellcey.
* configure.in (AM_BINUTILS_WARNINGS): Add.
(BFD_NEED_DECLARATION) Replace with AC_CHECK_DECLS.
* config.in: Regenerate.
* configure: Regenerate.
* sysdep.h (NEED_DECLARATION_*): Replace with HAVE_DECL_*
* ldmain.c: Ditto.
Diffstat (limited to 'ld/config.in')
-rw-r--r-- | ld/config.in | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/ld/config.in b/ld/config.in index 09a084e..ab73c6e 100644 --- a/ld/config.in +++ b/ld/config.in @@ -27,9 +27,29 @@ /* Define to 1 if you have the `dcgettext' function. */ #undef HAVE_DCGETTEXT +/* Define to 1 if you have the declaration of `environ', and to 0 if you + don't. */ +#undef HAVE_DECL_ENVIRON + +/* Define to 1 if you have the declaration of `free', and to 0 if you don't. + */ +#undef HAVE_DECL_FREE + +/* Define to 1 if you have the declaration of `getenv', and to 0 if you don't. + */ +#undef HAVE_DECL_GETENV + /* Is the prototype for getopt in <unistd.h> in the expected format? */ #undef HAVE_DECL_GETOPT +/* Define to 1 if you have the declaration of `sbrk', and to 0 if you don't. + */ +#undef HAVE_DECL_SBRK + +/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't. + */ +#undef HAVE_DECL_STRSTR + /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'. */ #undef HAVE_DIRENT_H @@ -144,21 +164,6 @@ /* Define to 1 if you have the `__argz_stringify' function. */ #undef HAVE___ARGZ_STRINGIFY -/* Define if environ is not declared in system header files. */ -#undef NEED_DECLARATION_ENVIRON - -/* Define if free is not declared in system header files. */ -#undef NEED_DECLARATION_FREE - -/* Define if getenv is not declared in system header files. */ -#undef NEED_DECLARATION_GETENV - -/* Define if sbrk is not declared in system header files. */ -#undef NEED_DECLARATION_SBRK - -/* Define if strstr is not declared in system header files. */ -#undef NEED_DECLARATION_STRSTR - /* Name of package */ #undef PACKAGE |