URL: https://github.com/freeipa/freeipa/pull/699 Author: neffs Title: #699: Fix libkrb5 filename for macOS Action: synchronized
To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/699/head:pr699 git checkout pr699
From 25d9d0a99d3451054fea2dfcc44a9dd7119e7593 Mon Sep 17 00:00:00 2001 From: David Kreitschmann <da...@kreitschmann.de> Date: Fri, 7 Apr 2017 14:02:46 +0200 Subject: [PATCH] Fix libkrb5 filename for macOS Signed-off-by: David Kreitschmann <da...@kreitschmann.de> --- ipapython/session_storage.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ipapython/session_storage.py b/ipapython/session_storage.py index 1443413..7c302b7 100644 --- a/ipapython/session_storage.py +++ b/ipapython/session_storage.py @@ -3,13 +3,18 @@ # import ctypes +import sys KRB5_CC_NOSUPP = -1765328137 +if sys.platform == 'darwin': + LIBKRB5_FILENAME = 'libkrb5.dylib' +else: + LIBKRB5_FILENAME = 'libkrb5.so.3' try: - LIBKRB5 = ctypes.CDLL('libkrb5.so.3') + LIBKRB5 = ctypes.CDLL(LIBKRB5_FILENAME) except OSError as e: # pragma: no cover raise ImportError(str(e))
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code