svn commit: r409952 - in branches/2016Q1/databases/libzdb: . files
Raphael Kubo da Costa
rakuco at FreeBSD.org
Wed Mar 2 16:22:11 UTC 2016
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
More information about the svn-ports-all
mailing list