comparison OrthancServer/Resources/VersionScriptOrthanc.map @ 4763:bbe70c24bc60 Orthanc-1.9.6

hotfix for LSB precompiled binaries of Orthanc 1.9.6: reintegration of changeset 4761
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Aug 2021 08:49:42 +0200
parents
children
comparison
equal deleted inserted replaced
4758:b1319a5304fb 4763:bbe70c24bc60
1 # This is a version-script for the main Orthanc binary, that hides all
2 # the global functions of the executable so that a Linux Standard Base
3 # (LSB) build of Orthanc can load plugins that are not built using
4 # LSB. Otherwise, the dynamic loader of the plugins will try to use
5 # the global functions published by the Orthanc server, which results
6 # in a segmentation fault if the data structures don't have the same
7 # memory layout (e.g. debug vs. release, or another version of some
8 # C/C++ library used both by Orthanc, typically jsoncpp).
9
10 {
11 local:
12 *;
13 };