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

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2017-04-12 06:16:29 +0300
committerEion Robb <eion@robbmob.com>2017-04-12 06:16:29 +0300
commit6295b29369df73935d472c8d50415fd762dd3acb (patch)
treebe2e62afed6601e51ef670523352f231e0c5e3cd
parent1ebb0e4e537f2ca2c4eaad71f2d6c5c8ab150b87 (diff)
Fix for plugin not being recognised as a plugin
See issue #538
-rw-r--r--skypeweb/libskypeweb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/skypeweb/libskypeweb.h b/skypeweb/libskypeweb.h
index 02155fd..9a2245e 100644
--- a/skypeweb/libskypeweb.h
+++ b/skypeweb/libskypeweb.h
@@ -19,6 +19,10 @@
#ifndef LIBSKYPEWEB_H
#define LIBSKYPEWEB_H
+#ifndef PURPLE_PLUGINS
+# define PURPLE_PLUGINS
+#endif
+
/* Maximum number of simultaneous connections to a server */
#define SKYPEWEB_MAX_CONNECTIONS 16
@@ -72,10 +76,6 @@
#define json_node_get_array(JSON_NODE) \
(JSON_NODE && JSON_NODE_TYPE(JSON_NODE) == JSON_NODE_ARRAY ? json_node_get_array(JSON_NODE) : NULL)
-#ifndef PURPLE_PLUGINS
-# define PURPLE_PLUGINS
-#endif
-
#include "accountopt.h"
#include "core.h"
#include "cmds.h"