From: William A. Rowe Jr Date: Fri, 13 Jan 2006 01:18:54 +0000 (+0000) Subject: Say 'whoops'. When you build the elements explicitly, you must order X-Git-Tag: 2.2.1~147 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42912f55b43221b9328f04e4b3b98e980d3c339b;p=thirdparty%2Fapache%2Fhttpd.git Say 'whoops'. When you build the elements explicitly, you must order them (win32 has no unresolved symbols linkage). modules/database/ is required before modules/aaa/ Backport; 368538 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@368539 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.win b/Makefile.win index efd3217a9a7..b21ac9af1b1 100644 --- a/Makefile.win +++ b/Makefile.win @@ -212,6 +212,9 @@ _build: cd modules\ldap $(MAKE) $(MAKEOPT) -f mod_ldap.mak CFG="mod_ldap - Win32 $(LONG)" RECURSE=0 $(CTARGET) cd ..\.. + cd modules\database + $(MAKE) $(MAKEOPT) -f mod_dbd.mak CFG="mod_dbd - Win32 $(LONG)" RECURSE=0 $(CTARGET) + cd ..\.. cd modules\aaa $(MAKE) $(MAKEOPT) -f mod_auth_basic.mak CFG="mod_auth_basic - Win32 $(LONG)" RECURSE=0 $(CTARGET) $(MAKE) $(MAKEOPT) -f mod_auth_digest.mak CFG="mod_auth_digest - Win32 $(LONG)" RECURSE=0 $(CTARGET) @@ -236,9 +239,6 @@ _build: $(MAKE) $(MAKEOPT) -f mod_mem_cache.mak CFG="mod_mem_cache - Win32 $(LONG)" RECURSE=0 $(CTARGET) $(MAKE) $(MAKEOPT) -f mod_disk_cache.mak CFG="mod_disk_cache - Win32 $(LONG)" RECURSE=0 $(CTARGET) cd ..\.. - cd modules\database - $(MAKE) $(MAKEOPT) -f mod_dbd.mak CFG="mod_dbd - Win32 $(LONG)" RECURSE=0 $(CTARGET) - cd ..\.. cd modules\dav\main $(MAKE) $(MAKEOPT) -f mod_dav.mak CFG="mod_dav - Win32 $(LONG)" RECURSE=0 $(CTARGET) cd ..\..\..