]> code.ossystems Code Review - openembedded-core.git/blob
d7b8984953d3711ff2db1d4e324ff6d1af42b180
[openembedded-core.git] /
1 From 5403a89e6a7ac72a23e0221075c0c19b5f85a021 Mon Sep 17 00:00:00 2001
2 From: Fabio Berton <fabio.berton@ossystems.com.br>
3 Date: Wed, 13 Jun 2018 09:09:25 -0300
4 Subject: [PATCH] gst/vaapi/Makefile.am: Add EGL_CFLAGS to libgstvaapi CFLAGS
5 Organization: O.S. Systems Software LTDA.
6
7 We need this to pass correctly EGL CFLAGS when building with EGL support.
8
9 Upstream-Status: Pending
10
11 Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
12 ---
13  gst/vaapi/Makefile.am | 4 ++++
14  1 file changed, 4 insertions(+)
15
16 diff --git a/gst/vaapi/Makefile.am b/gst/vaapi/Makefile.am
17 index b299ac98..d6cab71f 100644
18 --- a/gst/vaapi/Makefile.am
19 +++ b/gst/vaapi/Makefile.am
20 @@ -24,6 +24,10 @@ libgstvaapi_LIBS += $(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-glx.la
21  endif
22  
23  if USE_EGL
24 +libgstvaapi_CFLAGS += \
25 +       $(EGL_CFLAGS)   \
26 +       $(NULL)
27 +
28  libgstvaapi_LIBS += $(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-egl.la
29  endif
30  
31 -- 
32 2.17.1
33