diff options
Diffstat (limited to 'devel/electron37/files/patch-net_http_http__auth__gssapi__posix.cc')
-rw-r--r-- | devel/electron37/files/patch-net_http_http__auth__gssapi__posix.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/electron37/files/patch-net_http_http__auth__gssapi__posix.cc b/devel/electron37/files/patch-net_http_http__auth__gssapi__posix.cc new file mode 100644 index 000000000000..e73babd89b89 --- /dev/null +++ b/devel/electron37/files/patch-net_http_http__auth__gssapi__posix.cc @@ -0,0 +1,13 @@ +--- net/http/http_auth_gssapi_posix.cc.orig 2025-04-22 20:15:27 UTC ++++ net/http/http_auth_gssapi_posix.cc +@@ -366,7 +366,9 @@ base::NativeLibrary GSSAPISharedLibrary::LoadSharedLib + } else { + #if BUILDFLAG(IS_APPLE) + library_names.emplace_back("/System/Library/Frameworks/GSS.framework/GSS"); +-#elif BUILDFLAG(IS_OPENBSD) ++#elif BUILDFLAG(IS_BSD) ++ // MIT Kerberos - FreeBSD ++ library_names.emplace_back("libgssapi_krb5.so.2"); + // Heimdal - OpenBSD + library_names.emplace_back("libgssapi.so"); + #else |