Source-Changes-HG archive

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

[src/netbsd-1-5]: src/lib/libcrypto Pull up rev. 1.6 (veego):



details:   https://anonhg.NetBSD.org/src/rev/3694302bd472
branches:  netbsd-1-5
changeset: 488434:3694302bd472
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Wed Jul 05 18:30:07 2000 +0000

description:
Pull up rev. 1.6 (veego):
Add CPPFLAGS+= -DNO_{RSA,IDEA,RC5}.

diffstat:

 lib/libcrypto/Makefile |  8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diffs (30 lines):

diff -r 0d5d0e4f41c8 -r 3694302bd472 lib/libcrypto/Makefile
--- a/lib/libcrypto/Makefile    Wed Jul 05 18:27:32 2000 +0000
+++ b/lib/libcrypto/Makefile    Wed Jul 05 18:30:07 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.3.2.3 2000/06/24 06:59:33 thorpej Exp $
+#      $NetBSD: Makefile,v 1.3.2.4 2000/07/05 18:30:07 thorpej Exp $
 
 # RCSid:
 #      Id: Makefile,v 1.33 1998/11/11 11:53:53 sjg Exp
@@ -64,14 +64,20 @@
 .if (${MKCRYPTO_RSA} != "no")
 INCS+= rsa.h rsaref.h
 .PATH: ${OPENSSLSRC}/rsaref
+.else
+CPPFLAGS+= -DNO_RSA
 .endif
 
 .if (${MKCRYPTO_IDEA} != "no")
 INCS+= idea.h
+.else
+CPPFLAGS+= -DNO_IDEA
 .endif
 
 .if (${MKCRYPTO_RC5} != "no")
 INCS+= rc5.h
+.else
+CPPFLAGS+= -DNO_RC5
 .endif
 
 INCSDIR=/usr/include/openssl



Home | Main Index | Thread Index | Old Index