git: 9903e0dac450 - main - databases/sqlcipher: enable options needed for net-im/gurk-rs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 16 Mar 2025 10:20:24 UTC
The branch main has been updated by fuz:
URL: https://cgit.FreeBSD.org/ports/commit/?id=9903e0dac4502fb69ed8baf852b1d46ca50c88f8
commit 9903e0dac4502fb69ed8baf852b1d46ca50c88f8
Author: Herbert J. Skuhra <herbert@gojira.at>
AuthorDate: 2025-02-27 11:22:36 +0000
Commit: Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2025-03-16 10:19:26 +0000
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}