diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-05-10 06:17:22 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-05-10 06:17:22 +0800 |
commit | d62b2c8641bdeb4706f22583d876938c11945f76 (patch) | |
tree | 59ef2de8ea74f3ceb0e7a25372b04ca5ae0c8337 /multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp | |
parent | d9f63194d978493561b90387d19cb5521f3afea7 (diff) | |
download | marcuscom-ports-d62b2c8641bdeb4706f22583d876938c11945f76.tar.gz marcuscom-ports-d62b2c8641bdeb4706f22583d876938c11945f76.tar.zst marcuscom-ports-d62b2c8641bdeb4706f22583d876938c11945f76.zip |
Update to 2.27.1.
Axe xine support. Not supported anymore.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12288 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp')
-rw-r--r-- | multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp b/multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp new file mode 100644 index 000000000..6e697364d --- /dev/null +++ b/multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp @@ -0,0 +1,20 @@ +--- browser-plugin/totemPluginGlue.cpp.orig 2008-03-15 18:00:23.000000000 -0500 ++++ browser-plugin/totemPluginGlue.cpp 2008-03-15 18:01:54.000000000 -0500 +@@ -356,7 +356,7 @@ + user_ini_file = g_build_filename (g_get_user_config_dir (), + "totem", + "browser-plugins.ini", +- NULL); ++ (char *)NULL); + if (g_key_file_load_from_file (user, + user_ini_file, + G_KEY_FILE_NONE, +@@ -439,7 +439,7 @@ + /* we want to open libdbus-glib-1.so.2 in such a way + * in such a way that it becomes permanentely resident */ + void *handle; +- handle = dlopen ("libdbus-glib-1.so.2", RTLD_NOW | RTLD_NODELETE); ++ handle = dlopen ("libdbus-glib-1.so.2", RTLD_NOW); + if (!handle) { + fprintf (stderr, "%s\n", dlerror()); + return NPERR_MODULE_LOAD_FAILED_ERROR; |