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 /src | |
parent | 9b35b89fce2499d5352f5323baec53abbf9a4af2 (diff) |
Added an option to drop Python support at compilation time.
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/plugin-def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/plugin-def.h b/src/plugins/plugin-def.h index b8cdca8..6d4253e 100644 --- a/src/plugins/plugin-def.h +++ b/src/plugins/plugin-def.h @@ -253,6 +253,8 @@ typedef struct _plugin_interface #define RL(...) BUILD_PG_LIST(.required, ((const char *[]){ __VA_ARGS__ })) +#define NO_REQ EMPTY_PG_LIST(.required) + #define DEFINE_CHRYSALIDE_PLUGIN(t, n, d, v, r, a) \ G_MODULE_EXPORT const plugin_interface _chrysalide_plugin = { \ |