summaryrefslogtreecommitdiff
path: root/finch/plugins
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2021-08-04 04:42:29 -0500
committerGary Kramlich <grim@reaperworld.com>2021-08-04 04:42:29 -0500
commitb367cc63a13b181151330b4de57cc980047f9654 (patch)
tree3bac31f0610a333ca9cb0209ca3112db1860155b /finch/plugins
parente7a275df761f9449359b52d2919f4c38312de510 (diff)
downloadpidgin-b367cc63a13b181151330b4de57cc980047f9654.tar.gz
Remove the option to disable compiling plugins.
This is a niche feature at best but we can revisit it when we re-enable static protocol plugins. Testing Done: Compiled Reviewed at https://reviews.imfreedom.org/r/873/
Diffstat (limited to 'finch/plugins')
-rw-r--r--finch/plugins/meson.build53
1 files changed, 26 insertions, 27 deletions
diff --git a/finch/plugins/meson.build b/finch/plugins/meson.build
index 588b5aa75e..9a2e1f7a45 100644
--- a/finch/plugins/meson.build
+++ b/finch/plugins/meson.build
@@ -1,34 +1,33 @@
-if PLUGINS
- if x11.found()
- gntclipboard = library('gntclipboard', 'gntclipboard.c',
- dependencies : [x11, libpurple_dep, libfinch_dep, glib],
- name_prefix : '',
- install : true, install_dir : FINCH_PLUGINDIR)
-
- gntgf = library('gntgf', 'gntgf.c',
- c_args : ncurses_header,
- dependencies : [x11, libpurple_dep, libfinch_dep, ncurses, glib],
- name_prefix : '',
- install : true, install_dir : FINCH_PLUGINDIR)
- endif
-
- gnthistory = library('gnthistory', 'gnthistory.c',
- dependencies : [libpurple_dep, libfinch_dep, glib],
+if x11.found()
+ gntclipboard = library('gntclipboard', 'gntclipboard.c',
+ dependencies : [x11, libpurple_dep, libfinch_dep, glib],
name_prefix : '',
install : true, install_dir : FINCH_PLUGINDIR)
- gntlastlog = library('gntlastlog', 'lastlog.c',
- dependencies : [libpurple_dep, libfinch_dep, ncurses, glib],
+ gntgf = library('gntgf', 'gntgf.c',
+ c_args : ncurses_header,
+ dependencies : [x11, libpurple_dep, libfinch_dep, ncurses, glib],
name_prefix : '',
install : true, install_dir : FINCH_PLUGINDIR)
+endif
- gnttinyurl = library('gnttinyurl', 'gnttinyurl.c',
- dependencies : [libpurple_dep, libfinch_dep, libsoup, glib],
- name_prefix : '',
- install : true, install_dir : FINCH_PLUGINDIR)
+gnthistory = library('gnthistory', 'gnthistory.c',
+ dependencies : [libpurple_dep, libfinch_dep, glib],
+ name_prefix : '',
+ install : true, install_dir : FINCH_PLUGINDIR)
+
+gntlastlog = library('gntlastlog', 'lastlog.c',
+ dependencies : [libpurple_dep, libfinch_dep, ncurses, glib],
+ name_prefix : '',
+ install : true, install_dir : FINCH_PLUGINDIR)
+
+gnttinyurl = library('gnttinyurl', 'gnttinyurl.c',
+ dependencies : [libpurple_dep, libfinch_dep, libsoup, glib],
+ name_prefix : '',
+ install : true, install_dir : FINCH_PLUGINDIR)
+
+grouping = library('grouping', 'grouping.c',
+ dependencies : [libpurple_dep, libfinch_dep, glib],
+ name_prefix : '',
+ install : true, install_dir : FINCH_PLUGINDIR)
- grouping = library('grouping', 'grouping.c',
- dependencies : [libpurple_dep, libfinch_dep, glib],
- name_prefix : '',
- install : true, install_dir : FINCH_PLUGINDIR)
-endif # PLUGINS