[vlc-commits] [Git][videolan/vlc][master] 2 commits: meson: skins2: consider skins2 is not "feasible" if it's disabled
Steve Lhomme (@robUx4)
gitlab at videolan.org
Sat Sep 5 03:41:36 UTC 2026
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
b8c021d0 by Steve Lhomme at 2026-09-05T03:29:57+00:00
meson: skins2: consider skins2 is not "feasible" if it's disabled
- - - - -
b93a15e3 by Steve Lhomme at 2026-09-05T03:29:57+00:00
meson: skins2: do not look for Windows dependencies if module is disabled
- - - - -
1 changed file:
- modules/gui/skins2/meson.build
Changes:
=====================================
modules/gui/skins2/meson.build
=====================================
@@ -4,7 +4,7 @@ skins2_option = get_option('skins2') \
skins2_allowed = skins2_option.allowed()
skins2_enabled = skins2_option.enabled()
-skins2_feasible = true
+skins2_feasible = skins2_allowed
skins2_flags = []
skins2_deps = [ freetype_dep, m_lib ]
@@ -109,7 +109,7 @@ skins2_sources = files(
)
-if host_system == 'windows'
+if host_system == 'windows' and skins2_allowed
skins2_flags += [ '-DWIN32_SKINS' ]
skins2_deps += [
cc.find_library('gdi32'),
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/975fab5345ad6158028cd359a2166893bcc2b9cc...b93a15e39600d13c3a19bfe09b82625c32cd7788
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/975fab5345ad6158028cd359a2166893bcc2b9cc...b93a15e39600d13c3a19bfe09b82625c32cd7788
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