[vlc-commits] libvlc: callbacks: compile with the OpenGL C flags

Steve Lhomme git at videolan.org
Mon Feb 10 10:36:23 CET 2020


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Mon Feb 10 10:22:47 2020 +0100| [4bbda45c10a53171746d9cb13326f871ee0ea788] | committer: Steve Lhomme

libvlc: callbacks: compile with the OpenGL C flags

Needed to include gl_common.h on all platforms, even though it's only used for
an assert (for now).

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4bbda45c10a53171746d9cb13326f871ee0ea788
---

 modules/video_output/Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/modules/video_output/Makefile.am b/modules/video_output/Makefile.am
index 6bccecf006..23a5b6809c 100644
--- a/modules/video_output/Makefile.am
+++ b/modules/video_output/Makefile.am
@@ -333,7 +333,9 @@ libvmem_plugin_la_SOURCES = video_output/vmem.c
 libwdummy_plugin_la_SOURCES = video_output/wdummy.c
 libwextern_plugin_la_SOURCES = video_output/wextern.c
 libyuv_plugin_la_SOURCES = video_output/yuv.c
+
 libvgl_plugin_la_SOURCES = video_output/vgl.c
+libgles2_plugin_la_CFLAGS = $(AM_CFLAGS) $(GL_CFLAGS) $(GLES2_CFLAGS)
 
 vout_LTLIBRARIES += \
 	libflaschen_plugin.la \



More information about the vlc-commits mailing list