Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/usr.bin/passwd Pull up rev. 1.26:
details: https://anonhg.NetBSD.org/src/rev/20ee3208719d
branches: netbsd-1-5
changeset: 488303:20ee3208719d
user: thorpej <thorpej%NetBSD.org@localhost>
date: Tue Jun 27 21:49:27 2000 +0000
description:
Pull up rev. 1.26:
Add a MKKERBEROS check to enable/disable kerberos support during the build.
diffstat:
usr.bin/passwd/Makefile | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diffs (34 lines):
diff -r 750eb951f7f5 -r 20ee3208719d usr.bin/passwd/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/usr.bin/passwd/Makefile Tue Jun 27 21:49:27 2000 +0000
@@ -0,0 +1,30 @@
+# $NetBSD: Makefile,v 1.25.2.2 2000/06/27 21:49:27 thorpej Exp $
+# from: @(#)Makefile 8.3 (Berkeley) 4/2/94
+
+.include <bsd.own.mk>
+
+PROG= passwd
+SRCS= local_passwd.c yp_passwd.c passwd.c
+DPADD+= ${LIBRPCSVC} ${LIBCRYPT} ${LIBUTIL}
+LDADD+= -lrpcsvc -lcrypt -lutil
+CPPFLAGS+=-I${.CURDIR} -DYP -DLOGIN_CAP
+
+LINKS= ${BINDIR}/passwd ${BINDIR}/yppasswd
+MLINKS= passwd.1 yppasswd.1
+
+BINOWN= root
+BINMODE=4555
+.if defined(notyet)
+INSTALLFLAGS=-fschg
+.endif
+
+.if (${MKKERBEROS} != "no")
+CPPFLAGS+= -DKERBEROS5 -I${DESTDIR}/usr/include/krb5
+SRCS+= krb5_passwd.c
+LDADD+= -lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lcrypt
+.endif
+
+.include <bsd.prog.mk>
+
+# getpwent.o: getpwent.c
+# ${COMPILE.c} -UYP ${.IMPSRC}
Home |
Main Index |
Thread Index |
Old Index