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