diff options
author | mat <mat@FreeBSD.org> | 2016-04-26 00:13:38 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-04-26 00:13:38 +0800 |
commit | 249200c5ac5a6482e3f464dcbabf7f4879065734 (patch) | |
tree | 2cf1a158cf8540bcd6bed759d4e35240e31330bb /net-p2p | |
parent | 4a29dd7050d143c963a767fa8b7671e3a0ddc09d (diff) | |
download | freebsd-ports-gnome-249200c5ac5a6482e3f464dcbabf7f4879065734.tar.gz freebsd-ports-gnome-249200c5ac5a6482e3f464dcbabf7f4879065734.tar.zst freebsd-ports-gnome-249200c5ac5a6482e3f464dcbabf7f4879065734.zip |
Remove USE_SQLITE from bsd.databases.mk, replaced by USES=sqlite.
While there replace USE_SQLITE=x by USES=sqlite:x.
PR: 208971
Submitted by: mat
Exp-run by: antoine
With hat: portmgr
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D5951
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/gnunet/Makefile | 2 | ||||
-rw-r--r-- | net-p2p/uhub/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net-p2p/gnunet/Makefile b/net-p2p/gnunet/Makefile index 6856458dd6df..c5a71a2ad617 100644 --- a/net-p2p/gnunet/Makefile +++ b/net-p2p/gnunet/Makefile @@ -71,7 +71,7 @@ PGSQL_USES= pgsql PGSQL_CONFIGURE_ON= --with-postgres=${LOCALBASE} PGSQL_CONFIGURE_OFF= --without-postgres SQLITE_DESC= Use SQLite for the data store and cache -SQLITE_USE= sqlite=yes +SQLITE_USES= sqlite SQLITE_CONFIGURE_ON= --with-sqlite=${LOCALBASE} SQLITE_CONFIGURE_OFF= --without-sqlite diff --git a/net-p2p/uhub/Makefile b/net-p2p/uhub/Makefile index 8454fbd5fa1c..5ee8849fcf6c 100644 --- a/net-p2p/uhub/Makefile +++ b/net-p2p/uhub/Makefile @@ -30,7 +30,7 @@ OPTIONS_SUB= yes OPENSSL_USE= openssl=yes OPENSSL_CMAKE_OFF= -DSSL_SUPPORT:BOOL=OFF -SQLITE_USE= sqlite=yes +SQLITE_USES= sqlite SQLITE_CMAKE_OFF= -DSQLITE_SUPPORT:BOOL=OFF .include <bsd.port.options.mk> |