summaryrefslogtreecommitdiff
path: root/lib/libcrypt/Makefile
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1995-02-19 12:18:56 +0000
committercgd <cgd@NetBSD.org>1995-02-19 12:18:56 +0000
commit4902ac3dcf7cdfb040cd094817a763216ea2e00f (patch)
treee8684c26e05c0f61cb6dbcdcb5dc936efe0adc4b /lib/libcrypt/Makefile
parent0f894be19cd59bade95907eda9ea1fe520dd06e7 (diff)
use the (broken) crypt.c from the 4.4BSD-Lite Foreign distribution, that
can encrypt passwords but _cannot_ decrypt anything. "real" (i.e. two-way, unbroken) crypt() now lives in /usr/src/domestic.
Diffstat (limited to 'lib/libcrypt/Makefile')
-rw-r--r--lib/libcrypt/Makefile14
1 files changed, 5 insertions, 9 deletions
diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile
index 93e23333411..e77e2dd7701 100644
--- a/lib/libcrypt/Makefile
+++ b/lib/libcrypt/Makefile
@@ -1,17 +1,13 @@
-# This directory contains an implementation of crypt(3) and associated
-# routines. the file crypt.c can't be shipped out of the US. it was put
-# into this directory to make distribution of exportable and non-exportable
-# systems easier.
+# $NetBSD: Makefile,v 1.6 1995/02/19 12:18:56 cgd Exp $
#
-# $Id: Makefile,v 1.5 1994/12/22 09:49:34 cgd Exp $
+# This directory contains an implementation of crypt(3) and associated
+# routines. They have been modified so that decryption is no longer possible,
+# and thus are exportable. They were taken from the 4.4BSD-Lite foreign
+# distribution.
LIB= crypt
-.if exists(crypt.c) && !defined(EXPORTABLE_SYSTEM)
SRCS= crypt.c
-.else
-SRCS= crypt_dummy.c
-.endif
MAN= crypt.3
MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3