Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r417002e r17f6079  
    3636plugins=1
    3737otr=0
     38skype=0
    3839
    3940events=glib
     
    8384--otr=0/1/auto/plugin
    8485                Disable/enable OTR encryption support   $otr
     86--skype=0/1/plugin
     87                Disable/enable Skype support            $skype
    8588
    8689--events=...    Event handler (glib, libevent)          $events
     
    109112ipcsocket=`eval echo "$ipcsocket" | sed 's/\/\{1,\}/\//g'`
    110113pcdir=`eval echo "$pcdir" | sed 's/\/\{1,\}/\//g'`
     114
     115protocols_mods=""
    111116
    112117cat<<EOF>Makefile.settings
     
    538543fi
    539544
     545if [ "$skype" = "1" -o "$skype" = "plugin" ]; then
     546        echo 'SKYPE_PI=skype.so' >> Makefile.settings
     547        protocols_mods="$protocol_mods skype(plugin)"
     548fi
     549
    540550if [ ! -e doc/user-guide/help.txt ] && ! type xmlto > /dev/null 2> /dev/null; then
    541551        echo
     
    751761
    752762if [ -n "$protocols" ]; then
    753         echo '  Building with these protocols:' $protocols
     763        echo '  Building with these protocols:' $protocols$protocols_mods
    754764        case "$protocols" in
    755765        *purple*)
Note: See TracChangeset for help on using the changeset viewer.