diff options
author | Mateusz Piotrowski <0mp@FreeBSD.org> | 2024-07-30 13:46:15 +0200 |
---|---|---|
committer | Mateusz Piotrowski <0mp@FreeBSD.org> | 2024-07-30 13:53:26 +0200 |
commit | b4cee81fd959b9b146b1e5adf55a2866bda8d576 (patch) | |
tree | b51ceacef6b52c4505e923675a019df04c333294 | |
parent | devel/py-cbor2: Update to 5.6.4 (diff) |
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.
-rw-r--r-- | net/samba419/Makefile | 4 |
1 files 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 |