diff options
author | markm <markm@FreeBSD.org> | 1997-09-28 08:38:04 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1997-09-28 08:38:04 +0000 |
commit | 6122273f59fc3ee71eadc1d37924be806dd9212b (patch) | |
tree | ad1d9a2a8fb9fc6b7a8a0d86e384112d78505b19 /libexec/rshd/Makefile | |
parent | 55c21e72637ac7a9924830a88be54998f8c2c10b (diff) | |
download | FreeBSD-src-6122273f59fc3ee71eadc1d37924be806dd9212b.zip FreeBSD-src-6122273f59fc3ee71eadc1d37924be806dd9212b.tar.gz |
Changes for the new KTH Kerberos4.
Also make -Wall a bit quieter
Diffstat (limited to 'libexec/rshd/Makefile')
-rw-r--r-- | libexec/rshd/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libexec/rshd/Makefile b/libexec/rshd/Makefile index c94f453..cb23d4c 100644 --- a/libexec/rshd/Makefile +++ b/libexec/rshd/Makefile @@ -1,12 +1,11 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $Id: Makefile,v 1.6 1997/02/22 14:22:22 peter Exp $ +# $Id: Makefile,v 1.7 1997/04/23 03:06:47 davidn Exp $ PROG= rshd SRCS= rshd.c MAN8= rshd.8 -.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_KERBEROS) \ - || defined(MAKE_EBONES)) +.if exists(${DESTDIR}/usr/lib/libkrb.a) && defined(MAKE_KERBEROS4) CFLAGS+=-DKERBEROS -DCRYPT DPADD= ${LIBKRB} ${LIBDES} LDADD= -lkrb -ldes @@ -14,7 +13,7 @@ DISTRIBUTION= krb .endif # For login_cap handling -CFLAGS+=-DLOGIN_CAP +CFLAGS+=-DLOGIN_CAP -Wall DPADD+= ${LIBUTIL} LDADD+= -lutil |