summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeal Gompa <ngompa13@gmail.com>2017-07-24 07:41:37 -0400
committerRichard Hughes <richard@hughsie.com>2017-07-24 14:57:31 +0100
commit7e2b7a17ee0b670be33d9060e1c699db175b1c75 (patch)
tree6b85e341d0f999cc19c5614ec9c0f2e9775f191c
parent788720986b6fb1a93eed67e2147937857d6d0faf (diff)
downloadappstream-glib-7e2b7a17ee0b670be33d9060e1c699db175b1c75.tar.gz
Have plugins link with asglib along with asbuilder
This fixes the build for appstream-glib on Mageia.
-rw-r--r--libappstream-builder/plugins/meson.build12
1 files changed, 6 insertions, 6 deletions
diff --git a/libappstream-builder/plugins/meson.build b/libappstream-builder/plugins/meson.build
index 938431c..b36729e 100644
--- a/libappstream-builder/plugins/meson.build
+++ b/libappstream-builder/plugins/meson.build
@@ -11,7 +11,7 @@ shared_module(
dependencies : [
gdkpixbuf,
],
- link_with : asbuilder,
+ link_with : [asbuilder, asglib],
c_args : asb_plugins_cargs,
install : true,
install_dir : plugindir,
@@ -28,7 +28,7 @@ shared_module(
dependencies : [
gdkpixbuf,
],
- link_with : asbuilder,
+ link_with : [asbuilder, asglib],
c_args : asb_plugins_cargs,
install : true,
install_dir : plugindir,
@@ -45,7 +45,7 @@ shared_module(
dependencies : [
gdkpixbuf,
],
- link_with : asbuilder,
+ link_with : [asbuilder, asglib],
c_args : asb_plugins_cargs,
install : true,
install_dir : plugindir,
@@ -62,7 +62,7 @@ shared_module(
dependencies : [
gdkpixbuf,
],
- link_with : asbuilder,
+ link_with : [asbuilder, asglib],
c_args : asb_plugins_cargs,
install : true,
install_dir : plugindir,
@@ -80,7 +80,7 @@ shared_module(
gdkpixbuf,
json_glib,
],
- link_with : asbuilder,
+ link_with : [asbuilder, asglib],
c_args : asb_plugins_cargs,
install : true,
install_dir : plugindir,
@@ -101,7 +101,7 @@ if get_option('enable-fonts')
freetype,
fontconfig,
],
- link_with : asbuilder,
+ link_with : [asbuilder, asglib],
c_args : asb_plugins_cargs,
install : true,
install_dir : plugindir,