vlc-git: Workaround a linking bug
authorKamil Rytarowski <n54@gmx.com>
Tue, 20 Mar 2018 01:07:35 +0000 (02:07 +0100)
committerKamil Rytarowski <n54@gmx.com>
Tue, 20 Mar 2018 01:07:35 +0000 (02:07 +0100)
vlc-git/distinfo
vlc-git/patches/patch-lib_video.c [new file with mode: 0644]

index a6469a21e5377995df851e3423bc65ecf3dca736..f89d63769daa5edc2f8257939cecd81ad21c477d 100644 (file)
@@ -6,6 +6,7 @@ SHA512 (vlc-3.0.0.tar.xz) = 9bdc64e16ddd2e8d2693179f2fcac8462d7defff186262a049ba
 Size (vlc-3.0.0.tar.xz) = 25191148 bytes
 SHA1 (patch-compat_Makefile.am) = 9f796bf1bc044527092d4ca35f51087618e14cf0
 SHA1 (patch-lib_core.c) = 7b1b659abdaee1c3f87582d948ec08a87d48faeb
+SHA1 (patch-lib_video.c) = 5931b855faf3ad1c6fa7fea27497e536edab13a4
 SHA1 (patch-m4_dolt.m4) = ff3bd892430ecc856f1a108559245b474f67a9af
 SHA1 (patch-modules_access_http_Makefile.am) = 522b08c778ba967e5c86e25d40914b5f55f2a37a
 SHA1 (patch-modules_codec_x264.c) = 575c0efc3d3cbf17c99cd7dcdbc34b84e9e52191
diff --git a/vlc-git/patches/patch-lib_video.c b/vlc-git/patches/patch-lib_video.c
new file mode 100644 (file)
index 0000000..df7a36d
--- /dev/null
@@ -0,0 +1,22 @@
+$NetBSD$
+
+--- lib/video.c.orig   2018-03-14 06:17:49.000000000 +0000
++++ lib/video.c
+@@ -719,7 +719,7 @@ static int get_filter_str( vlc_object_t 
+     module_t *p_obj = module_find( psz_name );
+     if( !p_obj )
+     {
+-        msg_Err( p_parent, "Unable to find filter module \"%s\".", psz_name );
++//        msg_Err( p_parent, "Unable to find filter module \"%s\".", psz_name );
+         return VLC_EGENERIC;
+     }
+@@ -737,7 +737,7 @@ static int get_filter_str( vlc_object_t 
+     }
+     else
+     {
+-        msg_Err( p_parent, "Unknown video filter type." );
++//        msg_Err( p_parent, "Unknown video filter type." );
+         return VLC_EGENERIC;
+     }