diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-02-17 15:23:41 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-17 16:32:43 -0800 |
commit | 289c4b36e336af5266b86d924ef0aa828e8e4841 (patch) | |
tree | 3eac82c55f9b5bd811ac173107ae67d3b50ed2b3 /Makefile | |
parent | 5b5d4d9e1b31997b3179e6a253d47b7eea03d0fa (diff) | |
download | git-289c4b36e336af5266b86d924ef0aa828e8e4841.tar.gz git-289c4b36e336af5266b86d924ef0aa828e8e4841.tar.xz |
Support Irix
Signed-off-by: Johannes E. Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -276,6 +276,16 @@ ifeq ($(uname_S),AIX) NO_STRCASESTR=YesPlease NEEDS_LIBICONV=YesPlease endif +ifeq ($(uname_S),IRIX64) + NO_IPV6=YesPlease + NO_SETENV=YesPlease + NO_STRCASESTR=YesPlease + NO_SOCKADDR_STORAGE=YesPlease + SHELL_PATH=/usr/gnu/bin/bash + ALL_CFLAGS += -DPATH_MAX=1024 + # for now, build 32-bit version + ALL_LDFLAGS += -L/usr/lib32 +endif ifneq (,$(findstring arm,$(uname_M))) ARM_SHA1 = YesPlease endif |