diff options
author | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2013-05-12 12:43:07 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-05-13 13:23:50 +0200 |
commit | 8e384dcb8fa13fc9ba7eed3417c1371392e3bec0 (patch) | |
tree | 5c5b17141a4d3e8a8f814a33ffd4210cbd4b47c9 | |
parent | 7c58258e212c45fadf6d01ea969798210f767557 (diff) | |
download | buildroot-novena-8e384dcb8fa13fc9ba7eed3417c1371392e3bec0.tar.gz buildroot-novena-8e384dcb8fa13fc9ba7eed3417c1371392e3bec0.zip |
gst-plugins-bad: fix build of directfb plugin
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/multimedia/gst-plugins-bad/gst-plugins-bad-0002-fix-dfb-example.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/multimedia/gst-plugins-bad/gst-plugins-bad-0002-fix-dfb-example.patch b/package/multimedia/gst-plugins-bad/gst-plugins-bad-0002-fix-dfb-example.patch new file mode 100644 index 000000000..b2057484c --- /dev/null +++ b/package/multimedia/gst-plugins-bad/gst-plugins-bad-0002-fix-dfb-example.patch @@ -0,0 +1,22 @@ +Fix dfb-example + +Order of inclusion gives a strange effect on the definition of +gst_debug_log. Swapping the include statements solve it. + +Not upstreamed since there will be no more updates to this version +of gst-plugins-bad. + +Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> +--- +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 +--- gst-plugins-bad-0.10.23/ext/directfb/dfb-example.c 2011-12-11 19:49:11.000000000 +0100 ++++ gst-plugins-bad-0.10.23.fixed/ext/directfb/dfb-example.c 2013-05-13 00:32:00.507469138 +0200 +@@ -1,7 +1,7 @@ + +-#include <directfb.h> + #include <stdio.h> + #include <gst/gst.h> ++#include <directfb.h> + + static IDirectFB *dfb = NULL; + static IDirectFBSurface *primary = NULL; |