From adf952100f57ea6718c511a9ebce055a5babff1d Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Thu, 4 Jun 2015 14:07:31 +0000 Subject: - Add science/orthanc Orthanc aims at providing a simple, yet powerful standalone DICOM server. It is designed to improve the DICOM flows in hospitals and to support research about the automated analysis of medical images. Orthanc can turn any computer running Windows, Linux, FreeBSD or OS X into a DICOM store (in other words, a mini-PACS system). Its architecture is lightweight and standalone, meaning that no complex database administration is required, nor the installation of third-party dependencies. What makes Orthanc unique is the fact that it provides a RESTful API. Thanks to this major feature, it is possible to drive Orthanc from any computer language. The DICOM tags of the stored medical images can be downloaded in the JSON file format. Furthermore, standard PNG images can be generated on-the-fly from the DICOM instances by Orthanc. Orthanc lets its users focus on the content of the DICOM files, hiding the complexity of the DICOM format and of the DICOM protocol. WWW: http://www.orthanc-server.com/ PR: 199146 Submitted by: mp39590@gmail.com --- science/orthanc/files/patch-Plugins_Engine_PluginsManager.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 science/orthanc/files/patch-Plugins_Engine_PluginsManager.cpp (limited to 'science/orthanc/files/patch-Plugins_Engine_PluginsManager.cpp') diff --git a/science/orthanc/files/patch-Plugins_Engine_PluginsManager.cpp b/science/orthanc/files/patch-Plugins_Engine_PluginsManager.cpp new file mode 100644 index 000000000000..11fe4e6d064d --- /dev/null +++ b/science/orthanc/files/patch-Plugins_Engine_PluginsManager.cpp @@ -0,0 +1,11 @@ +--- Plugins/Engine/PluginsManager.cpp.orig 2015-02-12 13:47:38 UTC ++++ Plugins/Engine/PluginsManager.cpp +@@ -42,7 +42,7 @@ + + #ifdef WIN32 + #define PLUGIN_EXTENSION ".dll" +-#elif defined(__linux) || defined(__FreeBSD_kernel__) ++#elif defined(__linux) || defined(__FreeBSD_kernel__) || defined(__FreeBSD__) + #define PLUGIN_EXTENSION ".so" + #elif defined(__APPLE__) && defined(__MACH__) + #define PLUGIN_EXTENSION ".dylib" -- cgit v1.2.3