Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Mar 2016 16:22:10 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
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
Message-ID:  <201603021622.u22GMAsH069682@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603021622.u22GMAsH069682>