From: Tom Yu Date: Tue, 4 Jun 1996 04:27:51 +0000 (+0000) Subject: * configure.in: Ezra's changes to allow compiling w/o krb4 X-Git-Tag: krb5-1.0-beta6~23 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=df638160e11df0dfef74adfcdd9311dce41bcf15;p=krb5.git * configure.in: Ezra's changes to allow compiling w/o krb4 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8212 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/appl/telnet/telnetd/ChangeLog b/src/appl/telnet/telnetd/ChangeLog index 2bcce3a87..2026d5a95 100644 --- a/src/appl/telnet/telnetd/ChangeLog +++ b/src/appl/telnet/telnetd/ChangeLog @@ -1,3 +1,7 @@ +Tue Jun 4 00:27:09 1996 Tom Yu + + * configure.in: Ezra's changes to allow compiling w/o krb4 + Wed May 1 21:14:45 1996 Ken Raeburn * configure.in: Fix typo in Apr 16 HP-UX change. diff --git a/src/appl/telnet/telnetd/configure.in b/src/appl/telnet/telnetd/configure.in index 97af7585b..55221014a 100644 --- a/src/appl/telnet/telnetd/configure.in +++ b/src/appl/telnet/telnetd/configure.in @@ -65,6 +65,16 @@ AC_MSG_RESULT($krb5_cv_sys_setpgrp_two) if test $krb5_cv_sys_setpgrp_two = yes; then AC_DEFINE(SETPGRP_TWOARG) 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 KRB5_LIBRARIES V5_USE_SHARED_LIB