Changeset 1b221e0
- Timestamp:
- 2009-12-01T21:08:02Z (15 years ago)
- Branches:
- master
- Children:
- b4dd253
- Parents:
- 36cf9fd
- Files:
-
- 7 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r36cf9fd r1b221e0 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 … … 512 514 fi 513 515 516 if [ "$twitter" = 0 ]; then 517 echo '#undef WITH_TWITTER' >> config.h 518 else 519 echo '#define WITH_TWITTER' >> config.h 520 protocols=$protocols'twitter ' 521 protoobjs=$protoobjs'twitter_mod.o ' 522 fi 523 514 524 if [ "$protocols" = "PROTOCOLS = " ]; then 515 525 echo "Warning: You haven't selected any communication protocol to compile!" -
protocols/nogaim.c
r36cf9fd r1b221e0 120 120 extern void byahoo_initmodule(); 121 121 extern void jabber_initmodule(); 122 extern void twitter_initmodule(); 122 123 123 124 #ifdef WITH_MSN … … 135 136 #ifdef WITH_JABBER 136 137 jabber_initmodule(); 138 #endif 139 140 #ifdef WITH_TWITTER 141 twitter_initmodule(); 137 142 #endif 138 143
Note: See TracChangeset
for help on using the changeset viewer.