diff options
| author | Tom Yu <tlyu@mit.edu> | 1996-06-04 04:27:01 +0000 |
|---|---|---|
| committer | Tom Yu <tlyu@mit.edu> | 1996-06-04 04:27:01 +0000 |
| commit | 46c3493d3753fc136c847ae62ed50517dcf480d2 (patch) | |
| tree | 9350d0de47e4cc935dbac0d9ab3e0e50b208ad71 /src | |
| parent | 4d25c2daef4b178b90e0ea2e57818f69e4aabcba (diff) | |
| download | krb5-46c3493d3753fc136c847ae62ed50517dcf480d2.tar.gz krb5-46c3493d3753fc136c847ae62ed50517dcf480d2.tar.xz krb5-46c3493d3753fc136c847ae62ed50517dcf480d2.zip | |
* configure.in: Ezra's patches to allow compilation w/o krb4
support
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8211 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/appl/telnet/telnet/ChangeLog | 5 | ||||
| -rw-r--r-- | src/appl/telnet/telnet/configure.in | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/appl/telnet/telnet/ChangeLog b/src/appl/telnet/telnet/ChangeLog index b467da049..ddce36589 100644 --- a/src/appl/telnet/telnet/ChangeLog +++ b/src/appl/telnet/telnet/ChangeLog @@ -1,3 +1,8 @@ +Mon Jun 3 21:31:37 1996 Tom Yu <tlyu@mit.edu> + + * configure.in: Ezra's patches to allow compilation w/o krb4 + support + Mon Mar 18 20:31:44 1996 Theodore Y. Ts'o <tytso@dcl> * Makefile.in: Added flags to turn on the encryption option. diff --git a/src/appl/telnet/telnet/configure.in b/src/appl/telnet/telnet/configure.in index 74f9a83ca..bf1df5f8a 100644 --- a/src/appl/telnet/telnet/configure.in +++ b/src/appl/telnet/telnet/configure.in @@ -34,6 +34,16 @@ else AC_MSG_RESULT(Kerberos 4 authentication enabled) AC_DEFINE(KRB4) fi +dnl +dnl For the encryption code we need libdes425 +dnl Fix post beta-6 +withval=no +AC_ARG_WITH([krb4],[],,withval=yes) +if test $withval = no; then + KRB4_CRYPTO_LIB='-ldes425' + DEPKRB4_CRYPTO_LIB='$(TOPLIBD)/libdes425.a' +fi +dnl USE_KRB4_LIBRARY USE_ANAME KRB5_LIBRARIES |
