git: b4cee81fd959 - main - net/samba419: Require the right version of unbundled tdb
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 30 Jul 2024 11:54:03 UTC
The branch main has been updated by 0mp:
URL: https://cgit.FreeBSD.org/ports/commit/?id=b4cee81fd959b9b146b1e5adf55a2866bda8d576
commit b4cee81fd959b9b146b1e5adf55a2866bda8d576
Author: Mateusz Piotrowski <0mp@FreeBSD.org>
AuthorDate: 2024-07-30 11:46:15 +0000
Commit: Mateusz Piotrowski <0mp@FreeBSD.org>
CommitDate: 2024-07-30 11:53:26 +0000
net/samba419: Require the right version of unbundled tdb
When building with SAMBA4_BUNDLED_TDB=no, the configure target errors out with
the following message:
> Checking for system tdb (>=1.4.9) : not found
> ERROR: System library tdb of version 1.4.9 not found, and bundling disabled
> ===> Script "configure" failed unexpectedly.
Update the version requirements in the makefile accordingly.
To address this properly, we need to bring databases/tdb 1.4.9 to the ports
tree.
Approved by: portmgr blanket
Fixes: b0a4fa4a12b0 net/samba419: Add new port
Sponsored by: Klara, Inc.
---
net/samba419/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/samba419/Makefile b/net/samba419/Makefile
index 5186a7366219..23b9d5af4ad5 100644
--- a/net/samba419/Makefile
+++ b/net/samba419/Makefile
@@ -242,8 +242,8 @@ PLIST_SUB+= SAMBA4_BUNDLED_TDB=""
SUB_LIST+= SAMBA4_BUNDLED_TDB=""
.else
SAMBA4_BUNDLED_LIBS+= !tdb
-BUILD_DEPENDS+= tdb>=1.4.6:databases/tdb
-RUN_DEPENDS+= tdb>=1.4.6:databases/tdb
+BUILD_DEPENDS+= tdb>=1.4.9:databases/tdb
+RUN_DEPENDS+= tdb>=1.4.9:databases/tdb
PLIST_SUB+= SAMBA4_BUNDLED_TDB="@comment "
SUB_LIST+= SAMBA4_BUNDLED_TDB="@comment "
.endif