diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-03-22 06:40:44 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-03-22 06:40:44 +0100 |
commit | 8e1c5a834469d804d28ee8ab2cbe2da8e600a789 (patch) | |
tree | b9771456583eaead893cfd8f02e680b58a3da970 /plugins/shotwell-publishing-extras/shotwell-publishing-extras.vala | |
parent | 80a5f2d8b095e895a5424f90b2ce4684d94c1a32 (diff) | |
parent | 3253d99365813f2d2ffd05e10cbb8c11f53d746e (diff) |
Merge tag 'upstream/0.26.0'
Upstream version 0.26.0
Diffstat (limited to 'plugins/shotwell-publishing-extras/shotwell-publishing-extras.vala')
-rw-r--r-- | plugins/shotwell-publishing-extras/shotwell-publishing-extras.vala | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/shotwell-publishing-extras/shotwell-publishing-extras.vala b/plugins/shotwell-publishing-extras/shotwell-publishing-extras.vala index 9e70d30..2f47771 100644 --- a/plugins/shotwell-publishing-extras/shotwell-publishing-extras.vala +++ b/plugins/shotwell-publishing-extras/shotwell-publishing-extras.vala @@ -10,10 +10,21 @@ private class ShotwellPublishingExtraServices : Object, Spit.Module { private Spit.Pluggable[] pluggables = new Spit.Pluggable[0]; public ShotwellPublishingExtraServices(GLib.File module_file) { +#if HAVE_YANDEX pluggables += new YandexService(); +#endif + +#if HAVE_TUMBLR pluggables += new TumblrService(module_file.get_parent()); +#endif + +#if HAVE_RAJCE pluggables += new RajceService(module_file.get_parent()); +#endif + +#if HAVE_GALLERY3 pluggables += new Gallery3Service(module_file.get_parent()); +#endif } public unowned string get_module_name() { |