diff options
| -rw-r--r-- | configure.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 6f95527f65c..f6e729ab8ee 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -1448,9 +1448,12 @@ strerror fpathconf select mktime euidaccess getpagesize tzset setlocale) | |||
| 1448 | # than to expect to find it in ncurses. | 1448 | # than to expect to find it in ncurses. |
| 1449 | AC_CHECK_LIB(ncurses, tparm) | 1449 | AC_CHECK_LIB(ncurses, tparm) |
| 1450 | 1450 | ||
| 1451 | # These tell us whether Kerberos is available. | 1451 | # These tell us which Kerberos-related libraries to use. |
| 1452 | AC_CHECK_LIB(krb, krb_get_cred) | 1452 | if test "${with_kerberos+set}" = set; then |
| 1453 | AC_CHECK_LIB(des, des_cbc_encrypt) | 1453 | AC_CHECK_LIB(krb, krb_get_cred) |
| 1454 | AC_CHECK_LIB(des, des_cbc_encrypt) | ||
| 1455 | AC_CHECK_LIB(com_err, com_err) | ||
| 1456 | fi | ||
| 1454 | 1457 | ||
| 1455 | AC_MSG_CHECKING(whether localtime caches TZ) | 1458 | AC_MSG_CHECKING(whether localtime caches TZ) |
| 1456 | AC_CACHE_VAL(emacs_cv_localtime_cache, | 1459 | AC_CACHE_VAL(emacs_cv_localtime_cache, |