Source-Changes-HG archive

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

[src/trunk]: src/crypto/external/bsd/openssl/bin remove mdc2 and idea handling



details:   https://anonhg.NetBSD.org/src/rev/557ddecb216c
branches:  trunk
changeset: 780160:557ddecb216c
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Jul 13 19:32:51 2012 +0000

description:
remove mdc2 and idea handling

diffstat:

 crypto/external/bsd/openssl/bin/Makefile |  20 ++++----------------
 1 files changed, 4 insertions(+), 16 deletions(-)

diffs (41 lines):

diff -r da9f35bbbee0 -r 557ddecb216c crypto/external/bsd/openssl/bin/Makefile
--- a/crypto/external/bsd/openssl/bin/Makefile  Fri Jul 13 18:21:45 2012 +0000
+++ b/crypto/external/bsd/openssl/bin/Makefile  Fri Jul 13 19:32:51 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.5 2011/08/17 05:30:01 christos Exp $
+#      $NetBSD: Makefile,v 1.6 2012/07/13 19:32:51 christos Exp $
 
 WARNS?=        2       # XXX -Wcast-qual
 
@@ -10,7 +10,7 @@
 USE_FORT?= yes # cryptographic software
 
 # RCSid:
-#      $Id: Makefile,v 1.5 2011/08/17 05:30:01 christos Exp $
+#      $Id: Makefile,v 1.6 2012/07/13 19:32:51 christos Exp $
 #
 #      @(#) Copyright (c) 1995 Simon J. Gerraty
 #
@@ -40,20 +40,8 @@
 
 CPPFLAGS+= -DMONOLITH -DUSE_SSL -I${OPENSSLSRC}
 
-# with normal OpenSSL, OPENSSL_NO_{IDEA,MDC2,RC5} changes ABI due to change in
-# struct/union.  we nuked all of them in our header files and it is now safe.
-.if ${MKCRYPTO_IDEA} == "no"
-CPPFLAGS+= -DOPENSSL_NO_IDEA
-.else
-LDADD+=        -lcrypto_idea
-DPADD+=        ${LIBCRYPTO_IDEA}
-.endif
-.if ${MKCRYPTO_MDC2} == "no"
-CPPFLAGS+= -DOPENSSL_NO_MDC2
-.else
-LDADD+=        -lcrypto_mdc2
-DPADD+=        ${LIBCRYPTO_MDC2}
-.endif
+# with normal OpenSSL, OPENSSL_NO_RC5 changes ABI due to change in
+# struct/union.  we nuked it in our header files and it is now safe.
 .if ${MKCRYPTO_RC5} == "no"
 CPPFLAGS+= -DOPENSSL_NO_RC5
 .else



Home | Main Index | Thread Index | Old Index