From e997d2baf5078a67fe2a5d1b6d3b7a106d509db8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 12 Aug 2018 00:21:58 +0100 Subject: [PATCH] meson: add zlib to gstreamer-1.0.pc if found https://bugzilla.gnome.org/show_bug.cgi?id=793995 --- pkgconfig/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build index 04abfbe..f5b8ece 100644 --- a/pkgconfig/meson.build +++ b/pkgconfig/meson.build @@ -7,6 +7,7 @@ pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir'))) pkgconf.set('GST_API_VERSION', api_version) pkgconf.set('VERSION', gst_version) pkgconf.set('LIBM', libm.found() ? '-lm' : '') +pkgconf.set('ZLIB_LIBS', zlib_dep.found() ? '-lz' : '') pkgconf.set('ORC_PC', have_orcc ? 'orc-0.4' : '') # needed for generating -uninstalled.pc files -- 2.7.4