Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 50319 invoked from network); 8 Apr 2008 17:52:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Apr 2008 17:52:03 -0000 Received: (qmail 85391 invoked by uid 500); 8 Apr 2008 17:52:02 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 85340 invoked by uid 500); 8 Apr 2008 17:52:02 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 85329 invoked by uid 99); 8 Apr 2008 17:52:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Apr 2008 10:52:02 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [207.5.72.96] (HELO EXHUB015-4.exch015.msoutlookonline.net) (207.5.72.96) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Apr 2008 17:51:09 +0000 Received: from philip.hq.rws (74.93.213.161) by smtpx15.msoutlookonline.net (207.5.72.103) with Microsoft SMTP Server (TLS) id 8.1.240.5; Tue, 8 Apr 2008 10:51:23 -0700 Message-ID: <47FBB097.7030409@p6m7g8.com> Date: Tue, 8 Apr 2008 13:51:19 -0400 From: "Philip M. Gollucci" Organization: P6 Web Applications User-Agent: Thunderbird 2.0.0.6 (X11/20070919) MIME-Version: 1.0 To: dev@apr.apache.org Subject: [PATCH]: FreeBSD ports devel/apr Content-Type: multipart/mixed; boundary="------------010606010206090701010001" X-Virus-Checked: Checked by ClamAV on apache.org --------------010606010206090701010001 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Hi, I'm sending this patch upstream, apr is one of the projects I don't have a commit bit too, so please review commit, and MFC as needed. Will require a ./builconf to regen ./configure. Thanks. Recent PR http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/122555 -- ------------------------------------------------------------------------ Philip M. Gollucci (philip@ridecharge.com) o:703.549.2050x206 Senior System Admin - Riderway, Inc. http://riderway.com / http://ridecharge.com 1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB B89E 1324 9B4F EC88 A0BF Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. --------------010606010206090701010001 Content-Type: text/x-patch; name="apr-util_trunk_build_dbm.m4.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="apr-util_trunk_build_dbm.m4.diff" Index: dbm.m4 =================================================================== --- dbm.m4 (revision 598375) +++ dbm.m4 (working copy) @@ -671,6 +671,8 @@ elif test "$withval" = "no"; then apu_have_gdbm=0 else + saved_cppflags="$CPPFLAGS" + saved_libs="$LIBS" CPPFLAGS="-I$withval/include" LIBS="-L$withval/lib " @@ -680,6 +682,8 @@ APR_ADDTO(APRUTIL_LDFLAGS, [-L$withval/lib]) APR_ADDTO(APRUTIL_INCLUDES, [-I$withval/include]) fi + CPPFLAGS="$saved_cppflags" + LIBS="$saved_libs" fi ]) --------------010606010206090701010001--