Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
aef8a36f
Commit
aef8a36f
authored
Apr 07, 1998
by
Karl Heuer
Browse files
Add --with-gssapi to specify GSS-API
authentication support for movemail.
parent
e0834ad2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
configure.in
configure.in
+13
-1
No files found.
configure.in
View file @
aef8a36f
...
...
@@ -54,6 +54,9 @@ AC_DEFINE(KERBEROS5)])
AC_ARG_WITH(hesiod,
[ --with-hesiod support Hesiod to get the POP server host],
[AC_DEFINE(HESIOD)])
AC_ARG_WITH(gssapi,
[ --with-gssapi support GSSAPI-authenticated POP],
[AC_DEFINE(GSSAPI)])
dnl This should be the last --with option, because --with-x is
dnl added later on when we find the path of X, and it's best to
dnl keep them together visually.
...
...
@@ -1623,7 +1626,11 @@ if test "${with_kerberos+set}" = set; then
AC_CHECK_LIB(com_err, com_err)
AC_CHECK_LIB(crypto, mit_des_cbc_encrypt)
AC_CHECK_LIB(krb5, krb5_init_context)
if test "${with_kerberos5+set}" != set; then
if test "${with_kerberos5+set}" = set; then
if test "${with_gssapi+set}" = set; then
AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context)
fi
else
AC_CHECK_LIB(des, des_cbc_encrypt,,
AC_CHECK_LIB(des425, des_cbc_encrypt))
AC_CHECK_LIB(krb, krb_get_cred,,
...
...
@@ -1643,6 +1650,11 @@ if test "${with_kerberos+set}" = set; then
AC_CHECK_HEADERS(com_err.h)
fi
if test "${with_gssapi+set}" = set; then
AC_CHECK_LIB(gssapi, gss_init_sec_context)
AC_CHECK_HEADERS(gssapi.h)
fi
# Solaris requires -lintl if you want strerror (which calls dgettext)
# to return localized messages.
AC_CHECK_LIB(intl, dgettext)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment