summaryrefslogtreecommitdiff
path: root/plugins/dex/core.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/dex/core.c')
-rw-r--r--plugins/dex/core.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/plugins/dex/core.c b/plugins/dex/core.c
index 3e5b835..0f66c86 100644
--- a/plugins/dex/core.c
+++ b/plugins/dex/core.c
@@ -24,17 +24,27 @@
#include "core.h"
+#include <config.h>
#include <core/global.h>
#include <plugins/plugin-def.h>
#include "format.h"
-#include "python/module.h"
+#ifdef HAVE_PYTHON3_BINDINGS
+# include "python/module.h"
+#endif
+
+
+#ifdef HAVE_PYTHON3_BINDINGS
+# define PG_REQ RL("PyChrysalide", "dexbnf")
+#else
+# define PG_REQ RL("dexbnf")
+#endif
DEFINE_CHRYSALIDE_PLUGIN("GDexPlugin", "dex", "Add support for the DEX format", "0.1.0",
- RL("PyChrysalide", "dexbnf"), AL(PGA_PLUGIN_INIT, PGA_CONTENT_RESOLVER));
+ PG_REQ, AL(PGA_PLUGIN_INIT, PGA_CONTENT_RESOLVER));
@@ -54,7 +64,11 @@ G_MODULE_EXPORT bool chrysalide_plugin_init(GPluginModule *plugin)
{
bool result; /* Bilan à retourner */
+#ifdef HAVE_PYTHON3_BINDINGS
result = add_format_dex_module_to_python_module();
+#else
+ result = true;
+#endif
return result;