diff options
author | Jeff King <peff@peff.net> | 2009-06-16 15:08:21 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-06-18 09:57:44 -0700 |
commit | ee78cac22b3e5e3f93898361b87a38b488c5592e (patch) | |
tree | d9ea201db917c290022d89c7b01afcb3fa490562 /Makefile | |
parent | Makefile: refactor regex compat support (diff) | |
download | tgif-ee78cac22b3e5e3f93898361b87a38b488c5592e.tar.xz |
Makefile: use compat regex on Solaris
The system regex is either slow or buggy for complex
patterns, like the built-in xfuncname pattern for java
files.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -725,6 +725,7 @@ ifeq ($(uname_S),SunOS) NO_MEMMEM = YesPlease NO_MKDTEMP = YesPlease NO_MKSTEMPS = YesPlease + NO_REGEX = YesPlease ifeq ($(uname_R),5.7) NEEDS_RESOLV = YesPlease NO_IPV6 = YesPlease |