[vlc-commits] [Git][videolan/vlc][master] meson: fix opengl build for mingw
    Steve Lhomme (@robUx4) 
    gitlab at videolan.org
       
    Wed Jan 18 18:12:46 UTC 2023
    
    
  
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
5d79ac49 by Steve Lhomme at 2023-01-18T17:16:53+00:00
meson: fix opengl build for mingw
- - - - -
1 changed file:
- modules/video_output/opengl/meson.build
Changes:
=====================================
modules/video_output/opengl/meson.build
=====================================
@@ -33,7 +33,8 @@ if opengl_dep.found()
                 files('display.c'),
                 opengl_vout_commonsources
             ],
-        'link_with' : [libvlc_opengl]
+        'link_with' : [libvlc_opengl],
+        'dependencies' : [gl_common_dep, m_lib]
     }
 endif
 
@@ -45,7 +46,7 @@ endif
 
 # interop_sw
 if ['darwin', 'android'].contains(host_system) or opengl_dep.found() or opengles2_dep.found()
-    interop_sw_deps = []
+    interop_sw_deps = [gl_common_dep, m_lib]
     interop_sw_cargs = []
 
     if have_osx and opengl_dep.found()
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/5d79ac4937737652224d94f128acbe299e46c1a6
-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/5d79ac4937737652224d94f128acbe299e46c1a6
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