summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2009-10-08 23:07:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-10-09 05:54:09 (GMT)
commit817350d3af9e1227c737e47ff79f65f0373b31d6 (patch)
treeade6b623f0edc1577c5aa2b656a22b8a801161f9 /Makefile
parent8fd2cfa7accd6b8f877014bf3e4bf8547b8e0d2a (diff)
downloadgit-817350d3af9e1227c737e47ff79f65f0373b31d6.zip
git-817350d3af9e1227c737e47ff79f65f0373b31d6.tar.gz
git-817350d3af9e1227c737e47ff79f65f0373b31d6.tar.bz2
Makefile: enable THREADED_DELTA_SEARCH on IRIX and IRIX64
Since commit dcda3614 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 <casey@nrlssc.navy.mil> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index dd3d520..c956ce9 100644
--- a/Makefile
+++ b/Makefile
@@ -846,6 +846,7 @@ ifeq ($(uname_S),IRIX)
SNPRINTF_RETURNS_BOGUS = YesPlease
SHELL_PATH = /usr/gnu/bin/bash
NEEDS_LIBGEN = YesPlease
+ THREADED_DELTA_SEARCH = YesPlease
endif
ifeq ($(uname_S),IRIX64)
NO_SETENV=YesPlease
@@ -859,6 +860,7 @@ ifeq ($(uname_S),IRIX64)
SNPRINTF_RETURNS_BOGUS = YesPlease
SHELL_PATH=/usr/gnu/bin/bash
NEEDS_LIBGEN = YesPlease
+ THREADED_DELTA_SEARCH = YesPlease
endif
ifeq ($(uname_S),HP-UX)
NO_IPV6=YesPlease