diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-04-09 15:39:52 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-04-09 15:39:52 +0200 |
commit | c33f0e60eab79e82c54778a32c23836c1a4a7fd9 (patch) | |
tree | 2f4fdc681f9412fb0c6e2f26c0fc79ed9c5a392a /src/plugins/fifo | |
parent | 31bfcf96c700ce8454609d19ad6e5f5e6c28253f (diff) | |
download | weechat-c33f0e60eab79e82c54778a32c23836c1a4a7fd9.zip |
Define WeeChat license as macro for C compiler, used in plugins to set license
Diffstat (limited to 'src/plugins/fifo')
-rw-r--r-- | src/plugins/fifo/fifo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/fifo/fifo.c b/src/plugins/fifo/fifo.c index 0cb87e38a..6b3890305 100644 --- a/src/plugins/fifo/fifo.c +++ b/src/plugins/fifo/fifo.c @@ -40,7 +40,7 @@ WEECHAT_PLUGIN_NAME(FIFO_PLUGIN_NAME); WEECHAT_PLUGIN_DESCRIPTION("Fifo plugin for WeeChat"); WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>"); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); -WEECHAT_PLUGIN_LICENSE("GPL3"); +WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); #ifndef PATH_MAX #define PATH_MAX 4096 |