summaryrefslogtreecommitdiff
path: root/package/vlc/patches/patch-src_posix_linux_specific_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-12-12 18:48:35 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-12-12 18:48:35 +0100
commit2e8823cb5c59d7524b5dd5e40266c4ef993b3102 (patch)
tree69a9d126a579863abbcf09241bf825754e93e04e /package/vlc/patches/patch-src_posix_linux_specific_c
parentd095aec6ce9898c422e86df46195e3410eb1f163 (diff)
parent2975c1ab583edcfbb46626f003867738fcb0b556 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/vlc/patches/patch-src_posix_linux_specific_c')
-rw-r--r--package/vlc/patches/patch-src_posix_linux_specific_c30
1 files changed, 0 insertions, 30 deletions
diff --git a/package/vlc/patches/patch-src_posix_linux_specific_c b/package/vlc/patches/patch-src_posix_linux_specific_c
deleted file mode 100644
index a5cdc1534..000000000
--- a/package/vlc/patches/patch-src_posix_linux_specific_c
+++ /dev/null
@@ -1,30 +0,0 @@
---- vlc-2.0.3.orig/src/posix/linux_specific.c 2011-12-08 19:00:28.000000000 +0100
-+++ vlc-2.0.3/src/posix/linux_specific.c 2012-07-26 16:08:31.000000000 +0200
-@@ -83,27 +83,8 @@ static struct
- unsigned refs;
- } once = { VLC_STATIC_MUTEX, 0 };
-
--#ifdef __GLIBC__
--# include <gnu/libc-version.h>
--# include <stdlib.h>
--#endif
--
- void system_Init (void)
- {
--#ifdef __GLIBC__
-- const char *glcv = gnu_get_libc_version ();
--
-- /* gettext in glibc 2.5-2.7 is not thread-safe. LibVLC keeps crashing,
-- * especially in sterror_r(). Even if we have NLS disabled, the calling
-- * process might have called setlocale(). */
-- if (strverscmp (glcv, "2.5") >= 0 && strverscmp (glcv, "2.8") < 0)
-- {
-- fputs ("LibVLC has detected an unusable buggy GNU/libc version.\n"
-- "Please update to version 2.8 or newer.\n", stderr);
-- fflush (stderr);
-- }
--#endif
--
- vlc_mutex_lock (&once.lock);
- if (once.refs++ == 0)
- set_libvlc_path ();