diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-03-08 13:06:38 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-03-21 16:41:14 +0000 |
| commit | 793caf5f747359093e0b6f25847f5f1846160a5e (patch) | |
| tree | e7865682d0912d2fd32e57377b391fdbaec05665 /src/lib/poznan_encoder.cc | |
| parent | eb0bdad79aa8a8b32e7d23149cf0a0c8f1dfd380 (diff) | |
Fix for new poznan library names.
Diffstat (limited to 'src/lib/poznan_encoder.cc')
| -rw-r--r-- | src/lib/poznan_encoder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/poznan_encoder.cc b/src/lib/poznan_encoder.cc index fe36ebc64..fa968010b 100644 --- a/src/lib/poznan_encoder.cc +++ b/src/lib/poznan_encoder.cc @@ -71,7 +71,7 @@ PoznanEncoder::open_library (string library_name) { /* XXX: need cross-platform implementation of dlopen etc. */ - library_name = "libdcpomatic-" + library_name + ".so"; + library_name = "lib" + library_name + "-cth.so"; void* lib = dlopen (library_name.c_str(), RTLD_LAZY | RTLD_GLOBAL); if (!lib) { throw JPEG2000EncoderUnavailableException (name(), "could not find " + library_name + " (" + dlerror() + ")"); |
