gst-inspect: fix unused-const-variable error in windows
[platform/upstream/gstreamer.git] / pkgconfig / meson.build
index 32f96cd..9843772 100644 (file)
@@ -1,11 +1,16 @@
 pkgconf = configuration_data()
 
-pkgconf.set('prefix', get_option('prefix'))
+pkgconf.set('prefix', join_paths(get_option('prefix')))
 pkgconf.set('exec_prefix', '${prefix}')
 pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
 pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
 pkgconf.set('GST_API_VERSION', apiversion)
 pkgconf.set('VERSION', gst_version)
+pkgconf.set('LIBM', mathlib.found() ? '-lm' : '')
+
+# Requires.private
+pkgconf.set('UNWIND_REQUIRE', cdata.has('HAVE_UNWIND') ? 'libunwind' : '')
+pkgconf.set('DW_REQUIRE', cdata.has('HAVE_DW') ? 'libdw' : '')
 
 # needed for generating -uninstalled.pc files
 pkgconf.set('abs_top_builddir', join_paths(meson.current_build_dir(), '..'))
@@ -17,15 +22,16 @@ pkgconf.set('netlibdir', join_paths(meson.build_root(), gst_net.outdir()))
 
 pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir'))
 
-pkg_files = ['gstreamer-base',
+pkg_files = [
+  'gstreamer-base',
   'gstreamer-controller',
   'gstreamer-net',
   'gstreamer'
 ]
 
-if host_machine.system() != 'windows'
-    pkgconf.set('checklibdir', join_paths(meson.build_root(), gst_check.outdir()))
-    pkg_files += ['gstreamer-check']
+if not get_option('check').disabled()
+  pkg_files += ['gstreamer-check']
+  pkgconf.set('checklibdir', join_paths(meson.build_root(), gst_check.outdir()))
 endif
 
 foreach p : pkg_files