blob: e73babd89b89eb6ea204dd7719e3d06949993f60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
|