Changeset 123cac7 for configure


Ignore:
Timestamp:
2010-04-07T19:40:39Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
91cec2f
Parents:
3e57660 (diff), 1014cab (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merging Twitter support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r3e57660 r123cac7  
    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
     
    524526fi
    525527
     528if [ "$twitter" = 0 ]; then
     529        echo '#undef WITH_TWITTER' >> config.h
     530else
     531        echo '#define WITH_TWITTER' >> config.h
     532        protocols=$protocols'twitter '
     533        protoobjs=$protoobjs'twitter_mod.o '
     534fi
     535
    526536if [ "$protocols" = "PROTOCOLS = " ]; then
    527537        echo "Warning: You haven't selected any communication protocol to compile!"
Note: See TracChangeset for help on using the changeset viewer.