Changeset 1b221e0


Ignore:
Timestamp:
2009-12-01T21:08:02Z (14 years ago)
Author:
Geert Mulders <g.c.w.m.mulders@…>
Branches:
master
Children:
b4dd253
Parents:
36cf9fd
Message:

Added twitter-module.

Files:
7 added
2 edited

Legend:

Unmodified
Added
Removed
  • configure

    r36cf9fd r1b221e0  
    2626oscar=1
    2727yahoo=1
     28twitter=1
    2829
    2930debug=0
     
    6667--oscar=0/1     Disable/enable Oscar part (ICQ, AIM)    $oscar
    6768--yahoo=0/1     Disable/enable Yahoo part               $yahoo
     69--twitter=0/1 Disable/enable Twitter part               $twitter
    6870
    6971--debug=0/1     Disable/enable debugging                $debug
     
    512514fi
    513515
     516if [ "$twitter" = 0 ]; then
     517        echo '#undef WITH_TWITTER' >> config.h
     518else
     519        echo '#define WITH_TWITTER' >> config.h
     520        protocols=$protocols'twitter '
     521        protoobjs=$protoobjs'twitter_mod.o '
     522fi
     523
    514524if [ "$protocols" = "PROTOCOLS = " ]; then
    515525        echo "Warning: You haven't selected any communication protocol to compile!"
  • protocols/nogaim.c

    r36cf9fd r1b221e0  
    120120        extern void byahoo_initmodule();
    121121        extern void jabber_initmodule();
     122        extern void twitter_initmodule();
    122123
    123124#ifdef WITH_MSN
     
    135136#ifdef WITH_JABBER
    136137        jabber_initmodule();
     138#endif
     139
     140#ifdef WITH_TWITTER
     141        twitter_initmodule();
    137142#endif
    138143
Note: See TracChangeset for help on using the changeset viewer.