wok-next view gst0-plugins-bad/stuff/patches/fix-dfb-example.patch @ rev 20143

postgresql: receipt v2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 01 11:18:25 2017 +0100 (2017-11-01)
parents
children
line source
1 Fix dfb-example
3 Order of inclusion gives a strange effect on the definition of
4 gst_debug_log. Swapping the include statements solve it.
6 Not upstreamed since there will be no more updates to this version
7 of gst-plugins-bad.
9 Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
10 ---
11 diff -rup gst-plugins-bad-0.10.23/ext/directfb/dfb-example.c gst-plugins-bad-0.10.23.fixed/ext/directfb/dfb-example.c
12 --- gst-plugins-bad-0.10.23/ext/directfb/dfb-example.c 2011-12-11 19:49:11.000000000 +0100
13 +++ gst-plugins-bad-0.10.23.fixed/ext/directfb/dfb-example.c 2013-05-13 00:32:00.507469138 +0200
14 @@ -1,7 +1,7 @@
16 -#include <directfb.h>
17 #include <stdio.h>
18 #include <gst/gst.h>
19 +#include <directfb.h>
21 static IDirectFB *dfb = NULL;
22 static IDirectFBSurface *primary = NULL;