[vlc-commits] [Git][videolan/vlc][master] 2 commits: meson: opengl: fix extra lib prefix

Felix Paul Kühne (@fkuehne) gitlab at videolan.org
Sun Mar 8 19:52:08 UTC 2026



Felix Paul Kühne pushed to branch master at VideoLAN / VLC


Commits:
e2b3abfe by Alexandre Janniaux at 2026-03-08T19:25:10+01:00
meson: opengl: fix extra lib prefix

The meson target was named 'libvlc_opengles' but meson automatically
adds a 'lib' prefix, producing 'liblibvlc_opengles.a'. Rename the
target to 'vlc_opengles' so the output match the intended name.

- - - - -
8b55b111 by Alexandre Janniaux at 2026-03-08T19:25:10+01:00
meson: codec: fix extra lib prefix

The meson target was named 'libvlc_vtutils' but meson automatically
adds a 'lib' prefix, producing 'liblibvlc_vtutils.a'. Rename the target
to 'vlc_vtutils' so the output match the intended name.

- - - - -


2 changed files:

- modules/codec/meson.build
- modules/video_output/opengl/meson.build


Changes:

=====================================
modules/codec/meson.build
=====================================
@@ -524,7 +524,7 @@ vlc_modules += {
 # TODO: Set proper flags for minimum iOS/tvOS versions
 if host_system == 'darwin'
 
-    libvlc_vtutils = static_library('libvlc_vtutils',
+    libvlc_vtutils = static_library('vlc_vtutils',
         files('vt_utils.c', 'vt_utils.h'),
         include_directories : vlc_include_dirs,
         dependencies : [corevideo_dep])


=====================================
modules/video_output/opengl/meson.build
=====================================
@@ -47,7 +47,7 @@ vlc_modules += {
 
 libvlc_opengles = []
 if opengles2_dep.found()
-    libvlc_opengles = static_library('libvlc_opengles',
+    libvlc_opengles = static_library('vlc_opengles',
                                      dependencies: [gl_common_dep, m_lib],
                                      c_args: '-DUSE_OPENGL_ES2')
 endif



View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/d4286710deafdb96e81b25e37e6eb106122cc8a0...8b55b111cebf0eae062ae356a1d308359d88c0b6

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/d4286710deafdb96e81b25e37e6eb106122cc8a0...8b55b111cebf0eae062ae356a1d308359d88c0b6
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list