diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-02-09 07:03:23 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-02-09 07:03:23 +0000 |
commit | 8aad4bd619051a0db3f2476ec883b704bfab94da (patch) | |
tree | 0007ade00979394a891f87bb35dd81f99a9e0a7e /gdb/config.in | |
parent | f84e1784d47019302c7b2fd66dd160ad89fc0744 (diff) | |
download | gdb-8aad4bd619051a0db3f2476ec883b704bfab94da.zip gdb-8aad4bd619051a0db3f2476ec883b704bfab94da.tar.gz gdb-8aad4bd619051a0db3f2476ec883b704bfab94da.tar.bz2 |
1999-02-08 Jason Molenda (jsm@bugshack.cygnus.com)
* gnu-regex.c: Check ENABLE_NLS instead of HAVE_LIBINTL_H.
* configure.in: Don't check for libintl.h.
* configure, config.in: Regenerated.
Fixes a problem on debian systems, a conflict between the
/usr/include/libintl.h and the routines that are actually linked in,
up in ../intl.
Diffstat (limited to 'gdb/config.in')
-rw-r--r-- | gdb/config.in | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/gdb/config.in b/gdb/config.in index 015f421..d3d33de 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -206,9 +206,6 @@ /* Define if you have the <endian.h> header file. */ #undef HAVE_ENDIAN_H -/* Define if you have the <libintl.h> header file. */ -#undef HAVE_LIBINTL_H - /* Define if you have the <limits.h> header file. */ #undef HAVE_LIMITS_H @@ -292,3 +289,19 @@ /* Define if you have the w library (-lw). */ #undef HAVE_LIBW + +/* 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 free is not declared in system header files. */ +#undef NEED_DECLARATION_FREE + +/* Define if strerror is not declared in system header files. */ +#undef NEED_DECLARATION_STRERROR + +/* Define if strdup is not declared in system header files. */ +#undef NEED_DECLARATION_STRDUP + |