From 7e1ecb34cb1eca2b74949c7ddc2ad52fb02e3a77 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Sun, 12 Mar 2017 02:49:53 +0100 Subject: Move PGP support into plugin --- main/CMakeLists.txt | 1 - main/src/main.vala | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'main') diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index 6547f752..34d26c3f 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -5,7 +5,6 @@ include(GlibCompileResourcesSupport) set(MAIN_PACKAGES gee-0.8 - gio-2.0 glib-2.0 gtk+-3.0 gmodule-2.0 diff --git a/main/src/main.vala b/main/src/main.vala index 811a1317..0fe72878 100644 --- a/main/src/main.vala +++ b/main/src/main.vala @@ -7,7 +7,7 @@ void main(string[] args) { Gtk.init(ref args); Dino.Ui.Application app = new Dino.Ui.Application(); Plugins.Loader loader = new Plugins.Loader(); - foreach(string plugin in new string[]{"omemo"}) { + foreach(string plugin in new string[]{"omemo", "openpgp"}) { try { loader.load(plugin, app); } catch (Plugins.Error e) { -- cgit v1.2.3-54-g00ecf