Changeset 1aacc0c0


Ignore:
Timestamp:
2010-04-19T22:25:33Z (14 years ago)
Author:
Miklos Vajna <vmiklos@…>
Branches:
master
Children:
0d7bd89
Parents:
7cf146f
Message:

update for 1.2.6

also a bit of cleanup. you can still build for 1.2.5 using

'-DBITLBEE_VER(a,b,c)'='(((a) << 16) + ((b) << 8) + (c))'

if you really want, though.

Location:
skype
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • skype/Makefile

    r7cf146f r1aacc0c0  
    44DATE := $(shell date +%Y-%m-%d)
    55# latest stable
    6 BITLBEE_VERSION = 1.2.5
     6BITLBEE_VERSION = 1.2.6
    77
    88AMPATH = $(shell grep automake- $(shell which automake)|sed "s|.*'\(.*\)';|\1|")
  • skype/skype.c

    r7cf146f r1aacc0c0  
    769769        if (!strcmp(info, "STATUS MULTI_SUBSCRIBED")) {
    770770                gc = imcb_chat_new(ic, id);
    771 #ifdef BITLBEE_VERSION_CODE
    772771#if BITLBEE_VERSION_CODE >= BITLBEE_VER(1, 2, 6)
    773772                imcb_chat_name_hint(gc, id);
    774 #endif
    775773#endif
    776774                skype_printf(ic, "GET CHAT %s ADDER\n", id);
     
    778776        } else if (!strcmp(info, "STATUS DIALOG") && sd->groupchat_with) {
    779777                gc = imcb_chat_new(ic, id);
    780 #ifdef BITLBEE_VERSION_CODE
    781778#if BITLBEE_VERSION_CODE >= BITLBEE_VER(1, 2, 6)
    782779                imcb_chat_name_hint(gc, id);
    783 #endif
    784780#endif
    785781                /* According to the docs this
Note: See TracChangeset for help on using the changeset viewer.