diff options
author | Jason Molenda <jmolenda@apple.com> | 1998-06-10 21:08:38 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1998-06-10 21:08:38 +0000 |
commit | 9ed669cf7671e30fc9ae982fd147905a78364ee7 (patch) | |
tree | 621bc22768a653396e1a31f61c3c5c15b0578661 /gdb/config.in | |
parent | a4122443afc9130bc65910974728b468b217d3c2 (diff) | |
download | binutils-gdb-9ed669cf7671e30fc9ae982fd147905a78364ee7.tar.gz |
Wed Jun 10 14:06:05 1998 Jason Molenda (crash@bugshack.cygnus.com)
* configure.in: Add some tests for gnu-regex.c's benefit.
See if btowc() function is provided in C library.
* configure, config.in: Regenerated.
* Makefile.in (CLIBS, CDEPS): Add @LIBOBJS@ to build btowc.c
if necessary.
* btowc.c: New file.
* gnu-regex.c: Reorder wchar.h and wctype.h includes for Solaris'
benefit.
Drop namespace preserving defines for now.
Mods based on the modifications used in GNU grep 2.2 to make gnu-regex.c
compile on other OSes.
Diffstat (limited to 'gdb/config.in')
-rw-r--r-- | gdb/config.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gdb/config.in b/gdb/config.in index 3d7a94c3ea2..39a4bbb6d28 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -136,6 +136,15 @@ /* Define if you have the __argz_stringify function. */ #undef HAVE___ARGZ_STRINGIFY +/* Define if you have the bcopy function. */ +#undef HAVE_BCOPY + +/* Define if you have the btowc function. */ +#undef HAVE_BTOWC + +/* Define if you have the bzero function. */ +#undef HAVE_BZERO + /* Define if you have the dcgettext function. */ #undef HAVE_DCGETTEXT @@ -145,6 +154,12 @@ /* Define if you have the getpagesize function. */ #undef HAVE_GETPAGESIZE +/* Define if you have the isascii function. */ +#undef HAVE_ISASCII + +/* Define if you have the memcpy function. */ +#undef HAVE_MEMCPY + /* Define if you have the munmap function. */ #undef HAVE_MUNMAP @@ -187,6 +202,9 @@ /* 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 @@ -241,6 +259,12 @@ /* Define if you have the <values.h> header file. */ #undef HAVE_VALUES_H +/* Define if you have the <wchar.h> header file. */ +#undef HAVE_WCHAR_H + +/* Define if you have the <wctype.h> header file. */ +#undef HAVE_WCTYPE_H + /* Define if you have the dl library (-ldl). */ #undef HAVE_LIBDL |