aboutsummaryrefslogtreecommitdiff
path: root/ports/libssh
diff options
context:
space:
mode:
authorMatthias C. M. Troffaes <matthias.troffaes@gmail.com>2021-06-09 23:52:28 +0100
committerGitHub <noreply@github.com>2021-06-09 15:52:28 -0700
commit421fabcc78715e022a5425d63bdcb0832356c175 (patch)
tree2e2ede68bd7fa71caf0e769295a0f518389f1ab6 /ports/libssh
parent6b61943e178a6e861f3555a12cdc78e58a243763 (diff)
downloadvcpkg-421fabcc78715e022a5425d63bdcb0832356c175.tar.gz
vcpkg-421fabcc78715e022a5425d63bdcb0832356c175.zip
[libssh] disable gssapi (#18169)
* [libssh] disable gssapi as it is not supported in the .pc file and thus breaks some dependencies such as ffmpeg * [libssh] x-add-version
Diffstat (limited to 'ports/libssh')
-rw-r--r--ports/libssh/CONTROL2
-rw-r--r--ports/libssh/portfile.cmake3
2 files changed, 3 insertions, 2 deletions
diff --git a/ports/libssh/CONTROL b/ports/libssh/CONTROL
index 975903356..5f7ee61c1 100644
--- a/ports/libssh/CONTROL
+++ b/ports/libssh/CONTROL
@@ -1,6 +1,6 @@
Source: libssh
Version: 0.9.5
-Port-Version: 3
+Port-Version: 4
Homepage: https://www.libssh.org/
Build-Depends: libssh[core,mbedtls] (android)
Description: libssh is a multiplatform C library implementing the SSHv2 protocol on client and server side
diff --git a/ports/libssh/portfile.cmake b/ports/libssh/portfile.cmake
index cbacd542b..f9a430129 100644
--- a/ports/libssh/portfile.cmake
+++ b/ports/libssh/portfile.cmake
@@ -32,7 +32,8 @@ vcpkg_configure_cmake(
-DUNIT_TESTING=OFF
-DCLIENT_TESTING=OFF
-DSERVER_TESTING=OFF
- -DWITH_NACL=OFF)
+ -DWITH_NACL=OFF
+ -DWITH_GSSAPI=OFF)
vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/${PORT})