diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-01-21 13:14:02 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-01-21 13:14:02 +0000 |
commit | a3828db05a4f4b107b8ab4210f5f7e882786a365 (patch) | |
tree | c537993ee89fe990bbf8d59312ab7f0c1b2eaa7a /gdb/config.in | |
parent | b717d30eb550a5418757c32f232a01e7620f640d (diff) | |
download | gdb-a3828db05a4f4b107b8ab4210f5f7e882786a365.zip gdb-a3828db05a4f4b107b8ab4210f5f7e882786a365.tar.gz gdb-a3828db05a4f4b107b8ab4210f5f7e882786a365.tar.bz2 |
* configure.ac: Use AC_CHECK_DECLS instead of gcc_AC_CHECK_DECLS
and BFD_NEED_DECLARATION. Don't check if a declaration of strdup
is necessary.
* configure, config.in: Regenerate.
* utils.c: Adjust for usage of AC_CHECK_DECLS instead of
BFD_NEED_DECLARATION. Never provide a prototype for
caninicalize_file_name.
* gdb_string.h: Adjust for usage of AC_CHECK_DECLS instead of
BFD_NEED_DECLARATION.
Diffstat (limited to 'gdb/config.in')
-rw-r--r-- | gdb/config.in | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/gdb/config.in b/gdb/config.in index b9d8711..63b9e61 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -212,12 +212,34 @@ /* Define to 1 if you have the `dcgettext' function. */ #undef HAVE_DCGETTEXT -/* Define to 1 if we found this declaration otherwise define to 0. */ +/* 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 `getopt', and to 0 if you don't. + */ #undef HAVE_DECL_GETOPT -/* Define to 1 if we found this declaration otherwise define to 0. */ +/* Define to 1 if you have the declaration of `malloc', and to 0 if you don't. + */ +#undef HAVE_DECL_MALLOC + +/* Define to 1 if you have the declaration of `ptrace', and to 0 if you don't. + */ #undef HAVE_DECL_PTRACE +/* Define to 1 if you have the declaration of `realloc', and to 0 if you + don't. */ +#undef HAVE_DECL_REALLOC + +/* Define to 1 if you have the declaration of `strerror', and to 0 if you + don't. */ +#undef HAVE_DECL_STRERROR + +/* 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 @@ -569,27 +591,6 @@ /* Define as const if the declaration of iconv() needs const. */ #undef ICONV_CONST -/* Define if canonicalize_file_name is not declared in system header files. */ -#undef NEED_DECLARATION_CANONICALIZE_FILE_NAME - -/* Define if free is not declared in system header files. */ -#undef NEED_DECLARATION_FREE - -/* Define if malloc is not declared in system header files. */ -#undef NEED_DECLARATION_MALLOC - -/* Define if realloc is not declared in system header files. */ -#undef NEED_DECLARATION_REALLOC - -/* Define if strdup is not declared in system header files. */ -#undef NEED_DECLARATION_STRDUP - -/* Define if strerror is not declared in system header files. */ -#undef NEED_DECLARATION_STRERROR - -/* Define if strstr is not declared in system header files. */ -#undef NEED_DECLARATION_STRSTR - /* Name of this package. */ #undef PACKAGE |