From f5ebb9ea78ef2e0613cf1d855aebeca513048456 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Thu, 7 Oct 1993 11:03:35 +0000 Subject: [PATCH] * Makefile.in (REGEX, REGEX1): Always use our own version of regex.c to be consistent across hosts. * source.c (_initialize_source): Initialize regex to use grep style syntax as an approximation to POSIX basic regex syntax. --- gdb/ChangeLog | 7 +++++++ gdb/Makefile.in | 6 +++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 74b5f2558d0..7333f919f0f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +Thu Oct 07 09:29:11 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * Makefile.in (REGEX, REGEX1): Always use our own version of + regex.c to be consistent across hosts. + * source.c (_initialize_source): Initialize regex to use grep + style syntax as an approximation to POSIX basic regex syntax. + Wed Oct 6 12:43:47 1993 Jeffrey A Law (law@snake.cs.utah.edu) Jim Kingdon (kingdon@lioth.cygnus.com) diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 2f95de8677f..f83a6a961b4 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -151,7 +151,11 @@ INTERNAL_CFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \ $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \ $(BFD_CFLAGS) $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) -# The config/mh-* file must define REGEX and REGEX1 on USG machines. +# We are using our own version of REGEX now to be consistent across +# machines. +REGEX = regex.o +REGEX1 = regex.o + # If your system is missing alloca(), or, more likely, it's there but # it doesn't work, then refer to libiberty. -- 2.30.2