Fix no-seed
authorMatt Caswell <matt@openssl.org>
Mon, 21 Mar 2016 12:00:41 +0000 (12:00 +0000)
committerMatt Caswell <matt@openssl.org>
Mon, 21 Mar 2016 14:42:46 +0000 (14:42 +0000)
Fix compilation with --strict-warnings and no-seed

Reviewed-by: Rich Salz <rsalz@openssl.org>
crypto/evp/e_seed.c

index f8523c38d906a46e6078af94a7e64d3ec3d33dc5..6964b1e5b63ddb36ef7c9ca7fe676a6fe8a8d9d3 100644 (file)
@@ -53,7 +53,9 @@
  */
 
 #include <openssl/opensslconf.h>
-#ifndef OPENSSL_NO_SEED
+#ifdef OPENSSL_NO_SEED
+NON_EMPTY_TRANSLATION_UNIT
+#else
 # include <openssl/evp.h>
 # include <openssl/err.h>
 # include <string.h>