Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r6a72a57 re248c7f  
    2626oscar=1
    2727yahoo=1
     28purple=0
    2829
    2930debug=0
     
    6667--oscar=0/1     Disable/enable Oscar part (ICQ, AIM)    $oscar
    6768--yahoo=0/1     Disable/enable Yahoo part               $yahoo
     69
     70--purple=0/1    Disable/enable libpurple support        $purple
    6871
    6972--debug=0/1     Disable/enable debugging                $debug
     
    447450protoobjs=''
    448451
     452if [ "$purple" = 0 ]; then
     453        echo '#undef WITH_PURPLE' >> config.h
     454else
     455        echo '#define WITH_PURPLE' >> config.h
     456        echo 'EFLAGS += $$(pkg-config purple --libs)' >> Makefile.settings
     457        protocols=$protocols'purple '
     458        protoobjs=$protoobjs'purple_mod.o '
     459
     460        # Having both libpurple and native IM modules in one binary may
     461        # do strange things. Let's not do that.
     462        msn=0
     463        jabber=0
     464        oscar=0
     465        yahoo=0
     466fi
     467
    449468if [ "$msn" = 0 ]; then
    450469        echo '#undef WITH_MSN' >> config.h
Note: See TracChangeset for help on using the changeset viewer.