]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Makefile: add NO_FNMATCH_CASEFOLD to IRIX sections
authorBrandon Casey <drafnel@gmail.com>
Wed, 22 Dec 2010 23:58:51 +0000 (15:58 -0800)
committerJunio C Hamano <gitster@pobox.com>
Thu, 23 Dec 2010 03:56:02 +0000 (19:56 -0800)
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 <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile

index 57d9c65e03c96d0b337298b32ccaeccaae348c8e..ff351543754f231a92c8cf3aa3b12d6693ba119a 100644 (file)
--- 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