Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
6cff068d
Commit
6cff068d
authored
11 years ago
by
Eric Cano
Browse files
Options
Downloads
Patches
Plain Diff
Added printout of the detected Kerberos parameters and fixed a synthax issue in it.
parent
0846d80c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
security/CMakeLists.txt
+8
-2
8 additions, 2 deletions
security/CMakeLists.txt
with
8 additions
and
2 deletions
security/CMakeLists.txt
+
8
−
2
View file @
6cff068d
...
...
@@ -43,12 +43,18 @@ CastorInstallLibManPage(Csec_api)
FIND_PROGRAM
(
KRB5_CONFIG
NAMES krb5-config
PATHS
"/usr/kerberos/bin;/usr/bin"
)
string
(
REGEX REPLACE
"
\n
"
""
KRB5_CONFIG
${
KRB5_CONFIG
}
)
message
(
STATUS
"KRB5_CONFIG = '
${
KRB5_CONFIG
}
'"
)
execute_process
(
COMMAND $
(
KRB5_CONFIG
)
gssapi --cflags
COMMAND
$
{
KRB5_CONFIG
}
gssapi --cflags
OUTPUT_VARIABLE KRB5_CFLAGS
)
string
(
REGEX REPLACE
"
\n
"
""
KRB5_CFLAGS
"
${
KRB5_CFLAGS
}
"
)
message
(
STATUS
"KRB5_CFLAGS = '
${
KRB5_CFLAGS
}
'"
)
execute_process
(
COMMAND $
(
KRB5_CONFIG
)
gssapi --libs
COMMAND
$
{
KRB5_CONFIG
}
gssapi --libs
OUTPUT_VARIABLE KRB5_LIBS
)
string
(
REGEX REPLACE
"
\n
"
""
KRB5_LIBS
"
${
KRB5_LIBS
}
"
)
message
(
STATUS
"KRB5_LIBS = '
${
KRB5_LIBS
}
'"
)
# Compile the plugin
set
(
SECURITY_PLUGIN_KRB5
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment