summaryrefslogtreecommitdiffstats
path: root/crypto/ess
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2020-06-19 23:22:09 +0200
committerRichard Levitte <levitte@openssl.org>2020-06-21 10:09:48 +0200
commit75e35c9ad1a0075d443202866fb1760d2e889d4e (patch)
treea748b95b6a2a9411fccff962489f2b1b5892f24c /crypto/ess
parentc720fc35f4aa90cdc7cdc424b976c5322fb0098e (diff)
Fix `no-ts` builds.
`ess_lib.c` is called from `cms` and `ts` modules. Fixes #12155 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12209)
Diffstat (limited to 'crypto/ess')
-rw-r--r--crypto/ess/build.info3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/ess/build.info b/crypto/ess/build.info
index fa2bc41d08..3570633d73 100644
--- a/crypto/ess/build.info
+++ b/crypto/ess/build.info
@@ -1,6 +1,7 @@
LIBS=../../libcrypto
-IF[{- !$disabled{'cms'} and !$disabled{'ts'} -}]
+# compile ess_lib.c when cms or ts are enabled
+IF[{- !$disabled{'cms'} or !$disabled{'ts'} -}]
SOURCE[../../libcrypto]= ess_lib.c
ENDIF