diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2011-03-29 08:08:42 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2011-03-29 08:08:42 +0000 |
commit | 5abb82e62ddc28bbbcde6bc6c51f41fd8187adb8 (patch) | |
tree | b301248fcfbbd1cc272c6c54fdea112ee977ea04 /Makefile.win | |
parent | 0adcfbc4635c5e723914e46022ffb36677873b0c (diff) | |
download | httpd-5abb82e62ddc28bbbcde6bc6c51f41fd8187adb8.tar.gz |
Correct build order. Seems mod_session was misimplemented to require
library binding rather that stubbing out proper registered functions
to make it load order agnostic.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086510 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.win')
-rw-r--r-- | Makefile.win | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile.win b/Makefile.win index 1d3f025617..6fb035764c 100644 --- a/Makefile.win +++ b/Makefile.win @@ -350,6 +350,12 @@ _build: cd modules\ldap $(MAKE) $(MAKEOPT) -f mod_ldap.mak CFG="mod_ldap - Win32 $(LONG)" RECURSE=0 $(CTARGET) cd ..\.. +# build session prior to auth_form + cd modules\session + $(MAKE) $(MAKEOPT) -f mod_session.mak CFG="mod_session - Win32 $(LONG)" RECURSE=0 $(CTARGET) + $(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\database $(MAKE) $(MAKEOPT) -f mod_dbd.mak CFG="mod_dbd - Win32 $(LONG)" RECURSE=0 $(CTARGET) cd ..\.. @@ -503,11 +509,6 @@ _build: $(MAKE) $(MAKEOPT) -f mod_lbmethod_rr.mak CFG="mod_lbmethod_rr - Win32 $(LONG)" RECURSE=0 $(CTARGET) cd ..\..\.. !ENDIF - cd modules\session - $(MAKE) $(MAKEOPT) -f mod_session.mak CFG="mod_session - Win32 $(LONG)" RECURSE=0 $(CTARGET) - $(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) |