diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-06-12 16:02:40 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-06-12 16:02:40 +0200 |
commit | 38f1bc08374b8e6a5c67f21ca079c75c255c4560 (patch) | |
tree | 1e9adc1c3d89f821ac63075c48b8e7caf154e56d /src/plugins/weechat-plugin.h | |
parent | 58e6a514eb14a5eb9cf7e1b1b593bfe9b7dc7585 (diff) | |
download | weechat-38f1bc08374b8e6a5c67f21ca079c75c255c4560.zip |
Remove variable with "WeeChat required version" in plugins, do not compare version any more (API comparison is enough)
Diffstat (limited to 'src/plugins/weechat-plugin.h')
-rw-r--r-- | src/plugins/weechat-plugin.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/plugins/weechat-plugin.h b/src/plugins/weechat-plugin.h index d8bd0d8f3..53d68c1d9 100644 --- a/src/plugins/weechat-plugin.h +++ b/src/plugins/weechat-plugin.h @@ -33,7 +33,7 @@ struct t_infolist; struct t_weelist; /* API version (used to check that plugin has same API and can be loaded) */ -#define WEECHAT_PLUGIN_API_VERSION "20090608-01" +#define WEECHAT_PLUGIN_API_VERSION "20090612-01" /* macros for defining plugin infos */ #define WEECHAT_PLUGIN_NAME(__name) \ @@ -45,8 +45,6 @@ struct t_weelist; char weechat_plugin_description[] = __desc; #define WEECHAT_PLUGIN_VERSION(__version) \ char weechat_plugin_version[] = __version; -#define WEECHAT_PLUGIN_WEECHAT_VERSION(__version) \ - char weechat_plugin_weechat_version[] = __version; #define WEECHAT_PLUGIN_LICENSE(__license) \ char weechat_plugin_license[] = __license; @@ -123,7 +121,6 @@ struct t_weechat_plugin char *description; /* description */ char *author; /* author */ char *version; /* plugin version */ - char *weechat_version; /* weechat version required */ char *license; /* license */ char *charset; /* charset used by plugin */ int debug; /* debug level for plugin (0=off) */ |