From 5d33a85ff935273cef692a615993d70e6c249b0d Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 16 Jan 2023 11:59:44 +0100 Subject: vlc: update to 3.0.18 --- package/vlc/patches/patch-src_posix_error_c | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 package/vlc/patches/patch-src_posix_error_c (limited to 'package/vlc/patches/patch-src_posix_error_c') diff --git a/package/vlc/patches/patch-src_posix_error_c b/package/vlc/patches/patch-src_posix_error_c deleted file mode 100644 index ef51c996e..000000000 --- a/package/vlc/patches/patch-src_posix_error_c +++ /dev/null @@ -1,27 +0,0 @@ ---- vlc-2.2.4.orig/src/posix/error.c 2015-02-02 20:42:32.000000000 +0100 -+++ vlc-2.2.4/src/posix/error.c 2016-09-24 20:34:45.824539253 +0200 -@@ -31,6 +31,7 @@ - - static const char *vlc_strerror_l(int errnum, const char *lname) - { -+#ifdef HAVE_STRERROR_L - int saved_errno = errno; - locale_t loc = newlocale(LC_MESSAGES_MASK, lname, (locale_t)0); - -@@ -48,9 +49,16 @@ static const char *vlc_strerror_l(int er - errno = saved_errno; - } - -+#if defined(__UCLIBC__) -+ const char *buf = strerror_r(errnum, loc, 100); -+#else - const char *buf = strerror_l(errnum, loc); -+#endif - - freelocale(loc); -+#else -+ const char *buf = strerror(errnum); -+#endif - return buf; - } - -- cgit v1.2.3