The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / gstreamer / gst-plugins-bad / 0002-fix-dfb-example.patch
1 Fix dfb-example
2
3 Order of inclusion gives a strange effect on the definition of
4 gst_debug_log. Swapping the include statements solve it.
5
6 Not upstreamed since there will be no more updates to this version
7 of gst-plugins-bad.
8
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 @@
15  
16 -#include <directfb.h>
17  #include <stdio.h>
18  #include <gst/gst.h>
19 +#include <directfb.h>
20  
21  static IDirectFB *dfb = NULL;
22  static IDirectFBSurface *primary = NULL;