Skip to content

Commit 817350d

Browse files
drafnelgitster
authored andcommitted
Makefile: enable THREADED_DELTA_SEARCH on IRIX and IRIX64
Since commit dcda361 removed the use of a variable length array from builtin-pack-objects.c, it is now safe to compile with the threaded delta search feature enabled. Formerly, the MIPSpro 7.4.4m compiler warned that variable length arrays should not be used with pthreads. Signed-off-by: Brandon Casey <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 8fd2cfa commit 817350d

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
@@ -846,6 +846,7 @@ ifeq ($(uname_S),IRIX)
846846
SNPRINTF_RETURNS_BOGUS = YesPlease
847847
SHELL_PATH = /usr/gnu/bin/bash
848848
NEEDS_LIBGEN = YesPlease
849+
THREADED_DELTA_SEARCH = YesPlease
849850
endif
850851
ifeq ($(uname_S),IRIX64)
851852
NO_SETENV=YesPlease
@@ -859,6 +860,7 @@ ifeq ($(uname_S),IRIX64)
859860
SNPRINTF_RETURNS_BOGUS = YesPlease
860861
SHELL_PATH=/usr/gnu/bin/bash
861862
NEEDS_LIBGEN = YesPlease
863+
THREADED_DELTA_SEARCH = YesPlease
862864
endif
863865
ifeq ($(uname_S),HP-UX)
864866
NO_IPV6=YesPlease

0 commit comments

Comments
 (0)