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

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


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Mon Feb 10 10:22:47 2020 +0100| [06192f985762b98f14f271d46192cee22e5d748d] | 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=06192f985762b98f14f271d46192cee22e5d748d
---

 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..3e109ecf7e 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
+libvgl_plugin_la_CFLAGS = $(AM_CFLAGS) $(GL_CFLAGS)
 
 vout_LTLIBRARIES += \
 	libflaschen_plugin.la \



More information about the vlc-commits mailing list