Date: Sat, 16 Jul 2005 03:01:24 +0200 (CEST) From: Martin Matuska <martin@matuska.org> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/83536: [FIX] databases/ruby-bdb Message-ID: <20050716010124.A5DD02294B@mail.vx.sk> Resent-Message-ID: <200507160110.j6G1AAi2016815@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 83536 >Category: ports >Synopsis: [FIX] databases/ruby-bdb >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Jul 16 01:10:09 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Martin Matuska >Release: FreeBSD 5.4-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD 5.4-RELEASE-p3 >Description: Fix bdb detection in Makefile if only WITH_BDB_VER=42 or WITH_BDB_VER=43 is used Add support for bdb ver 4.3 in Makefile >How-To-Repeat: >Fix: --- databases/ruby-bdb/Makefile.orig Sat Jul 16 01:56:32 2005 +++ databases/ruby-bdb/Makefile Sat Jul 16 02:53:28 2005 @@ -28,9 +28,12 @@ WITH_BDB_VER= 4 .elif defined(WITH_BDB41) || defined(WITH_DB41) WITH_BDB_VER= 41 -.elif defined(WITH_BDB42) || defined(WITH_DB42) +.elif defined(WITH_BDB42) || defined(WITH_DB42) || ${WITH_BDB_VER} == 42 WITH_BDB_VER= 42 LIB_SUFFIX= -4.2 +.elif defined(WITH_BDB43) || defined(WITH_DB43) || ${WITH_BDB_VER} == 43 +WITH_BDB_VER= 43 +LIB_SUFFIX= -4.3 .endif WITH_BDB_VER?= 4 LIB_SUFFIX?= ${WITH_BDB_VER} >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050716010124.A5DD02294B>