Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/lib Pull up revision 1.78 (requested by itojun in ticke...



details:   https://anonhg.NetBSD.org/src/rev/83600df4ed4b
branches:  netbsd-1-6
changeset: 529633:83600df4ed4b
user:      he <he%NetBSD.org@localhost>
date:      Sun Dec 01 21:38:47 2002 +0000

description:
Pull up revision 1.78 (requested by itojun in ticket #861):
  MDC2 is a patented algorithm, so don't ship it in the
  default libcrypto.  Defining MKCRYPTO_MDC2 will build a
  separate library, libcrypto_mdc2.

diffstat:

 lib/Makefile |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (20 lines):

diff -r 4ca64b7de184 -r 83600df4ed4b lib/Makefile
--- a/lib/Makefile      Sun Dec 01 21:37:42 2002 +0000
+++ b/lib/Makefile      Sun Dec 01 21:38:47 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.76 2002/03/22 18:10:20 thorpej Exp $
+#      $NetBSD: Makefile,v 1.76.2.1 2002/12/01 21:38:47 he Exp $
 #      from: @(#)Makefile      5.25.1.1 (Berkeley) 5/7/91
 
 .include <bsd.own.mk>
@@ -22,6 +22,10 @@
 SUBDIR+= libcrypto_idea
 .endif # MKCRYPTO_IDEA != no
 
+.if (${MKCRYPTO_MDC2} != "no")
+SUBDIR+= libcrypto_mdc2
+.endif # MKCRYPTO_MDC2 != no
+
 .if (${MKCRYPTO_RC5} != "no")
 SUBDIR+= libcrypto_rc5
 .endif # MKCRYPTO_RC5 != no



Home | Main Index | Thread Index | Old Index