diff options
| author | Mark Murray <markm@FreeBSD.org> | 2000-02-24 21:21:15 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2000-02-24 21:21:15 +0000 |
| commit | 96ccf174ec86ec2dc57362bbb6c77f1c939d9b60 (patch) | |
| tree | 33eada09c081fe7f8eb09ab66052f611d6eeb7b8 | |
| parent | f0ad5f0b62d91bcbc7818a1f599124cd4ad73134 (diff) | |
Notes
| -rw-r--r-- | bin/rcp/Makefile | 4 | ||||
| -rw-r--r-- | bin/rcp/rcp.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/rcp/Makefile b/bin/rcp/Makefile index d4fa4e834ad4..c3d24835eb16 100644 --- a/bin/rcp/Makefile +++ b/bin/rcp/Makefile @@ -7,14 +7,14 @@ CFLAGS+=-DBINDIR=${BINDIR} .if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4) SRCS+= krcmd.c kcmd.c rcmd_util.c -DPADD= ${LIBUTIL} ${LIBKRB} ${LIBDES} +DPADD= ${LIBUTIL} ${LIBKRB} ${LIBCRYPTO} CFLAGS+=-DKERBEROS -DCRYPT -DHAVE_CONFIG_H \ -I${.CURDIR}/../../kerberosIV/include \ -I${.CURDIR}/../../crypto/kerberosIV/include \ -I${.CURDIR}/../../crypto/kerberosIV/lib/roken \ -I${.CURDIR}/../../crypto/kerberosIV/appl/bsd \ -I${.CURDIR} -LDADD= -lutil -lkrb -ldes +LDADD= -lutil -lkrb -lcrypto DISTRIBUTION= krb4 .PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd .endif diff --git a/bin/rcp/rcp.c b/bin/rcp/rcp.c index 292df376bde5..a1534ea6d823 100644 --- a/bin/rcp/rcp.c +++ b/bin/rcp/rcp.c @@ -72,7 +72,7 @@ static const char rcsid[] = #include "extern.h" #ifdef KERBEROS -#include <des.h> +#include <openssl/des.h> #include <krb.h> #include "bsd_locl.h" |
