Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libcrypto Add CPPFLAGS+= -DNO_{RSA,IDEA,RC5}.
details: https://anonhg.NetBSD.org/src/rev/6266fd26c221
branches: trunk
changeset: 494310:6266fd26c221
user: veego <veego%NetBSD.org@localhost>
date: Wed Jul 05 14:00:38 2000 +0000
description:
Add CPPFLAGS+= -DNO_{RSA,IDEA,RC5}.
diffstat:
lib/libcrypto/Makefile | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diffs (30 lines):
diff -r c72dde1b5bee -r 6266fd26c221 lib/libcrypto/Makefile
--- a/lib/libcrypto/Makefile Wed Jul 05 13:57:15 2000 +0000
+++ b/lib/libcrypto/Makefile Wed Jul 05 14:00:38 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2000/06/23 06:01:13 thorpej Exp $
+# $NetBSD: Makefile,v 1.6 2000/07/05 14:00:38 veego 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