diff options
Diffstat (limited to 'plugins/dwarf')
-rw-r--r-- | plugins/dwarf/core.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/dwarf/core.c b/plugins/dwarf/core.c index 1e2d900..9a548ab 100644 --- a/plugins/dwarf/core.c +++ b/plugins/dwarf/core.c @@ -24,15 +24,23 @@ #include "core.h" +#include <config.h> #include <plugins/plugin-def.h> #include "format.h" +#ifdef HAVE_PYTHON3_BINDINGS +# define PG_REQ RL("PyChrysalide") +#else +# define PG_REQ NO_REQ +#endif + + DEFINE_CHRYSALIDE_PLUGIN("GDwarfPlugin", "dwarf", "Add support for the DWARF format", "0.1.0", - RL("PyChrysalide"), AL(PGA_PLUGIN_INIT, PGA_FORMAT_ATTACH_DEBUG)); + PG_REQ, AL(PGA_PLUGIN_INIT, PGA_FORMAT_ATTACH_DEBUG)); |