From owner-freebsd-ports@FreeBSD.ORG Tue Aug 14 16:21:11 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 145D116A418 for ; Tue, 14 Aug 2007 16:21:11 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.225]) by mx1.freebsd.org (Postfix) with ESMTP id CE9FC13C45E for ; Tue, 14 Aug 2007 16:21:10 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so623528nzf for ; Tue, 14 Aug 2007 09:21:10 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=a4PBV2UGoCJgOa7s37sS2GoDWV8uuD3IOF4w/V4tSeHaidh5bcQVCHUxBbu4z/yDhWSwfbP3E388ETotgdApxrn/E7upYKsD6Iqrw5QutR8DJ/6VF7yaqA3fTIVgFqm/sqqkBWW0tD3pann/ZybU8niiK59J6sRZ05/ZbQp6te0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=CYxMGuzrdcaBReAHL84SoHUO3lHfG1H1lJXSn3Z7Tzuhta7Cgu7oDE9cZqI5M6kZ9gLZxfWzDbGdibS0zFoWKVrZ9yL+X3kdx1xN0v6GutarLhZjlikKi+sUA6BzROFI1mQwRArvm84vzl6uykKHqU3I0oA57L/F24dqYuufsC0= Received: by 10.65.114.11 with SMTP id r11mr12000120qbm.1187108468990; Tue, 14 Aug 2007 09:21:08 -0700 (PDT) Received: by 10.65.206.14 with HTTP; Tue, 14 Aug 2007 09:21:08 -0700 (PDT) Message-ID: <70f41ba20708140921k43cea2d8oe8f2bada785b49e0@mail.gmail.com> Date: Tue, 14 Aug 2007 09:21:08 -0700 From: snowcrash+freebsd Sender: schneecrash@gmail.com To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: a2d5cf1ed2048d90 Subject: request add db45/db46 support to www/apache22 port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2007 16:21:11 -0000 hi, with db45/db46 now in ports and supported in make.conf, can we get port(www/apache22) updated as well? looks simple, namely: > vi Makefile.modules ================================================================= @95 . elif ${WITH_BERKELEYDB} == "db44" LIB_DEPENDS+= db-4.4:${PORTSDIR}/databases/db44 CONFIGURE_ARGS+= --with-dbm=db44 \ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db44 +++ . elif ${WITH_BERKELEYDB} == "db45" +++ LIB_DEPENDS+= db-4.5:${PORTSDIR}/databases/db45 +++ CONFIGURE_ARGS+= --with-dbm=db45 \ +++ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db45 +++ . elif ${WITH_BERKELEYDB} == "db46" +++ LIB_DEPENDS+= db-4.6:${PORTSDIR}/databases/db46 +++ CONFIGURE_ARGS+= --with-dbm=db46 \ +++ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db46 . else IGNORE= "Unknown Berkeley DB version" ================================================================= though some clever soul might suggest that it be changed to automatically pick the BDB settings .... thanks!