Blame SOURCES/openssl-1.0.2a-compat-symbols.patch

557317
diff -up openssl-1.0.2a/crypto/dsa/dsa_key.c.compat openssl-1.0.2a/crypto/dsa/dsa_key.c
557317
--- openssl-1.0.2a/crypto/dsa/dsa_key.c.compat	2015-04-09 18:21:11.687977858 +0200
557317
+++ openssl-1.0.2a/crypto/dsa/dsa_key.c	2015-04-09 18:21:07.869889659 +0200
557317
@@ -68,6 +68,11 @@
557317
 #  include <openssl/fips.h>
557317
 #  include <openssl/evp.h>
557317
 
557317
+/* just a compatibility symbol - no-op */
557317
+void FIPS_corrupt_dsa_keygen(void)
557317
+{
557317
+}
557317
+
557317
 static int fips_check_dsa(DSA *dsa)
557317
 {
557317
     EVP_PKEY *pk;
557317
diff -up openssl-1.0.2a/crypto/engine/eng_all.c.compat openssl-1.0.2a/crypto/engine/eng_all.c
557317
--- openssl-1.0.2a/crypto/engine/eng_all.c.compat	2015-04-09 18:21:11.688977881 +0200
557317
+++ openssl-1.0.2a/crypto/engine/eng_all.c	2015-04-09 18:21:09.159919459 +0200
557317
@@ -63,6 +63,11 @@
557317
 # include <openssl/fips.h>
557317
 #endif
557317
 
557317
+/* just backwards compatibility symbol - no-op */
557317
+void ENGINE_load_aesni(void)
557317
+{
557317
+}
557317
+
557317
 void ENGINE_load_builtin_engines(void)
557317
 {
557317
     /* Some ENGINEs need this */
557317
diff -up openssl-1.0.2a/crypto/fips/fips.c.compat openssl-1.0.2a/crypto/fips/fips.c
557317
--- openssl-1.0.2a/crypto/fips/fips.c.compat	2015-04-09 18:21:11.689977904 +0200
557317
+++ openssl-1.0.2a/crypto/fips/fips.c	2015-04-09 18:21:09.925937154 +0200
557317
@@ -113,6 +113,12 @@ int FIPS_module_mode(void)
557317
     return ret;
557317
 }
557317
 
557317
+/* just a compat symbol - return NULL */
557317
+const void *FIPS_rand_check(void)
557317
+{
557317
+    return NULL;
557317
+}
557317
+
557317
 int FIPS_selftest_failed(void)
557317
 {
557317
     int ret = 0;