diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-08-25 16:58:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-08-25 16:58:09 +0000 |
commit | 9eeb08acb6d97b6e27011a345dfdb117eeb21dbb (patch) | |
tree | 4c5385b839ef858e1835b449820163dfcff7fd2c /configure.in | |
parent | 1ec7cc7c4a31b6b51d7eabe2e70ff190d8a6a504 (diff) | |
download | emacs-9eeb08acb6d97b6e27011a345dfdb117eeb21dbb.tar.gz |
Check for krb and des libraries.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 21ad12d5524..6f95527f65c 100644 --- a/configure.in +++ b/configure.in @@ -1448,6 +1448,10 @@ strerror fpathconf select mktime euidaccess getpagesize tzset setlocale) # than to expect to find it in ncurses. AC_CHECK_LIB(ncurses, tparm) +# These tell us whether Kerberos is available. +AC_CHECK_LIB(krb, krb_get_cred) +AC_CHECK_LIB(des, des_cbc_encrypt) + AC_MSG_CHECKING(whether localtime caches TZ) AC_CACHE_VAL(emacs_cv_localtime_cache, [if test x$ac_cv_func_tzset = xyes; then |