diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-02-04 18:45:19 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-02-04 18:45:19 (GMT) |
commit | ff187d24b7441e88e1f0361d59b0f6f55851791f (patch) | |
tree | e340d88fb8189ef79f2c2d4193eea97be4fa003e /plugins/dalvik | |
parent | 9b35b89fce2499d5352f5323baec53abbf9a4af2 (diff) |
Added an option to drop Python support at compilation time.
Diffstat (limited to 'plugins/dalvik')
-rw-r--r-- | plugins/dalvik/core.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/dalvik/core.c b/plugins/dalvik/core.c index d7e5a04..3220e2d 100644 --- a/plugins/dalvik/core.c +++ b/plugins/dalvik/core.c @@ -24,6 +24,7 @@ #include "core.h" +#include <config.h> #include <plugins/plugin-def.h> @@ -34,9 +35,16 @@ #include "v35/core.h" +#ifdef HAVE_PYTHON3_BINDINGS +# define PG_REQ RL("PyChrysalide") +#else +# define PG_REQ NO_REQ +#endif + + DEFINE_CHRYSALIDE_PLUGIN("GDalvikPlugin", "dalvik", "Add support for the Dalvik architecture", "0.1.0", - RL("PyChrysalide"), AL(PGA_PLUGIN_INIT, PGA_PLUGIN_EXIT)); + PG_REQ, AL(PGA_PLUGIN_INIT, PGA_PLUGIN_EXIT)); |