diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-03-22 06:39:17 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-03-22 06:39:17 +0100 |
commit | 3253d99365813f2d2ffd05e10cbb8c11f53d746e (patch) | |
tree | 0ab6f04d9051dc4ada1c4f977a01308227767234 /plugins/shotwell-publishing-extras/shotwell-publishing-extras.vala | |
parent | e69c1b746d63bf794316669471474ab57c8cd40a (diff) |
New upstream version 0.26.0upstream/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() { |