From 2206f68129121abf4a1fd784be641c3702e595c9 Mon Sep 17 00:00:00 2001 From: Aleric Inglewood Date: Tue, 21 Feb 2012 15:52:57 +0100 Subject: [PATCH] Fix webkit on Ubuntu WARNING("Plugin"): LLPluginInstance::load: apr_dso_load of */viewer-linux-i686-releasesse2/newview/packaged/bin/llplugin/libmedia_plugin_webkit.so failed with error 20019 , additional info string: */viewer-linux-i686-releasesse2/newview/packaged/bin/llplugin/libmedia_plugin_webkit.so: undefined symbol: XSyncIntsToValue Apparently our webkit package is underlinked, it doesn't include libXext which is needed for symbol XSyncIntsToValue. Both, Fritigern and Inusaito had this problem on Ubuntu. This patch adds the library to the webkit plugin as a work- around. --- indra/cmake/WebKitLibPlugin.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/cmake/WebKitLibPlugin.cmake b/indra/cmake/WebKitLibPlugin.cmake index abae1762d..7ed824aea 100644 --- a/indra/cmake/WebKitLibPlugin.cmake +++ b/indra/cmake/WebKitLibPlugin.cmake @@ -76,6 +76,7 @@ elseif (LINUX) fontconfig X11 Xrender + Xext GL ) endif (STANDALONE)