From 40d88d4fa3b13c0e7fe8eca23ff6d27e790bada2 Mon Sep 17 00:00:00 2001 From: Dennis Stosberg Date: Tue, 11 Apr 2006 11:42:26 -0700 Subject: [PATCH] Solaris 9 also wants our own unsetenv/setenv. [jc: the original had "index() is evil" but that should be a separate patch.] --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) 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__ -- 2.11.0