Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    ra7baf40 r9ae8f82  
    3535jabber="default-on"
    3636oscar="default-on"
     37yahoo="default-on"
    3738
    3839twitter=1
     
    129130--jabber=0/1    Disable/enable Jabber part              $jabber
    130131--oscar=0/1     Disable/enable Oscar part (ICQ, AIM)    $oscar
     132--yahoo=0/1     Disable/enable Yahoo part               $yahoo
    131133--twitter=0/1   Disable/enable Twitter part             $twitter
    132134
     
    815817        [ "$jabber" = "default-on" ] && jabber=0
    816818        [ "$oscar" = "default-on" ] && oscar=0
     819        [ "$yahoo" = "default-on" ] && yahoo=0
    817820
    818821        echo '#undef PACKAGE' >> config.h
     
    857860        protocols=$protocols'oscar '
    858861        protoobjs=$protoobjs'oscar_mod.o '
     862fi
     863
     864if [ "$yahoo" = 0 ]; then
     865        echo '#undef WITH_YAHOO' >> config.h
     866else
     867        echo '#define WITH_YAHOO' >> config.h
     868        protocols=$protocols'yahoo '
     869        protoobjs=$protoobjs'yahoo_mod.o '
    859870fi
    860871
Note: See TracChangeset for help on using the changeset viewer.