Changeset a7baf40
- Timestamp:
- 2016-11-19T07:59:14Z (8 years ago)
- Branches:
- master
- Children:
- 66b7741
- Parents:
- b4f496e
- Files:
-
- 12 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rb4f496e ra7baf40 35 35 jabber="default-on" 36 36 oscar="default-on" 37 yahoo="default-on"38 37 39 38 twitter=1 … … 130 129 --jabber=0/1 Disable/enable Jabber part $jabber 131 130 --oscar=0/1 Disable/enable Oscar part (ICQ, AIM) $oscar 132 --yahoo=0/1 Disable/enable Yahoo part $yahoo133 131 --twitter=0/1 Disable/enable Twitter part $twitter 134 132 … … 817 815 [ "$jabber" = "default-on" ] && jabber=0 818 816 [ "$oscar" = "default-on" ] && oscar=0 819 [ "$yahoo" = "default-on" ] && yahoo=0820 817 821 818 echo '#undef PACKAGE' >> config.h … … 860 857 protocols=$protocols'oscar ' 861 858 protoobjs=$protoobjs'oscar_mod.o ' 862 fi863 864 if [ "$yahoo" = 0 ]; then865 echo '#undef WITH_YAHOO' >> config.h866 else867 echo '#define WITH_YAHOO' >> config.h868 protocols=$protocols'yahoo '869 protoobjs=$protoobjs'yahoo_mod.o '870 859 fi 871 860 -
doc/user-guide/commands.xml
rb4f496e ra7baf40 104 104 </bitlbee-command> 105 105 106 <bitlbee-command name="yahoo">107 <syntax>account add yahoo <handle> [<password>]</syntax>108 109 <description>110 <para>111 For Yahoo! connections there are no special arguments.112 </para>113 </description>114 </bitlbee-command>115 116 106 </bitlbee-command> 117 107 -
protocols/nogaim.c
rb4f496e ra7baf40 247 247 extern void msn_initmodule(); 248 248 extern void oscar_initmodule(); 249 extern void byahoo_initmodule();250 249 extern void jabber_initmodule(); 251 250 extern void twitter_initmodule(); … … 261 260 #ifdef WITH_OSCAR 262 261 oscar_initmodule(); 263 #endif264 265 #ifdef WITH_YAHOO266 byahoo_initmodule();267 262 #endif 268 263
Note: See TracChangeset
for help on using the changeset viewer.