summaryrefslogtreecommitdiffstats
path: root/pw/Makefile
diff options
context:
space:
mode:
authorDavid Nugent <davidn@FreeBSD.org>1996-12-17 14:15:35 +0000
committerDavid Nugent <davidn@FreeBSD.org>1996-12-17 14:15:35 +0000
commit70b52c92e25b591a71e7a773a064bc8709264454 (patch)
tree6ce4a913783d42fd72cc3aac4929ae560fff690f /pw/Makefile
parent6f942679935ca267ade32d4e5a6bfd7d9cf26b14 (diff)
downloadpw-darwin-70b52c92e25b591a71e7a773a064bc8709264454.tar.gz
pw-darwin-70b52c92e25b591a71e7a773a064bc8709264454.tar.zst
pw-darwin-70b52c92e25b591a71e7a773a064bc8709264454.zip
Changes to password generator: fallback to MD5 generator disabled
(/dev/urandom used by default under FreeBSD), and implemented a "portable" but less secure generator for other systems. Add display of expiry/password change dates in -P user display.
Diffstat (limited to 'pw/Makefile')
-rw-r--r--pw/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/pw/Makefile b/pw/Makefile
index f02e256..ae8ec1e 100644
--- a/pw/Makefile
+++ b/pw/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.1.1.2 1996/12/09 23:55:12 joerg Exp $
+# $Id: Makefile,v 1.1.1.3 1996/12/10 23:58:50 joerg Exp $
PROG= pw
SRCS= pw.c pw_conf.c pw_user.c pw_group.c pw_log.c \
@@ -7,8 +7,9 @@ SRCS= pw.c pw_conf.c pw_user.c pw_group.c pw_log.c \
MAN5= pw.conf.5
MAN8= pw.8
-
-CFLAGS+= -Wall $(CDB)
+
+#RND= -DUSE_MD5RAND
+CFLAGS+= -Wall $(CDB) $(RND)
LDADD= -lcrypt
DPADD= ${LIBCRYPT}