Browse Source

Revert "Do not load KDE Qt plugins until KDE gets a clue"

This reverts commit 96c7f9c269.
This did not work with KDE 4.6 anyhow.
pull/2/head
Rémi Denis-Courmont 15 years ago
parent
commit
1ea58b26cc
  1. 22
      bin/override.c

22
bin/override.c

@ -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.
*/

Loading…
Cancel
Save