diff options
author | Guenter Knauf <fuankg@apache.org> | 2011-01-26 00:05:46 +0100 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2011-01-26 00:05:46 +0100 |
commit | ed790861522e0de7bcb19eab815ad43303062c55 (patch) | |
tree | d7c30ba0ac8e1bcbee63ec0940e530f3186a732a /Makefile.win | |
parent | Make worker the default MPM for 2.3/2.4 (diff) | |
download | apache2-ed790861522e0de7bcb19eab815ad43303062c55.tar.xz apache2-ed790861522e0de7bcb19eab815ad43303062c55.zip |
Added slotmem* modules to Win32 build.
Submitted by Gregg L. Smith - gregg AT apachehaus.com.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1063507 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.win')
-rw-r--r-- | Makefile.win | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.win b/Makefile.win index 5e4cdc6673..d577a741bc 100644 --- a/Makefile.win +++ b/Makefile.win @@ -508,6 +508,10 @@ _build: $(MAKE) $(MAKEOPT) -f mod_session_cookie.mak CFG="mod_session_cookie - Win32 $(LONG)" RECURSE=0 $(CTARGET) $(MAKE) $(MAKEOPT) -f mod_session_dbd.mak CFG="mod_session_dbd - Win32 $(LONG)" RECURSE=0 $(CTARGET) cd ..\.. + cd modules\slotmem + $(MAKE) $(MAKEOPT) -f mod_slotmem_plain.mak CFG="mod_slotmem_plain - Win32 $(LONG)" RECURSE=0 $(CTARGET) + $(MAKE) $(MAKEOPT) -f mod_slotmem_shm.mak CFG="mod_slotmem_shm - Win32 $(LONG)" RECURSE=0 $(CTARGET) + cd ..\.. !IF EXIST("srclib\openssl") # cd modules\session # $(MAKE) $(MAKEOPT) -f mod_session_crypto.mak CFG="mod_session_crypto - Win32 $(LONG)" RECURSE=0 $(CTARGET) @@ -736,6 +740,8 @@ _copybin: copy modules\session\$(LONG)\mod_session.$(src_so) "$(inst_so)" <.y copy modules\session\$(LONG)\mod_session_cookie.$(src_so) "$(inst_so)" <.y copy modules\session\$(LONG)\mod_session_dbd.$(src_so) "$(inst_so)" <.y + copy modules\slotmem\$(LONG)\mod_slotmem_plain.$(src_so) "$(inst_so)" <.y + copy modules\slotmem\$(LONG)\mod_slotmem_shm.$(src_so) "$(inst_so)" <.y !IF EXIST("srclib\openssl") # copy modules\session\$(LONG)\mod_session_crypto.$(src_so) "$(inst_so)" <.y copy modules\ssl\$(LONG)\mod_ssl.$(src_so) "$(inst_so)" <.y |