mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-03 11:33:37 +00:00
Check for com_err library, but only if --with-kerberos was used.
Check for krb and des only if --with-kerberos.
This commit is contained in:
parent
87aed91b30
commit
1fc25d6280
@ -1448,9 +1448,12 @@ strerror fpathconf select mktime euidaccess getpagesize tzset setlocale)
|
|||||||
# than to expect to find it in ncurses.
|
# than to expect to find it in ncurses.
|
||||||
AC_CHECK_LIB(ncurses, tparm)
|
AC_CHECK_LIB(ncurses, tparm)
|
||||||
|
|
||||||
# These tell us whether Kerberos is available.
|
# These tell us which Kerberos-related libraries to use.
|
||||||
AC_CHECK_LIB(krb, krb_get_cred)
|
if test "${with_kerberos+set}" = set; then
|
||||||
AC_CHECK_LIB(des, des_cbc_encrypt)
|
AC_CHECK_LIB(krb, krb_get_cred)
|
||||||
|
AC_CHECK_LIB(des, des_cbc_encrypt)
|
||||||
|
AC_CHECK_LIB(com_err, com_err)
|
||||||
|
fi
|
||||||
|
|
||||||
AC_MSG_CHECKING(whether localtime caches TZ)
|
AC_MSG_CHECKING(whether localtime caches TZ)
|
||||||
AC_CACHE_VAL(emacs_cv_localtime_cache,
|
AC_CACHE_VAL(emacs_cv_localtime_cache,
|
||||||
|
Loading…
Reference in New Issue
Block a user