Skip to content

Fix dynamic GSSAPI lib path detection on macOS for kerberos #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/gssapi/lib_gssapi_loader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ def self.load_mit
gssapi_lib = 'libgssapi_krb5.so.2'
ffi_lib gssapi_lib, FFI::Library::LIBC
when /darwin/
gssapi_lib = '/usr/lib/libgssapi_krb5.dylib'
brew_lib = `brew --prefix krb5 2>/dev/null`.chomp
gssapi_lib = File.exist?("#{brew_lib}/lib/libgssapi_krb5.dylib") ? "#{brew_lib}/lib/libgssapi_krb5.dylib" : '/usr/lib/libgssapi_krb5.dylib'
ffi_lib gssapi_lib, FFI::Library::LIBC
when /mswin|mingw32|windows/
# Pull the gssapi32 path from the environment if it exist, otherwise use the default in Program Files
Expand Down