]> git.sesse.net Git - vlc/commitdiff
Revert "Do not load KDE Qt plugins until KDE gets a clue"
authorRémi Denis-Courmont <remi@remlab.net>
Thu, 3 Feb 2011 12:54:19 +0000 (14:54 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 3 Feb 2011 12:54:19 +0000 (14:54 +0200)
This reverts commit 96c7f9c26940828357655380470a930cbb09497e.
This did not work with KDE 4.6 anyhow.

bin/override.c

index 0828f00717f528a8d1553be6f26b519aef7a632d..2c94afe4f437242c4a4896deccddf8a82841b557 100644 (file)
@@ -264,26 +264,8 @@ error:
 #endif
 
 
-/*** Dynaminc linker ***/
-
-void *dlopen (const char *path, int flags)
-{
-    if (override && path != NULL)
-    {
-        /* Work around the KDE SIGCHLD and KDE D-Bus exit handler bugs */
-        if (strstr (path, "libkde") != NULL)
-        {
-            LOG("Blocked", "\"%s\", %d", path, flags);
-            return NULL;
-        }
-    }
-    return CALL(dlopen, path, flags);
-}
-
-
-/*** Locales ***/
-
-/* setlocale() is not thread-safe and has a tendency to crash other threads as
+/*** Locales ***
+ * setlocale() is not thread-safe and has a tendency to crash other threads as
  * quite many libc and libintl calls depend on the locale.
  * Use uselocale() instead for thread-safety.
  */