[vlc-commits] [Git][videolan/vlc][master] wayland: fix wayland-client cflags

Hugo Beauzée-Luyssen gitlab at videolan.org
Thu May 6 07:57:22 UTC 2021



Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC


Commits:
a4617538 by Niklas Haas at 2021-05-06T07:23:01+00:00
wayland: fix wayland-client cflags

This WAYLAND_CFLAGS was probably meant to be WAYLAND_CLIENT_CFLAGS. The
former doesn't exist on my system, the latter is required for
compilation to succeed.

- - - - -


1 changed file:

- modules/video_output/wayland/Makefile.am


Changes:

=====================================
modules/video_output/wayland/Makefile.am
=====================================
@@ -77,9 +77,9 @@ libvk_wl_plugin_la_SOURCES = \
 	video_output/vulkan/instance.h \
 	video_output/wayland/vulkan.c
 libvk_wl_plugin_la_CFLAGS = $(AM_CFLAGS) \
-	$(WAYLAND_CFLAGS) $(VULKAN_COMMONCFLAGS) \
+	$(WAYLAND_CLIENT_CFLAGS) $(VULKAN_COMMONCFLAGS) \
 	-DVK_USE_PLATFORM_WAYLAND_KHR
-libvk_wl_plugin_la_LIBADD = $(VULKAN_COMMONLIBS) $(WAYLAND_LIBS)
+libvk_wl_plugin_la_LIBADD = $(VULKAN_COMMONLIBS) $(WAYLAND_CLIENT_LIBS)
 
 if HAVE_WAYLAND
 BUILT_SOURCES += $(nodist_libwl_shm_plugin_la_SOURCES)



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/a4617538a5b9f56c7566fe0631e9ed7b4b6ac614

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/a4617538a5b9f56c7566fe0631e9ed7b4b6ac614
You're receiving this email because of your account on code.videolan.org.




More information about the vlc-commits mailing list