diff options
author | ache <ache@FreeBSD.org> | 1995-07-24 21:49:06 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-07-24 21:49:06 +0000 |
commit | 7e1e5231a4562d131de47dcd76540d1729311be9 (patch) | |
tree | 45994244a55e27d30f87edb0e48f8e362069be57 /secure | |
parent | 8d6cb97e95d052737b47d360325425615f4ebb89 (diff) | |
download | FreeBSD-src-7e1e5231a4562d131de47dcd76540d1729311be9.zip FreeBSD-src-7e1e5231a4562d131de47dcd76540d1729311be9.tar.gz |
Move -ldes under kerb stuff, my fault
Reviewed by:
Submitted by:
Obtained from:
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/libtelnet/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/secure/lib/libtelnet/Makefile b/secure/lib/libtelnet/Makefile index 837f4d4..7ccd3e2 100644 --- a/secure/lib/libtelnet/Makefile +++ b/secure/lib/libtelnet/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.2 (Berkeley) 12/15/93 -# $Id: Makefile,v 1.4 1995/07/24 21:10:47 ache Exp $ +# $Id: Makefile,v 1.5 1995/07/24 21:38:32 ache Exp $ # This stuff need original libdes to run (new_rnd_key.c module), # current eBones/des lib don't have it @@ -22,18 +22,16 @@ CFLAGS+= -DKRB4 -I/usr/include/kerberosIV SRCS+= kerberos.c # KRB4_ENCPWD not yet defined #SRCS+= krb4encpwd.c -LDADD+= -lkrb +LDADD+= -lkrb -ldes .endif .endif .if exists(/usr/lib/libkrb5.a) CFLAGS+= -DKRB5 -DFORWARD SRCS+= kerberos5.c forward.c -LDADD+= -lkrb5 +LDADD+= -lkrb5 -ldes .endif -LDADD+= -ldes - #endif /* ENCRYPTION */ # These are the sources that have encryption stuff in them. |