[vlc-commits] [Git][videolan/vlc][master] qt: do not probe libatomic twice in meson.build

Steve Lhomme (@robUx4) gitlab at videolan.org
Sun Mar 9 07:16:16 UTC 2025



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
3435039a by Fatih Uzunoglu at 2025-03-09T07:01:48+00:00
qt: do not probe libatomic twice in meson.build

- - - - -


1 changed file:

- modules/gui/qt/meson.build


Changes:

=====================================
modules/gui/qt/meson.build
=====================================
@@ -923,9 +923,9 @@ if qt6_dep.found()
         qt_rcc_extra_arguments += '-compress-algo=zlib'
     endif
 
-    libatomic = cc.find_library('atomic', required: false)
-    if libatomic.found()
-        qt_extra_deps += cc.find_library('atomic', required: false)
+    atomic_lib = cc.find_library('atomic', required: false)
+    if atomic_lib.found()
+        qt_extra_deps += atomic_lib
         qt_extra_flags += '-DQT_HAS_LIBATOMIC'
     endif
 



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

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/3435039ab4b4687441774d949d0c7fbd5935dac6
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