From: Dennis Stosberg Date: Tue, 11 Apr 2006 18:42:26 +0000 (-0700) Subject: Solaris 9 also wants our own unsetenv/setenv. X-Git-Tag: v1.3.0-rc4~17^2~2 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=40d88d4fa3b13c0e7fe8eca23ff6d27e790bada2;p=git.git Solaris 9 also wants our own unsetenv/setenv. [jc: the original had "index() is evil" but that should be a separate patch.] --- diff --git a/Makefile b/Makefile index caca2923..50c5ccb9 100644 --- a/Makefile +++ b/Makefile @@ -248,6 +248,10 @@ ifeq ($(uname_S),SunOS) NO_UNSETENV = YesPlease NO_SETENV = YesPlease endif + ifeq ($(uname_R),5.9) + NO_UNSETENV = YesPlease + NO_SETENV = YesPlease + endif INSTALL = ginstall TAR = gtar ALL_CFLAGS += -D__EXTENSIONS__