diff options
author | Gregg Lewis Smith <gsmith@apache.org> | 2015-08-21 21:47:27 +0200 |
---|---|---|
committer | Gregg Lewis Smith <gsmith@apache.org> | 2015-08-21 21:47:27 +0200 |
commit | 455d46209c9383fb7ba175aebf5a43170d7b19da (patch) | |
tree | 7e19729b0607ffaeffd3d0c18b67d515d3c5e226 /modules/NWGNUmakefile | |
parent | mod_substitute: follow up r1697013. (diff) | |
download | apache2-455d46209c9383fb7ba175aebf5a43170d7b19da.tar.xz apache2-455d46209c9383fb7ba175aebf5a43170d7b19da.zip |
NetWare build bits for mod_h2
Submitted by normw gknw net
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1697051 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/NWGNUmakefile')
-rw-r--r-- | modules/NWGNUmakefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/modules/NWGNUmakefile b/modules/NWGNUmakefile index 0cc2abdefd..179cec3cde 100644 --- a/modules/NWGNUmakefile +++ b/modules/NWGNUmakefile @@ -5,7 +5,8 @@ # variable WITH_SSL=1 # To build with the mod_lua module set the environment # variable WITH_LUA=1 - +# To build with the mod_h2 module set the environment +# variable WITH_HTTP2=1 # # Check if LDAP is enabled in APR-UTIL # @@ -73,6 +74,13 @@ SUBDIRS += lua endif endif +# Allow the mod_h2 module to be built if WITH_HTTP2 is defined +ifeq "$(WITH_HTTP2)" "1" +ifneq "$(NGH2SRC)" "" +SUBDIRS += http2 +endif +endif + # Allow the experimental modules to be built if WITH_EXPERIMENTAL is defined ifeq "$(WITH_EXPERIMENTAL)" "1" SUBDIRS += experimental |