diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-02-01 17:05:03 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-02-01 17:10:38 +0100 |
commit | 0e5a0cd29c2b98b8e8262a0727795dd8b5b22649 (patch) | |
tree | af63accc4e592383967fff18ccbc11609cbd01bc /vcl/unx | |
parent | 359f43f8e76c3bd85c3daf35b5a6d925a4c8c64f (diff) |
fix the --disable-randr-link build
This was borked since gbuildification of vcl in 2011 and the dlopen
code didn't even compile since commit
b5f1139427b40ca727a03e2e41aa5625cfb08bb8
Change-Id: Ieff22ed144d9d89e53dd956ce0dfea5e4d07ea13
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/generic/app/randrwrapper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/generic/app/randrwrapper.cxx b/vcl/unx/generic/app/randrwrapper.cxx index 570cfcc9dc4b..d97f86f068d9 100644 --- a/vcl/unx/generic/app/randrwrapper.cxx +++ b/vcl/unx/generic/app/randrwrapper.cxx @@ -138,7 +138,7 @@ RandRWrapper::RandRWrapper( Display* pDisplay ) : // obviously they expected libXext to be linked in global symbolspace (that is // linked by the application), which is not the case with us (because we want // to be able to run in headless mode even without an installed X11 library) - m_pRandRLib = osl_loadModule( "libXrandr.so.2", SAL_LOADMODULE_DEFAULT | SAL_LOADMODULE_NOW ); + m_pRandRLib = osl_loadModuleAscii("libXrandr.so.2", SAL_LOADMODULE_DEFAULT | SAL_LOADMODULE_NOW); initFromModule(); } if( m_bValid ) |