diff options
author | ache <ache@FreeBSD.org> | 1995-07-24 21:38:32 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-07-24 21:38:32 +0000 |
commit | 96d8cee5234397e0210acbd78e32115213bf0b1f (patch) | |
tree | ded2da90d2b34bc409261a1c80e7d841de987b15 /secure/lib | |
parent | cb87a42d33b0a2c6a9f33eba68637531529f9f68 (diff) | |
download | FreeBSD-src-96d8cee5234397e0210acbd78e32115213bf0b1f.zip FreeBSD-src-96d8cee5234397e0210acbd78e32115213bf0b1f.tar.gz |
Since this stuff not works with eBones, ifdef kerberos stuff
with MAKE_KERBEROS to allow other things to live
Submitted by:
Obtained from:
Diffstat (limited to 'secure/lib')
-rw-r--r-- | secure/lib/libtelnet/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/secure/lib/libtelnet/Makefile b/secure/lib/libtelnet/Makefile index 289de7b..837f4d4 100644 --- a/secure/lib/libtelnet/Makefile +++ b/secure/lib/libtelnet/Makefile @@ -1,8 +1,9 @@ # From: @(#)Makefile 8.2 (Berkeley) 12/15/93 -# $Id: Makefile,v 1.3 1995/07/24 20:29:12 ache Exp $ +# $Id: Makefile,v 1.4 1995/07/24 21:10:47 ache Exp $ # This stuff need original libdes to run (new_rnd_key.c module), # current eBones/des lib don't have it +# Kerberos4 stuff ifdefed by MAKE_KERBEROS (make.conf) because of it LIB= telnet SRCS= auth.c encrypt.c genget.c getent.c misc.c @@ -13,6 +14,7 @@ CFLAGS+= -DHAS_CGETENT #ifdef ENCRYPTION CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DDES_ENCRYPTION +.ifdef MAKE_KERBEROS .if exists(/usr/lib/libkrb.a) CFLAGS+= -DKRB4 -I/usr/include/kerberosIV # KRB4_ENCPWD not yet defined @@ -22,6 +24,7 @@ SRCS+= kerberos.c #SRCS+= krb4encpwd.c LDADD+= -lkrb .endif +.endif .if exists(/usr/lib/libkrb5.a) CFLAGS+= -DKRB5 -DFORWARD |