Changeset 123cac7
- Timestamp:
- 2010-04-07T19:40:39Z (15 years ago)
- 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. - Files:
-
- 7 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r3e57660 r123cac7 26 26 oscar=1 27 27 yahoo=1 28 twitter=1 28 29 29 30 debug=0 … … 66 67 --oscar=0/1 Disable/enable Oscar part (ICQ, AIM) $oscar 67 68 --yahoo=0/1 Disable/enable Yahoo part $yahoo 69 --twitter=0/1 Disable/enable Twitter part $twitter 68 70 69 71 --debug=0/1 Disable/enable debugging $debug … … 524 526 fi 525 527 528 if [ "$twitter" = 0 ]; then 529 echo '#undef WITH_TWITTER' >> config.h 530 else 531 echo '#define WITH_TWITTER' >> config.h 532 protocols=$protocols'twitter ' 533 protoobjs=$protoobjs'twitter_mod.o ' 534 fi 535 526 536 if [ "$protocols" = "PROTOCOLS = " ]; then 527 537 echo "Warning: You haven't selected any communication protocol to compile!" -
protocols/nogaim.c
r3e57660 r123cac7 133 133 extern void byahoo_initmodule(); 134 134 extern void jabber_initmodule(); 135 extern void twitter_initmodule(); 135 136 136 137 #ifdef WITH_MSN … … 148 149 #ifdef WITH_JABBER 149 150 jabber_initmodule(); 151 #endif 152 153 #ifdef WITH_TWITTER 154 twitter_initmodule(); 150 155 #endif 151 156
Note: See TracChangeset
for help on using the changeset viewer.