7632c657ae
- Keep OBS from installing an existing clamav instance to scan the sources, because this makes "make check" use the old library instead of the just built one. This is only a workaround until we found a way to keep libtool from adding libdir to rpath and LD_LIBRARY_PATH of the binaries in the testsuite. OBS-URL: https://build.opensuse.org/package/show/security/clamav?expand=0&rev=211
13 lines
227 B
Diff
13 lines
227 B
Diff
--- libclamav/crypto.c.orig
|
|
+++ libclamav/crypto.c
|
|
@@ -145,6 +145,9 @@ int cl_initialize_crypto(void)
|
|
ERR_load_crypto_strings();
|
|
#endif
|
|
|
|
+ /* avoid fips issues */
|
|
+ EVP_add_digest(EVP_md5());
|
|
+
|
|
return 0;
|
|
}
|
|
|