diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2002-09-11 00:44:54 +0200 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2002-09-11 00:44:54 +0200 |
commit | f7d8396ac87f62c9298e1503f3907f4e2464178a (patch) | |
tree | f6f476a7c5b04dcf488f88c61611d8bcaa30c137 | |
parent | Avoid a compiler error on NetWare (diff) | |
download | apache2-f7d8396ac87f62c9298e1503f3907f4e2464178a.tar.xz apache2-f7d8396ac87f62c9298e1503f3907f4e2464178a.zip |
Make file environment variables for building Apache for NetWare with IPV6
support
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96754 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build/NWGNUenvironment.inc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build/NWGNUenvironment.inc b/build/NWGNUenvironment.inc index e9bf2c1bbd..24a71b8790 100644 --- a/build/NWGNUenvironment.inc +++ b/build/NWGNUenvironment.inc @@ -182,6 +182,19 @@ INSTALL = $(AP_WORK)\Dist INSTDIRS = $(AP_WORK)\Dist endif +# Add support for building IPV6 alongside +ifneq "$(IPV6)" "" +DEFINES += -DNW_BUILD_IPV6 + +ifneq "$(IPV6)" "SET" +OBJDIR := $(OBJDIR)_IPV6 +INSTALL := $(INSTALL)_IPV6 +INSTDIRS := $(INSTDIRS)_IPV6 +IPV6=SET +endif + +endif + INSTDEVDIRS := \ $(INSTDIRS) \ $(INSTALL)\Apache2\include \ |