Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 81271 invoked from network); 13 Jan 2006 01:19:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 Jan 2006 01:19:20 -0000 Received: (qmail 85582 invoked by uid 500); 13 Jan 2006 01:19:19 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 85536 invoked by uid 500); 13 Jan 2006 01:19:18 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 85525 invoked by uid 99); 13 Jan 2006 01:19:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Jan 2006 17:19:18 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 12 Jan 2006 17:19:18 -0800 Received: (qmail 81163 invoked by uid 65534); 13 Jan 2006 01:18:57 -0000 Message-ID: <20060113011857.81162.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r368539 - /httpd/httpd/branches/2.2.x/Makefile.win Date: Fri, 13 Jan 2006 01:18:57 -0000 To: cvs@httpd.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: wrowe Date: Thu Jan 12 17:18:54 2006 New Revision: 368539 URL: http://svn.apache.org/viewcvs?rev=368539&view=rev Log: 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 Modified: httpd/httpd/branches/2.2.x/Makefile.win Modified: httpd/httpd/branches/2.2.x/Makefile.win URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/Makefile.win?rev=368539&r1=368538&r2=368539&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/Makefile.win (original) +++ httpd/httpd/branches/2.2.x/Makefile.win Thu Jan 12 17:18:54 2006 @@ -212,6 +212,9 @@ 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) @@ -235,9 +238,6 @@ $(MAKE) $(MAKEOPT) -f mod_file_cache.mak CFG="mod_file_cache - Win32 $(LONG)" RECURSE=0 $(CTARGET) $(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)