From: Junio C Hamano Date: Fri, 24 Oct 2008 02:44:27 +0000 (-0700) Subject: Stop using compat/regex.c on platforms with working regexp library X-Git-Tag: v1.6.1-rc1~100 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=310e0216c80484d429dbdec547ab52a93236eb60;p=git.git Stop using compat/regex.c on platforms with working regexp library We used to have non-POSIX comformant BRE in our code, and linked with GNU regexp library on a few platforms (Darwin, FreeBSD and AIX) to work it around. This was backwards. We've fixed the broken regexps to use ERE that native regexp libraries on these platforms can handle just fine. There is no need to link with GNU regexp library on these platforms anymore. Tested-on-AIX-by: Mike Ralphson Tested-on-FreeBSD-by: Jeff King Tested-on-Darwin-by: Arjen Laarhoven Tested-on-Darwin-by: Pieter de Bie Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index d6f3695c9..40309e153 100644 --- a/Makefile +++ b/Makefile @@ -640,8 +640,6 @@ ifeq ($(uname_S),Darwin) endif NO_STRLCPY = YesPlease NO_MEMMEM = YesPlease - COMPAT_CFLAGS += -Icompat/regex - COMPAT_OBJS += compat/regex/regex.o endif ifeq ($(uname_S),SunOS) NEEDS_SOCKET = YesPlease @@ -692,8 +690,6 @@ ifeq ($(uname_S),FreeBSD) BASIC_LDFLAGS += -L/usr/local/lib DIR_HAS_BSD_GROUP_SEMANTICS = YesPlease THREADED_DELTA_SEARCH = YesPlease - COMPAT_CFLAGS += -Icompat/regex - COMPAT_OBJS += compat/regex/regex.o endif ifeq ($(uname_S),OpenBSD) NO_STRCASESTR = YesPlease @@ -720,8 +716,6 @@ ifeq ($(uname_S),AIX) INTERNAL_QSORT = UnfortunatelyYes NEEDS_LIBICONV=YesPlease BASIC_CFLAGS += -D_LARGE_FILES - COMPAT_CFLAGS += -Icompat/regex - COMPAT_OBJS += compat/regex/regex.o endif ifeq ($(uname_S),GNU) # GNU/Hurd