Date: Sun, 26 Mar 2017 10:30:44 +0000 (UTC) From: Bernard Spil <brnrd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436950 - head/science/orthanc/files Message-ID: <201703261030.v2QAUieK014780@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: brnrd Date: Sun Mar 26 10:30:44 2017 New Revision: 436950 URL: https://svnweb.freebsd.org/changeset/ports/436950 Log: science/orthanc: Fix build with LibreSSL - LibreSSL removed FIPS support completely PR: 217352 Approved by: mp39590@gmail.com (maintainer) Obtained from: https://bitbucket.org/sjodogne/orthanc/pull-requests/4 Added: head/science/orthanc/files/patch-OrthancServer_OrthancInitialization.cpp (contents, props changed) Added: head/science/orthanc/files/patch-OrthancServer_OrthancInitialization.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/orthanc/files/patch-OrthancServer_OrthancInitialization.cpp Sun Mar 26 10:30:44 2017 (r436950) @@ -0,0 +1,12 @@ +--- OrthancServer/OrthancInitialization.cpp.orig 2016-06-27 11:02:35 UTC ++++ OrthancServer/OrthancInitialization.cpp +@@ -534,7 +534,9 @@ namespace Orthanc + #if ORTHANC_SSL_ENABLED == 1 + // Finalize OpenSSL + // https://wiki.openssl.org/index.php/Library_Initialization#Cleanup ++#ifdef FIPS_mode_set + FIPS_mode_set(0); ++#endif + ENGINE_cleanup(); + CONF_modules_unload(1); + EVP_cleanup();
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703261030.v2QAUieK014780>