diff options
author | Arjen Laarhoven <arjen@yaph.org> | 2008-09-07 20:45:37 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-09-10 13:36:40 -0700 |
commit | 3632cfc2487afc41c7c9e939a9d357daca3e5d67 (patch) | |
tree | a0e56de2ab6f56753406c47baf8ec8bd79e91cb5 /compat | |
parent | 971e628384fea14e9c0bf96e1c69b97df6ec540e (diff) | |
download | git-3632cfc2487afc41c7c9e939a9d357daca3e5d67.tar.gz git-3632cfc2487afc41c7c9e939a9d357daca3e5d67.tar.xz |
Use compatibility regex library for OSX/Darwin
The standard libc regex library on OSX does not support alternation
in POSIX Basic Regular Expression mode. This breaks the diff.funcname
functionality on OSX.
To fix this, we use the GNU regex library which is already present in
the compat/ diretory for the MinGW port. However, simply adding compat/
to the COMPAT_CFLAGS variable causes a conflict between the system
fnmatch.h and the one present in compat/. To remedy this, move the
regex and fnmatch functionality to their own subdirectories in compat/
so they can be included seperately.
Signed-off-by: Arjen Laarhoven <arjen@yaph.org>
Tested-by: Mike Ralphson <mike@abacus.co.uk> (AIX)
Tested-by: Johannes Sixt <johannes.sixt@telecom.at> (MinGW)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
-rw-r--r-- | compat/fnmatch/fnmatch.c (renamed from compat/fnmatch.c) | 0 | ||||
-rw-r--r-- | compat/fnmatch/fnmatch.h (renamed from compat/fnmatch.h) | 0 | ||||
-rw-r--r-- | compat/regex/regex.c (renamed from compat/regex.c) | 0 | ||||
-rw-r--r-- | compat/regex/regex.h (renamed from compat/regex.h) | 0 |
4 files changed, 0 insertions, 0 deletions
diff --git a/compat/fnmatch.c b/compat/fnmatch/fnmatch.c index 1f4ead5f9..1f4ead5f9 100644 --- a/compat/fnmatch.c +++ b/compat/fnmatch/fnmatch.c diff --git a/compat/fnmatch.h b/compat/fnmatch/fnmatch.h index cc3ec3794..cc3ec3794 100644 --- a/compat/fnmatch.h +++ b/compat/fnmatch/fnmatch.h diff --git a/compat/regex.c b/compat/regex/regex.c index 87b33e466..87b33e466 100644 --- a/compat/regex.c +++ b/compat/regex/regex.c diff --git a/compat/regex.h b/compat/regex/regex.h index 6eb64f140..6eb64f140 100644 --- a/compat/regex.h +++ b/compat/regex/regex.h |