Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Feb 2000 16:21:24 -0800 (PST)
From:      Kris Kennaway <kris@FreeBSD.org>
To:        current@freebsd.org
Subject:   NO_DESCRYPT patch
Message-ID:  <Pine.BSF.4.21.0002261619120.1739-100000@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
This is something which has been requested a fair bit..it will disable the
building of the DES CRYPT libraries even if you have the crypto sources
installed, so you can e.g. get OpenSSL/OpenSSH without having to deal with
the pitfalls of libdescrypt. It seems to work fine for me..if I hear any
other positive feedback I'll commit it.

Kris

Index: lib/Makefile
===================================================================
RCS file: /home/ncvs/src/lib/Makefile,v
retrieving revision 1.106
diff -u -r1.106 Makefile
--- lib/Makefile	2000/01/21 02:00:53	1.106
+++ lib/Makefile	2000/02/26 05:30:38
@@ -43,7 +43,7 @@
 .endif
 
 _libcrypt=	libcrypt
-.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT)
+.if exists(${.CURDIR}/../secure) && !defined(NOSECURE) && !defined(NOCRYPT) && !defined(NO_DESCRYPT)
 # Build both libraries. They have different names, so no harm,
 # and this avoids having stale libscrypt.*
 _libcrypt+=	../secure/lib/libcrypt

----
"How many roads must a man walk down, before you call him a man?"
"Eight!"
"That was a rhetorical question!"
"Oh..then, seven!" -- Homer Simpson



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0002261619120.1739-100000>