summaryrefslogtreecommitdiffstats
path: root/providers/implementations/exchange
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-02-12 09:19:41 +0000
committerMatt Caswell <matt@openssl.org>2020-02-12 13:16:09 +0000
commit104f85c62886e25188a71d1e498e553abedbf78c (patch)
treea39317f52f885bb079eda7d45e6c3d26b578f5d5 /providers/implementations/exchange
parent4b1aa164990a29db4a25b9478cc0066fe1ac9810 (diff)
Fix no-ec build
Don't attempt to build ecx related source files in a "no-ec" build. Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11065)
Diffstat (limited to 'providers/implementations/exchange')
-rw-r--r--providers/implementations/exchange/build.info7
1 files changed, 4 insertions, 3 deletions
diff --git a/providers/implementations/exchange/build.info b/providers/implementations/exchange/build.info
index c74e122844..51d32fc090 100644
--- a/providers/implementations/exchange/build.info
+++ b/providers/implementations/exchange/build.info
@@ -18,6 +18,7 @@ IF[{- !$disabled{asm} -}]
ENDIF
ENDIF
-
-SOURCE[$ECX_GOAL]=ecx_exch.c
-DEFINE[$ECX_GOAL]=$ECDEF
+IF[{- !$disabled{ec} -}]
+ SOURCE[$ECX_GOAL]=ecx_exch.c
+ DEFINE[$ECX_GOAL]=$ECDEF
+ENDIF