diff options
-rw-r--r-- | skype/NEWS | 6 | ||||
-rw-r--r-- | skype/skype.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,11 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +0.9.0 - merge support for building the plugin on OpenBSD + - merge support for running skyped without gobject and + pygnutls/pyopenssl - as a side effect this adds Windows support + - add /ctcp call|hangup support (you need BitlBee from bzr to use + this) + - add group support (see http://wiki.bitlbee.org/UiFix) 0.8.4 - now using python2.7 directly in case python would point to python3k - merge patch to avoid a crash when failing to connect to skyped - merge support for building the plugin on NetBSD diff --git a/skype/skype.c b/skype/skype.c index 059d650e..80279c54 100644 --- a/skype/skype.c +++ b/skype/skype.c @@ -1498,7 +1498,7 @@ static void skype_init(account_t *acc) NULL, acc); } -#if BITLBEE_VERSION_CODE >= BITLBEE_VER(3, 0, 1) +#if BITLBEE_VERSION_CODE > BITLBEE_VER(3, 0, 1) GList *skype_buddy_action_list(bee_user_t *bu) { static GList *ret; @@ -1554,7 +1554,7 @@ void init_plugin(void) ret->chat_with = skype_chat_with; ret->handle_cmp = g_strcasecmp; ret->chat_topic = skype_chat_topic; -#if BITLBEE_VERSION_CODE >= BITLBEE_VER(3, 0, 1) +#if BITLBEE_VERSION_CODE > BITLBEE_VER(3, 0, 1) ret->buddy_action_list = skype_buddy_action_list; ret->buddy_action = skype_buddy_action; #endif |