Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Rokos <rokos@nextsoft.cz>2011-03-07 14:43:11 +0300
committerJunio C Hamano <gitster@pobox.com>2011-03-08 21:57:35 +0300
commit987893d82df390d7ed72e46f0cf8340d140952c1 (patch)
treeeb21735dea0623cdb42ef88d06cc9a55c3a9c149 /Makefile
parent7ed863a85a6ce2c4ac4476848310b8f917ab41f9 (diff)
Makefile: add NO_FNMATCH_CASEFOLD to HP-UX section
fnmatch() on HP-UX does not support the GNU FNM_CASEFOLD extension, so set NO_FNMATCH_CASEFOLD to use the internal fnmatch implementation. Signed-off-by: Michal Rokos <michal.rokos@nextsoft.cz> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 775ee838c3..5f873986a9 100644
--- a/Makefile
+++ b/Makefile
@@ -1041,6 +1041,7 @@ ifeq ($(uname_S),HP-UX)
NO_UNSETENV = YesPlease
NO_HSTRERROR = YesPlease
NO_SYS_SELECT_H = YesPlease
+ NO_FNMATCH_CASEFOLD = YesPlease
SNPRINTF_RETURNS_BOGUS = YesPlease
NO_NSEC = YesPlease
ifeq ($(uname_R),B.11.00)