summaryrefslogtreecommitdiff
path: root/net-misc/putty/files/putty-0.77-nogssapi.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-04 15:02:51 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-04 15:02:51 +0000
commit5565fb7867ee9faddf046e42a0a3a1a207803938 (patch)
tree4ef17bc3c9c8058e033b4f7452064b3f9657e023 /net-misc/putty/files/putty-0.77-nogssapi.patch
parentacf34cb86be38d3601273c231058d3fda627e618 (diff)
gentoo auto-resync : 04:12:2022 - 15:02:50
Diffstat (limited to 'net-misc/putty/files/putty-0.77-nogssapi.patch')
-rw-r--r--net-misc/putty/files/putty-0.77-nogssapi.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/net-misc/putty/files/putty-0.77-nogssapi.patch b/net-misc/putty/files/putty-0.77-nogssapi.patch
deleted file mode 100644
index 84d36e1849e0..000000000000
--- a/net-misc/putty/files/putty-0.77-nogssapi.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Define NO_GSSAPI when -DPUTTY_GSSAPI=OFF
-
-Previously it would only be defined if -DPUTTY_GSSAPI=DYNAMIC and libdl is
-not found on the system. Setting -DPUTTY_GSSAPI=OFF on systems with glibc
-2.33 and earlier causes a build failure, because libdl is not linked in.
-
-Bug: https://bugs.gentoo.org/873355
---- a/cmake/platforms/unix.cmake
-+++ b/cmake/platforms/unix.cmake
-@@ -105,6 +105,8 @@
- "Could not find libdl -- cannot provide dynamic GSSAPI support")
- set(NO_GSSAPI ON)
- endif()
-+else()
-+ set(NO_GSSAPI ON)
- endif()
-
- if(PUTTY_GSSAPI STREQUAL STATIC)