diff options
author | Mark Kettenis <kettenis@gnu.org> | 2003-01-02 19:35:31 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2003-01-02 19:35:31 +0000 |
commit | 06825bd145fd60c4a792d249af1231bdd360579c (patch) | |
tree | d9261051871ab3afea1ca90c9b1405f7a37baea0 /gdb/config.in | |
parent | 287c1a400f96e50aea97a33bc33ee3c9af120b7e (diff) | |
download | gdb-06825bd145fd60c4a792d249af1231bdd360579c.zip gdb-06825bd145fd60c4a792d249af1231bdd360579c.tar.gz gdb-06825bd145fd60c4a792d249af1231bdd360579c.tar.bz2 |
* configure.in: Rewrite check for GNU regex and the
--without-included regex option, and move it into the "Checks for
library functions" section. This makes us use the system regex
again by default on systems with version 2 of the GNU C library.
This was apparently broken.
* gdb_regex.h [!USE_INCLUDED_REGEX] (_REGEX_RE_COMP): Define.
* acconfig.h (USE_INCLUDED_REGEX): Remove.
* config.in, configure: Regenerated.
Diffstat (limited to 'gdb/config.in')
-rw-r--r-- | gdb/config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/config.in b/gdb/config.in index 206edfd..9bc7098 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -169,9 +169,6 @@ /* Define if <sys/ptrace.h> defines the PT_GETXMMREGS request. */ #undef HAVE_PT_GETXMMREGS -/* Define if gnu-regex.c included with GDB should be used. */ -#undef USE_INCLUDED_REGEX - /* BFD's default architecture. */ #undef DEFAULT_BFD_ARCH @@ -431,6 +428,9 @@ /* Define if sigsetjmp is available. */ #undef HAVE_SIGSETJMP +/* Define to 1 if the regex included in libiberty should be used. */ +#undef USE_INCLUDED_REGEX + /* Define if malloc is not declared in system header files. */ #undef NEED_DECLARATION_MALLOC |