Skip to content

Commit 19128d6

Browse files
drafnelgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 48e0ad0 commit 19128d6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,6 +1003,7 @@ ifeq ($(uname_S),IRIX)
10031003
# issue, comment out the NO_MMAP statement.
10041004
NO_MMAP = YesPlease
10051005
NO_REGEX = YesPlease
1006+
NO_FNMATCH_CASEFOLD = YesPlease
10061007
SNPRINTF_RETURNS_BOGUS = YesPlease
10071008
SHELL_PATH = /usr/gnu/bin/bash
10081009
NEEDS_LIBGEN = YesPlease
@@ -1022,6 +1023,7 @@ ifeq ($(uname_S),IRIX64)
10221023
# issue, comment out the NO_MMAP statement.
10231024
NO_MMAP = YesPlease
10241025
NO_REGEX = YesPlease
1026+
NO_FNMATCH_CASEFOLD = YesPlease
10251027
SNPRINTF_RETURNS_BOGUS = YesPlease
10261028
SHELL_PATH=/usr/gnu/bin/bash
10271029
NEEDS_LIBGEN = YesPlease

0 commit comments

Comments
 (0)