diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1997-10-10 04:03:17 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1997-10-10 04:03:17 +0000 |
| commit | 67b76a559b2a39aa5cc01442b6c8d8e68a8a1821 (patch) | |
| tree | 7f6d5ca002e0b04d6f34d9c2a33eb3a9b7c8da17 | |
| parent | bfb109df293a8a3f8f86d9854f4737dbb7374b79 (diff) | |
Notes
| -rw-r--r-- | gnu/usr.bin/cvs/cvs/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/cvs/Makefile b/gnu/usr.bin/cvs/cvs/Makefile index 9d5dc2de9819..b254599c5c7d 100644 --- a/gnu/usr.bin/cvs/cvs/Makefile +++ b/gnu/usr.bin/cvs/cvs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.16 1997/02/22 15:45:14 peter Exp $ +# $Id: Makefile,v 1.17 1997/05/15 23:00:05 peter Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -24,4 +24,15 @@ CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../lib -I${CVSDIR}/src -I${CVSDIR}/lib -DHAVE DPADD+= ${LIBCVS} ${LIBGNUREGEX} ${LIBMD} ${LIBCRYPT} ${LIBZ} LDADD+= -lcvs -lgnuregex -lmd -lcrypt -lz +.if exists(${DESTDIR}/usr/lib/libkrb.a) && defined(MAKE_KERBEROS4) +CFLAGS+=-DHAVE_KERBEROS -DHAVE_KRB_GET_ERR_TEXT +LDADD+= -lkrb -ldes +DPADD+= ${LIBKRB} ${LIBDES} +DISTRIBUTION= krb +# XXX do we want to mess with this? It's probably not really worth it for +# the public freebsd stuff, but others might want it. It's an optional +# feature anyway, the -x switch is needed to activate it. +CFLAGS+= -DENCRYPTION +.endif + .include <bsd.prog.mk> |
