pkgsrc/multimedia/vlc/patches/patch-lib_video.c
nia fd95f32fd9 vlc: Update to 3.0.7.1
Based on work in pkgsrc-wip.

I've had the opportunity to test this in a NetBSD-8 bulk build - it seems
the package is now fixed. Hopefully.

The 3.0.x release series is considered for long-term support by upstream.
Notably for pkgsrc, this means it will be the last release series that
supports older compilers.

Note that VLC now depends on Qt5 instead of Qt4. Various config flags have
been tweaked (enabled/disabled) to match what other vendors (mainly FreeBSD)
are doing.  I have also added an alsa package option.

The full list of upstream changes is probably too long to list.
2019-07-02 20:52:12 +00:00

24 lines
766 B
C

$NetBSD: patch-lib_video.c,v 1.1 2019/07/02 20:52:13 nia Exp $
Remove undefined references to missing symbol.
--- lib/video.c.orig 2017-11-24 15:29:17.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;
}