From owner-svn-ports-head@freebsd.org Sun Mar 26 10:30:46 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2403D1D57C; Sun, 26 Mar 2017 10:30:45 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B9F4B1094; Sun, 26 Mar 2017 10:30:45 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2QAUiUc014781; Sun, 26 Mar 2017 10:30:44 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2QAUieK014780; Sun, 26 Mar 2017 10:30:44 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201703261030.v2QAUieK014780@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 26 Mar 2017 10:30:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436950 - head/science/orthanc/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Mar 2017 10:30:46 -0000 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();