summaryrefslogtreecommitdiffstats
path: root/pw/Makefile
diff options
context:
space:
mode:
authorBrian Feldman <green@FreeBSD.org>2000-08-22 02:15:54 +0000
committerBrian Feldman <green@FreeBSD.org>2000-08-22 02:15:54 +0000
commit0807c706fd119a91fe20902b41601a01cb10d847 (patch)
treeaf4580e788215555acd41e104a7c6f0104a3fba7 /pw/Makefile
parent171532846d3dfe0b3a52b83b630dfdade8c23d13 (diff)
downloadpw-darwin-0807c706fd119a91fe20902b41601a01cb10d847.tar.gz
pw-darwin-0807c706fd119a91fe20902b41601a01cb10d847.tar.zst
pw-darwin-0807c706fd119a91fe20902b41601a01cb10d847.zip
Add working and easy crypt(3)-switching. Yes, we need a whole new API
for crypt(3) by now. In any case: Add crypt_set_format(3) + documentation to -lcrypt. Add login_setcryptfmt(3) + documentation to -lutil. Support for switching crypt formats in passwd(8). Support for switching crypt formats in pw(8). The simple synopsis is: edit login.conf; add a passwd_format field set to "des" or "md5"; go nuts :) Reviewed by: peter
Diffstat (limited to 'pw/Makefile')
-rw-r--r--pw/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/pw/Makefile b/pw/Makefile
index bee05cc..bb82d3a 100644
--- a/pw/Makefile
+++ b/pw/Makefile
@@ -11,8 +11,8 @@ MAN8= pw.8
#RND= -DUSE_MD5RAND
CFLAGS+= -W -Wall $(CDB) $(RND)
-LDADD= -lcrypt
-DPADD= ${LIBCRYPT}
+LDADD= -lcrypt -lutil
+DPADD= ${LIBCRYPT} ${LIBUTIL}
BINMODE=0555