From 1cdf5f0a55ef864971d92d76a24782dc97ac57a9 Mon Sep 17 00:00:00 2001 From: peter Date: Wed, 29 Jan 2003 02:19:15 +0000 Subject: Hopefully fix world for folks not compiling IDEA (the default). NO_IDEA is now spelled OPENSSL_NO_IDEA. Update the bmake glue accordingly or the IDEA references are not stripped from --- secure/lib/libcrypto/Makefile.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'secure') diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc index 97d97e4..594dd35 100644 --- a/secure/lib/libcrypto/Makefile.inc +++ b/secure/lib/libcrypto/Makefile.inc @@ -7,7 +7,7 @@ CFLAGS+= -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_KRB5 CFLAGS+= -I${LCRYPTO_SRC} -I${LCRYPTO_SRC}/crypto -I${.OBJDIR} .if !defined(MAKE_IDEA) || ${MAKE_IDEA} != YES -CFLAGS+= -DNO_IDEA +CFLAGS+= -DOPENSSL_NO_IDEA .else _idea_h= idea/idea.h .endif @@ -86,7 +86,7 @@ openssl/opensslconf.h: ../../lib/libcrypto/opensslconf-${MACHINE_ARCH}.h openssl/evp.h: ${LCRYPTO_SRC}/crypto/evp/evp.h mkdir -p openssl .if !defined(MAKE_IDEA) || ${MAKE_IDEA} != YES - sed '/^#ifndef NO_IDEA$$/,/^#endif$$/d' ${.OODATE} > ${.TARGET} + sed '/^#ifndef OPENSSL_NO_IDEA$$/,/^#endif$$/d' ${.OODATE} > ${.TARGET} .else ${INSTALL} -C -m 444 ${.OODATE} ${.TARGET} .endif -- cgit v1.1