summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Ryleev <gmar@google.com>2017-05-01 09:39:18 -0700
committerMichael Ryleev <gmar@google.com>2017-05-02 07:56:40 -0700
commit938d65f211fa2e0358daa4abc3f146b81cb5a154 (patch)
tree965dfb974e241e517171d249d62c5faf1756a36b /src
parent2424d84dd6dbdc0d32a4c80e6810d168f722ce0b (diff)
downloadboringssl-938d65f211fa2e0358daa4abc3f146b81cb5a154.tar.gz
trusty: fixup trusty build
Bypass compiling src/crypto/fipsmodule/rand/urandom.c as it is not supported. Remove filtering out now non-exiting files. Change-Id: If0308aea56ab602a4fb59e9bb55a2ae02683d3c5
Diffstat (limited to 'src')
-rw-r--r--src/crypto/fipsmodule/rand/urandom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/fipsmodule/rand/urandom.c b/src/crypto/fipsmodule/rand/urandom.c
index 7f761450..202f2a47 100644
--- a/src/crypto/fipsmodule/rand/urandom.c
+++ b/src/crypto/fipsmodule/rand/urandom.c
@@ -15,7 +15,7 @@
#include <openssl/rand.h>
#if !defined(OPENSSL_WINDOWS) && !defined(OPENSSL_FUCHSIA) && \
- !defined(BORINGSSL_UNSAFE_DETERMINISTIC_MODE)
+ !defined(BORINGSSL_UNSAFE_DETERMINISTIC_MODE) && !defined(OPENSSL_TRUSTY)
#include <assert.h>
#include <errno.h>
@@ -291,4 +291,4 @@ void CRYPTO_sysrand(uint8_t *out, size_t requested) {
}
#endif /* !OPENSSL_WINDOWS && !defined(OPENSSL_FUCHSIA) && \
- !BORINGSSL_UNSAFE_DETERMINISTIC_MODE */
+ !BORINGSSL_UNSAFE_DETERMINISTIC_MODE && !OPENSSL_TRUSTY */