aboutsummaryrefslogtreecommitdiffstats
path: root/main/vlc/vlc-dlclose-workaround.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/vlc/vlc-dlclose-workaround.patch')
-rw-r--r--main/vlc/vlc-dlclose-workaround.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/main/vlc/vlc-dlclose-workaround.patch b/main/vlc/vlc-dlclose-workaround.patch
deleted file mode 100644
index 44001c8c84..0000000000
--- a/main/vlc/vlc-dlclose-workaround.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-We have an issue with dlclose on uclibc on x86_64.
-For now we work around it by simply not dlcose our plugins.
-
-
---- ./src/modules/bank.c.orig
-+++ ./src/modules/bank.c
-@@ -484,11 +484,13 @@
- assert (module->next == NULL);
-
- /* Unload plugin until we really need it */
-+#if 0
- if (module->b_loaded && module->b_unloadable)
- {
- module_Unload (module->handle);
- module->b_loaded = false;
- }
-+#endif
-
- /* For now we force loading if the module's config contains
- * callbacks or actions.