[vlc-commits] [Git][videolan/vlc][master] 2 commits: qt: use `QT_LDFLAGS` in kf6windowsystem module
Steve Lhomme (@robUx4)
gitlab at videolan.org
Wed Jul 15 16:02:23 UTC 2026
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
12353997 by Fatih Uzunoglu at 2026-07-15T15:27:27+00:00
qt: use `QT_LDFLAGS` in kf6windowsystem module
`QT_LDFLAGS` specify `rpath` for the target Qt
libs, and without this, the correct Qt libs may
not be provided to the module.
- - - - -
f0175eef by Fatih Uzunoglu at 2026-07-15T15:27:27+00:00
qt: use `QT_LDFLAGS` in gtktheme module
`QT_LDFLAGS` specify `rpath` for the target Qt
libs, and without this, the correct Qt libs may
not be provided to the module.
- - - - -
1 changed file:
- modules/gui/qt/Makefile.am
Changes:
=====================================
modules/gui/qt/Makefile.am
=====================================
@@ -721,6 +721,7 @@ libqt_plugin_la_CPPFLAGS += -DQT_HAS_KWINDOWSYSTEM_PLUGIN
libqt_kwindowsystem_plugin_la_CXXFLAGS = $(AM_CXXFLAGS) $(KF6WINDOWSYSTEM_CFLAGS)
libqt_kwindowsystem_plugin_la_LIBADD = $(KF6WINDOWSYSTEM_LIBS) $(QT_LIBS)
+libqt_kwindowsystem_plugin_la_LDFLAGS = $(AM_LDFLAGS) $(QT_LDFLAGS)
libqt_kwindowsystem_plugin_la_SOURCES = \
maininterface/kwindowsystem_module.cpp
@@ -1700,6 +1701,7 @@ libqt_gtktheme_plugin_la_CXXFLAGS = $(AM_CXXFLAGS) $(GTK3_CFLAGS) $(QT_CFLAGS)
libqt_gtktheme_CPPFLAGS = $(AM_CPPFLAGS)
libqt_gtktheme_plugin_la_LDFLAGS = $(AM_LDFLAGS)
libqt_gtktheme_plugin_la_LIBADD = $(GTK3_LIBS) $(QT_LIBS)
+libqt_gtktheme_plugin_la_LDFLAGS = $(AM_LDFLAGS) $(QT_LDFLAGS)
libqt_gtktheme_plugin_la_SOURCES = \
style/gtkthemeprovider/gtk_compat.cpp \
style/gtkthemeprovider/gtk_compat.h \
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/192ecc334277b2533046fddc67714424554db595...f0175eefa297f6f97e2ac8c2436a8902362a7219
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/192ecc334277b2533046fddc67714424554db595...f0175eefa297f6f97e2ac8c2436a8902362a7219
You're receiving this email because of your account on code.videolan.org. Manage all notifications: https://code.videolan.org/-/profile/notifications | Help: https://code.videolan.org/help
More information about the vlc-commits
mailing list