meson: Add some messages when selecting libsoup
authorNirbheek Chauhan <nirbheek@centricular.com>
Fri, 25 Mar 2022 19:32:02 +0000 (01:02 +0530)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Tue, 29 Mar 2022 18:30:03 +0000 (18:30 +0000)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2032>

subprojects/gst-plugins-good/ext/soup/meson.build

index 793ef4d..1db53be 100644 (file)
@@ -35,9 +35,11 @@ if default_library in ['static', 'both']
   if libsoup3_dep.found()
     static_deps += libsoup3_dep
     static_args += '-DSTATIC_SOUP=3'
+    message('soup plugin: using libsoup-3.0 for static build')
   elif libsoup2_dep.found()
     static_deps += libsoup2_dep
     static_args += '-DSTATIC_SOUP=2'
+    message('soup plugin: using libsoup-2.4 for static build')
   endif
 endif