[vlc-commits] vout: fix libglconv_cvpx LDFLAGS
Thomas Guillem
git at videolan.org
Mon Oct 2 10:35:37 CEST 2017
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Mon Oct 2 10:33:29 2017 +0200| [6e7609fddff44c36c41a7da2324cc314c7b5377f] | committer: Thomas Guillem
vout: fix libglconv_cvpx LDFLAGS
Fixes #18870
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6e7609fddff44c36c41a7da2324cc314c7b5377f
---
modules/video_output/Makefile.am | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/modules/video_output/Makefile.am b/modules/video_output/Makefile.am
index 50fa534499..d2ed1f94cb 100644
--- a/modules/video_output/Makefile.am
+++ b/modules/video_output/Makefile.am
@@ -17,6 +17,7 @@ endif
libglconv_cvpx_plugin_la_SOURCES = video_output/opengl/converter_cvpx.c \
video_output/opengl/converter.h
+libglconv_cvpx_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(voutdir)'
if HAVE_OSX
libvout_macosx_plugin_la_SOURCES = video_output/macosx.m $(OPENGL_COMMONSOURCES)
@@ -28,7 +29,7 @@ libcaopengllayer_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(voutdir)' \
-Wl,-framework,OpenGL,-framework,Cocoa,-framework,QuartzCore
libglconv_cvpx_plugin_la_SOURCES += codec/vt_utils.c codec/vt_utils.h
-libglconv_cvpx_plugin_la_LDFLAGS = -Wl,-framework,IOSurface -Wl,-framework,CoreVideo
+libglconv_cvpx_plugin_la_LDFLAGS += -Wl,-framework,IOSurface -Wl,-framework,CoreVideo
vout_LTLIBRARIES += libvout_macosx_plugin.la libcaopengllayer_plugin.la \
libglconv_cvpx_plugin.la
endif
More information about the vlc-commits
mailing list