Fix many bogus things, typing error, dependance errors, etc.,

now it compiles.
Note: this stuff requires original libdes, not libdes from
Eric Yang which we have in eBones.
This commit is contained in:
Andrey A. Chernov 1995-07-24 20:29:12 +00:00
parent 59929500b4
commit bfdd0041fc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9683
2 changed files with 32 additions and 14 deletions

View File

@ -1,24 +1,33 @@
# From: @(#)Makefile 8.2 (Berkeley) 12/15/93
# $Id: Makefile,v 1.1.1.1 1994/08/12 22:02:57 csgr Exp $
# $Id: Makefile,v 1.2 1995/07/20 11:39:16 pst Exp $
LIB= telnet
SRCS= auth.c encrypt.c genget.c getent.c misc.c
SRCS+= kerberos.c enc_des.c
SRCS= auth.c encrypt.c genget.c getent.c misc.c
SRCS+= enc_des.c
SRCS+= spx.c rsaencpwd.c read_password.c
CFLAGS+= -DHAS_CGETENT
#ifdef ENCRYPTION
CFLAGS+= -DENCRYPTION -DAUTHENTICATION
CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DDES_ENCRYPTION
.if exists(/usr/lib/libkrb.a)
CFLAGS+= -DKRB4 -DKRB4_ENCPWD -DDES_ENCRYPTION -I/usr/include/kerberosIV
SRCS+= krb4encpwd.c
CFLAGS+= -DKRB4 -I/usr/include/kerberosIV
# KRB4_ENCPWD not yet defined
#CFLAGS+= -DKRB4_ENCPWD
SRCS+= kerberos.c
# KRB4_ENCPWD not yet defined
#SRCS+= krb4encpwd.c
LDADD+= -lkrb
.endif
.if exists(/usr/lib/libkrb5.a)
CFLAGS+= -DKRB5 -DDES_ENCRYPTION -DFORWARD
CFLAGS+= -DKRB5 -DFORWARD
SRCS+= kerberos5.c forward.c
LDADD+= -lkrb5
.endif
LDADD+= -ldes
#endif /* ENCRYPTION */
# These are the sources that have encryption stuff in them.

View File

@ -1,24 +1,33 @@
# From: @(#)Makefile 8.2 (Berkeley) 12/15/93
# $Id: Makefile,v 1.1.1.1 1994/08/12 22:02:57 csgr Exp $
# $Id: Makefile,v 1.2 1995/07/20 11:39:16 pst Exp $
LIB= telnet
SRCS= auth.c encrypt.c genget.c getent.c misc.c
SRCS+= kerberos.c enc_des.c
SRCS= auth.c encrypt.c genget.c getent.c misc.c
SRCS+= enc_des.c
SRCS+= spx.c rsaencpwd.c read_password.c
CFLAGS+= -DHAS_CGETENT
#ifdef ENCRYPTION
CFLAGS+= -DENCRYPTION -DAUTHENTICATION
CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DDES_ENCRYPTION
.if exists(/usr/lib/libkrb.a)
CFLAGS+= -DKRB4 -DKRB4_ENCPWD -DDES_ENCRYPTION -I/usr/include/kerberosIV
SRCS+= krb4encpwd.c
CFLAGS+= -DKRB4 -I/usr/include/kerberosIV
# KRB4_ENCPWD not yet defined
#CFLAGS+= -DKRB4_ENCPWD
SRCS+= kerberos.c
# KRB4_ENCPWD not yet defined
#SRCS+= krb4encpwd.c
LDADD+= -lkrb
.endif
.if exists(/usr/lib/libkrb5.a)
CFLAGS+= -DKRB5 -DDES_ENCRYPTION -DFORWARD
CFLAGS+= -DKRB5 -DFORWARD
SRCS+= kerberos5.c forward.c
LDADD+= -lkrb5
.endif
LDADD+= -ldes
#endif /* ENCRYPTION */
# These are the sources that have encryption stuff in them.