diff options
author | Ronald Klop <ronald@FreeBSD.org> | 2024-12-03 21:36:03 +0100 |
---|---|---|
committer | Ronald Klop <ronald@FreeBSD.org> | 2024-12-03 21:36:03 +0100 |
commit | b1d9b67df2ecb4f7024eb75fd869ead430b0297e (patch) | |
tree | d5d2ef2a0620a27b5d044263f5ba7ac3ac9e1c18 | |
parent | sysutils/cbsd: Update to 14.2.0 (diff) |
databases/mongosh: fix run_depends on krb5
The USES construction and a build as well as a run depends.
Fixes warnings of make stage-qa.
PR: 282889
Approved by: maintainer timeout
-rw-r--r-- | databases/mongosh/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/databases/mongosh/Makefile b/databases/mongosh/Makefile index f181f49c9b31..71da90cf10c9 100644 --- a/databases/mongosh/Makefile +++ b/databases/mongosh/Makefile @@ -29,8 +29,7 @@ BUILD_DEPENDS= bash>0:shells/bash \ libnghttp2>=1.45.1:www/libnghttp2 \ libuv>=1.42.0:devel/libuv \ objdump:devel/binutils \ - git>0:devel/git \ - ${PREFIX}/include/gssapi/gssapi_generic.h:security/krb5 + git>0:devel/git RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss LIB_DEPENDS= libmongocrypt.so:databases/libmongocrypt \ libbrotlidec.so:archivers/brotli \ @@ -38,7 +37,7 @@ LIB_DEPENDS= libmongocrypt.so:databases/libmongocrypt \ libnghttp2.so:www/libnghttp2 \ libuv.so:devel/libuv -USES= compiler:c++11-lib gmake localbase pkgconfig nodejs:20,build python:build ssl +USES= compiler:c++11-lib gmake gssapi:mit localbase pkgconfig nodejs:20,build python:build ssl USE_GITHUB= yes GH_ACCOUNT= VultureProject |