Date: Tue, 8 Nov 2005 10:39:50 -0200 (BRST) From: Marcus Alves Grando <mnag@FreeBSD.org> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/88661: Update port: Mk/bsd.database.mk Use lower case in DBD and SQLITE and fix comment Message-ID: <20051108123950.926FE5B@marcus.grupos.com.br> Resent-Message-ID: <200511081250.jA8CoRLh011390@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 88661 >Category: ports >Synopsis: Update port: Mk/bsd.database.mk Use lower case in DBD and SQLITE and fix comment >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Nov 08 12:50:27 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Marcus Alves Grando >Release: FreeBSD 6.0-STABLE i386 >Organization: Grupos Internet S/A >Environment: System: FreeBSD marcus.grupos.com.br 6.0-STABLE FreeBSD 6.0-STABLE #17: Mon Nov 7 10:35:55 BRST 2005 root@marcus.grupos.com.br:/usr/obj/usr/src/sys/MARCUS i386 >Description: Use lower in USE_BDB and USE_SQLITE to make tests Fix comment about BROKEN. >How-To-Repeat: >Fix: --- bsd.database.mk begins here --- Index: bsd.database.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.database.mk,v retrieving revision 1.1 diff -u -r1.1 bsd.database.mk --- bsd.database.mk 8 Nov 2005 09:02:51 -0000 1.1 +++ bsd.database.mk 8 Nov 2005 12:34:38 -0000 @@ -173,7 +173,7 @@ _WANT_BDB_VER= ${USE_BDB} # Assume the default bdb version as 41 -.if ${USE_BDB} == "yes" +.if ${USE_BDB:L} == "yes" _WANT_BDB_VER= 41+ .endif @@ -204,7 +204,7 @@ .endif .endfor -# USE_BDB is specified incorrectly, so mark this as BROKEN +# USE_BDB is specified incorrectly, so mark this as IGNORE .if ${_FOUND} == "no" IGNORE= "Unknown bdb version: ${USE_BDB}" .endif @@ -214,12 +214,13 @@ # Handling sqlite dependency .if defined(USE_SQLITE) -.if ${USE_SQLITE} == "yes" +.if ${USE_SQLITE:L} == "yes" _SQLITE_VER= 3 .else _SQLITE_VER= ${USE_SQLITE} .endif +# USE_SQLITE is specified incorrectly, so mark this as IGNORE .if ${_SQLITE_VER} != "3" && ${_SQLITE_VER} != "2" IGNORE= "Unknown sqlite version: ${_SQLITE_VER}" .endif --- bsd.database.mk ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20051108123950.926FE5B>