-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Daniel Oliveira <[email protected]> (github: oliveiradan)
- Loading branch information
1 parent
91bd5a3
commit 6778406
Showing
39 changed files
with
2,274 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,7 @@ makedepends=" | |
lvm2-dev | ||
nss-dev | ||
openldap-dev | ||
krb5-dev | ||
parted | ||
procps | ||
python-dev | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# - Find KRB5/GSSAPI C Libraries | ||
# | ||
# GSSAPI_FOUND - True if found. | ||
# GSSAPI_INCLUDE_DIR - Path to the KRB5/gssapi include directory | ||
# GSSAPI_LIBRARIES - Paths to the KRB5/gssapi libraries | ||
|
||
find_path(GSSAPI_INCLUDE_DIR gssapi.h PATHS | ||
/usr/include | ||
/opt/local/include | ||
/usr/local/include) | ||
|
||
find_library(GSSAPI_KRB5_LIBRARY gssapi_krb5) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(GSSApi DEFAULT_MSG | ||
GSSAPI_INCLUDE_DIR GSSAPI_KRB5_LIBRARY) | ||
|
||
set(GSSAPI_LIBRARIES ${GSSAPI_KRB5_LIBRARY}) | ||
|
||
mark_as_advanced( | ||
GSSAPI_INCLUDE_DIR GSSAPI_KRB5_LIBRARY) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.