> 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.

Why not let them (libdes) be installed, but leave the symlinks to point
to libscrypt. That way things that for some reason need the des stuff
can still get to it. Something like this:

John
-- 
John Hay -- [EMAIL PROTECTED]


Index: secure/lib/libcrypt/Makefile
===================================================================
RCS file: /home/ncvs/src/secure/lib/libcrypt/Makefile,v
retrieving revision 1.20
diff -u -r1.20 Makefile
--- secure/lib/libcrypt/Makefile        2000/01/09 21:12:39     1.20
+++ secure/lib/libcrypt/Makefile        2000/02/27 09:49:28
@@ -49,7 +49,11 @@
 
 .include <bsd.lib.mk>
 
+.if defined(NO_DESCRYPT)
+noafterinstall:
+.else
 afterinstall:
+.endif
 .if !defined(NOPIC)
        @cd ${DESTDIR}${SHLIBDIR}; \
        rm -f ${LCRYPTSO}; \


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to