aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichal Rokos <rokos@nextsoft.cz>2011-03-07 12:43:11 +0100
committerJunio C Hamano <gitster@pobox.com>2011-03-08 10:57:35 -0800
commit987893d82df390d7ed72e46f0cf8340d140952c1 (patch)
treeeb21735dea0623cdb42ef88d06cc9a55c3a9c149 /Makefile
parent7ed863a85a6ce2c4ac4476848310b8f917ab41f9 (diff)
downloadgit-987893d82df390d7ed72e46f0cf8340d140952c1.tar.gz
git-987893d82df390d7ed72e46f0cf8340d140952c1.tar.xz
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 775ee838c..5f873986a 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)