Changeset a7baf40


Ignore:
Timestamp:
2016-11-19T07:59:14Z (7 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
66b7741
Parents:
b4f496e
Message:

Remove yahoo (the old protocol). Use funyahoo++ instead.

RIP

The previous commit already handled the part of telling users.

Files:
12 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • configure

    rb4f496e ra7baf40  
    3535jabber="default-on"
    3636oscar="default-on"
    37 yahoo="default-on"
    3837
    3938twitter=1
     
    130129--jabber=0/1    Disable/enable Jabber part              $jabber
    131130--oscar=0/1     Disable/enable Oscar part (ICQ, AIM)    $oscar
    132 --yahoo=0/1     Disable/enable Yahoo part               $yahoo
    133131--twitter=0/1   Disable/enable Twitter part             $twitter
    134132
     
    817815        [ "$jabber" = "default-on" ] && jabber=0
    818816        [ "$oscar" = "default-on" ] && oscar=0
    819         [ "$yahoo" = "default-on" ] && yahoo=0
    820817
    821818        echo '#undef PACKAGE' >> config.h
     
    860857        protocols=$protocols'oscar '
    861858        protoobjs=$protoobjs'oscar_mod.o '
    862 fi
    863 
    864 if [ "$yahoo" = 0 ]; then
    865         echo '#undef WITH_YAHOO' >> config.h
    866 else
    867         echo '#define WITH_YAHOO' >> config.h
    868         protocols=$protocols'yahoo '
    869         protoobjs=$protoobjs'yahoo_mod.o '
    870859fi
    871860
  • doc/user-guide/commands.xml

    rb4f496e ra7baf40  
    104104                        </bitlbee-command>
    105105
    106                         <bitlbee-command name="yahoo">
    107                                 <syntax>account add yahoo &lt;handle&gt; [&lt;password&gt;]</syntax>
    108 
    109                                 <description>
    110                                         <para>
    111                                                 For Yahoo! connections there are no special arguments.
    112                                         </para>
    113                                 </description>
    114                         </bitlbee-command>
    115 
    116106                </bitlbee-command>
    117107
  • protocols/nogaim.c

    rb4f496e ra7baf40  
    247247        extern void msn_initmodule();
    248248        extern void oscar_initmodule();
    249         extern void byahoo_initmodule();
    250249        extern void jabber_initmodule();
    251250        extern void twitter_initmodule();
     
    261260#ifdef WITH_OSCAR
    262261        oscar_initmodule();
    263 #endif
    264 
    265 #ifdef WITH_YAHOO
    266         byahoo_initmodule();
    267262#endif
    268263
Note: See TracChangeset for help on using the changeset viewer.