From: Brandon Casey Date: Wed, 22 Dec 2010 23:58:51 +0000 (-0800) Subject: Makefile: add NO_FNMATCH_CASEFOLD to IRIX sections X-Git-Tag: v1.7.4-rc0~7 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=19128d6cd808800ffc6f14775315e77ece8b8fc7;hp=-c;p=git.git Makefile: add NO_FNMATCH_CASEFOLD to IRIX sections IRIX's fnmatch() does not support the GNU FNM_CASEFOLD extension, so set NO_FNMATCH_CASEFOLD so that the internal fnmatch implementation will be used. Signed-off-by: Brandon Casey Signed-off-by: Junio C Hamano --- 19128d6cd808800ffc6f14775315e77ece8b8fc7 diff --git a/Makefile b/Makefile index 57d9c65e0..ff3515437 100644 --- a/Makefile +++ b/Makefile @@ -1003,6 +1003,7 @@ ifeq ($(uname_S),IRIX) # issue, comment out the NO_MMAP statement. NO_MMAP = YesPlease NO_REGEX = YesPlease + NO_FNMATCH_CASEFOLD = YesPlease SNPRINTF_RETURNS_BOGUS = YesPlease SHELL_PATH = /usr/gnu/bin/bash NEEDS_LIBGEN = YesPlease @@ -1022,6 +1023,7 @@ ifeq ($(uname_S),IRIX64) # issue, comment out the NO_MMAP statement. NO_MMAP = YesPlease NO_REGEX = YesPlease + NO_FNMATCH_CASEFOLD = YesPlease SNPRINTF_RETURNS_BOGUS = YesPlease SHELL_PATH=/usr/gnu/bin/bash NEEDS_LIBGEN = YesPlease