From: Peter Avalos Date: Sun, 26 Sep 2010 02:00:01 +0000 (-1000) Subject: libcrypto: There's no need to test for WANT_IDEA twice. X-Git-Tag: v2.8.0~74^2~41 X-Git-Url: http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/7caf0ff78e963a290d99efe0e9f574efa4ed3c8c libcrypto: There's no need to test for WANT_IDEA twice. --- diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile index 6b7f4ec..1754ff6 100644 --- a/secure/lib/libcrypto/Makefile +++ b/secure/lib/libcrypto/Makefile @@ -160,6 +160,7 @@ INCS+= hmac.h .if defined(WANT_IDEA) SRCS+= i_cbc.c i_cfb64.c i_ecb.c i_ofb64.c i_skey.c INCS+= idea.h +_ideapath= ${LCRYPTO_SRC}/crypto/idea .endif # krb5 @@ -306,10 +307,6 @@ opensslconf.h: opensslconf-${MACHINE_ARCH}.h .include -.if defined(WANT_IDEA) -_ideapath= ${LCRYPTO_SRC}/crypto/idea -.endif - .PATH: \ ${LCRYPTO_SRC}/crypto \ ${LCRYPTO_SRC}/crypto/aes \