From 378b8a74a102a7ba31690b8c83f1dca75da9245b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Lundstr=C3=B6m?= Date: Tue, 12 Jan 2021 09:48:10 +0100 Subject: [PATCH] Document how to use a non-detected Kerberos lib --- README.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.txt b/README.txt index 62554e97..af83a822 100644 --- a/README.txt +++ b/README.txt @@ -68,6 +68,16 @@ Easy Way $ pip install gssapi +You can also use a specific Kerberos library by defining the `GSSAPI_*` +environment variables: + +.. code-block:: bash + + $ export PATH=/path/to/where/krb5-config/is:$PATH + $ export GSSAPI_LINKER_ARGS="$(krb5-config --libs gssapi)" + $ export GSSAPI_COMPILER_ARGS="$(krb5-config --cflags gssapi)" + $ export GSSAPI_MAIN_LIB="/path/to/where/libgss{{api,-3}.dll,api.{so,dylib}}/is" + From the Git Repo -----------------