From owner-svn-ports-all@freebsd.org Wed Mar 2 16:22:11 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 554B5AC15BD; Wed, 2 Mar 2016 16:22:11 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 275DF10C2; Wed, 2 Mar 2016 16:22:11 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u22GMASe069683; Wed, 2 Mar 2016 16:22:10 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u22GMAsH069682; Wed, 2 Mar 2016 16:22:10 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201603021622.u22GMAsH069682@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Wed, 2 Mar 2016 16:22:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r409952 - in branches/2016Q1/databases/libzdb: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Mar 2016 16:22:11 -0000 Author: rakuco Date: Wed Mar 2 16:22:09 2016 New Revision: 409952 URL: https://svnweb.freebsd.org/changeset/ports/409952 Log: MFH: r409792 Fix the port's configure script to properly detect SQLite3. This has been broken since r397227 ("Upgrade to 3.1"): the port's build system passes -ldl when trying to detect SQLite3. Since this will always fail on FreeBSD, SQLite3 support will always be disabled as well. PR: 203424 Approved by: ports-secteam (junovitch) Added: branches/2016Q1/databases/libzdb/files/ - copied from r409792, head/databases/libzdb/files/ Modified: branches/2016Q1/databases/libzdb/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/databases/libzdb/Makefile ============================================================================== --- branches/2016Q1/databases/libzdb/Makefile Wed Mar 2 16:04:11 2016 (r409951) +++ branches/2016Q1/databases/libzdb/Makefile Wed Mar 2 16:22:09 2016 (r409952) @@ -3,6 +3,7 @@ PORTNAME= libzdb PORTVERSION= 3.1 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://www.tildeslash.com/libzdb/dist/ @@ -28,7 +29,7 @@ MYSQL_CONFIGURE_OFF= --without-mysql PGSQL_USES= pgsql PGSQL_CONFIGURE_ON= --with-postgresql=${LOCALBASE}/bin/pg_config PGSQL_CONFIGURE_OFF= --without-postgresql -SQLITE_USE= sqlite=3 +SQLITE_USES= sqlite SQLITE_CONFIGURE_ON= --with-sqlite=${LOCALBASE} SQLITE_CONFIGURE_OFF= --without-sqlite SSL_USE= openssl=yes