blob: 2af83ff8b98fba01ba5ad05a83053b35755f6a3a [file] [log] [blame]
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001From 153f3b83a3fed77785bd1420bed8bbafa2d791b3 Mon Sep 17 00:00:00 2001
Brad Bishop15ae2502019-06-18 21:44:24 -04002From: Carlos Rafael Giani <crg7475@mailbox.org>
3Date: Tue, 21 May 2019 14:01:11 +0200
Andrew Geissler6ce62a22020-11-30 19:58:47 -06004Subject: [PATCH 3/4] viv-fb: Make sure config.h is included
Brad Bishop15ae2502019-06-18 21:44:24 -04005
6This prevents build errors due to missing GST_API_* symbols
7
8Upstream-Status: Pending
9
10Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
11---
12 gst-libs/gst/gl/gl-prelude.h | 4 ++++
13 1 file changed, 4 insertions(+)
14
15diff --git a/gst-libs/gst/gl/gl-prelude.h b/gst-libs/gst/gl/gl-prelude.h
Andrew Geissler6ce62a22020-11-30 19:58:47 -060016index 05e1f62..96ce5e6 100644
Brad Bishop15ae2502019-06-18 21:44:24 -040017--- a/gst-libs/gst/gl/gl-prelude.h
18+++ b/gst-libs/gst/gl/gl-prelude.h
19@@ -22,6 +22,10 @@
20 #ifndef __GST_GL_PRELUDE_H__
21 #define __GST_GL_PRELUDE_H__
22
23+#ifdef HAVE_CONFIG_H
24+#include "config.h"
25+#endif
26+
27 #include <gst/gst.h>
28
29 #ifdef BUILDING_GST_GL
30--
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600312.28.0
Brad Bishop15ae2502019-06-18 21:44:24 -040032