diff options
author | peter <peter@FreeBSD.org> | 2003-01-29 02:19:15 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-01-29 02:19:15 +0000 |
commit | 1cdf5f0a55ef864971d92d76a24782dc97ac57a9 (patch) | |
tree | 7b895fc5a8de97b77ce36f250aa800d5b10e435e /secure | |
parent | 0a3c80b382ae2a354dc33c44ebce9477f94321de (diff) | |
download | FreeBSD-src-1cdf5f0a55ef864971d92d76a24782dc97ac57a9.zip FreeBSD-src-1cdf5f0a55ef864971d92d76a24782dc97ac57a9.tar.gz |
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 <openssl/evp.h>
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/libcrypto/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
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 |