Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2019-04-04 16:50:24 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-04-04 16:50:24 +0300
commit7ead937d4ad932222eac90ac243c57266a724abd (patch)
tree0e0dd1b6262f7f278cbbd235c127663c00951534 /src/remmina_unlock.c
parent62b38b0aeecb9fc9f6ed1313f3561219742c95b9 (diff)
Fixing sodium dependencies
Diffstat (limited to 'src/remmina_unlock.c')
-rw-r--r--src/remmina_unlock.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/remmina_unlock.c b/src/remmina_unlock.c
index c851ca00b..e88fb521c 100644
--- a/src/remmina_unlock.c
+++ b/src/remmina_unlock.c
@@ -40,17 +40,13 @@
#include <glib/gprintf.h>
#include "config.h"
-#include <sodium.h>
-#if (SODIUM_LIBRARY_VERSION_MAJOR >= 9) && (SODIUM_LIBRARY_VERSION_MINOR >= 2)
#include "remmina_sodium.h"
-#else
-#endif
#include "remmina_pref.h"
#include "remmina_unlock.h"
#include "remmina_public.h"
#include "remmina/remmina_trace_calls.h"
-#if (SODIUM_LIBRARY_VERSION_MAJOR >= 9) && (SODIUM_LIBRARY_VERSION_MINOR >= 2)
+#if SODIUM_VERSION_INT >= 90200
static RemminaUnlockDialog *remmina_unlock_dialog;
#define GET_OBJ(object_name) gtk_builder_get_object(remmina_unlock_dialog->builder, object_name)