From 9903e0dac4502fb69ed8baf852b1d46ca50c88f8 Mon Sep 17 00:00:00 2001 From: "Herbert J. Skuhra" Date: Thu, 27 Feb 2025 12:22:36 +0100 Subject: [PATCH] databases/sqlcipher: enable options needed for net-im/gurk-rs PR: 284248 Approved by: jharris@widomaker.com (maintainer timeout) --- databases/sqlcipher/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/databases/sqlcipher/Makefile b/databases/sqlcipher/Makefile index d83f369394dd..406d7253eaa5 100644 --- a/databases/sqlcipher/Makefile +++ b/databases/sqlcipher/Makefile @@ -1,6 +1,7 @@ PORTNAME= sqlcipher DISTVERSIONPREFIX= v DISTVERSION= 4.6.1 +PORTREVISION= 1 CATEGORIES= databases MAINTAINER= jharris@widomaker.com @@ -17,7 +18,8 @@ USE_GITHUB= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+=--enable-tempstore=yes --disable-tcl --disable-readline -CPPFLAGS+= -DSQLITE_HAS_CODEC +CPPFLAGS+= -DSQLITE_HAS_CODEC -DSQLITE_ENABLE_UNLOCK_NOTIFY \ + -DSQLITE_ENABLE_COLUMN_METADATA=1 LDFLAGS+= -L${LOCALBASE}/lib -L${OPENSSLLIB} CFLAGS+= -I${LOCALBASE}/include -I${OPENSSLINC}