Changeset 17f6079 for configure


Ignore:
Timestamp:
2011-07-24T12:50:21Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
c8b8c83
Parents:
b518cdc
Message:

Small changes to --skype= flag behaviour in configure script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    rb518cdc r17f6079  
    8484--otr=0/1/auto/plugin
    8585                Disable/enable OTR encryption support   $otr
    86 --skype=0/plugin
     86--skype=0/1/plugin
    8787                Disable/enable Skype support            $skype
    8888
     
    112112ipcsocket=`eval echo "$ipcsocket" | sed 's/\/\{1,\}/\//g'`
    113113pcdir=`eval echo "$pcdir" | sed 's/\/\{1,\}/\//g'`
     114
     115protocols_mods=""
    114116
    115117cat<<EOF>Makefile.settings
     
    541543fi
    542544
    543 if [ "$skype" = "1" ]; then
     545if [ "$skype" = "1" -o "$skype" = "plugin" ]; then
    544546        echo 'SKYPE_PI=skype.so' >> Makefile.settings
     547        protocols_mods="$protocol_mods skype(plugin)"
    545548fi
    546549
     
    747750fi
    748751
    749 if [ "$skype" = "1" ]; then
    750         echo '  Skype enabled (as a plugin).'
    751 else
    752         echo '  Skype disabled.'
    753 fi
    754 
    755752if [ -n "$systemdsystemunitdir" ]; then
    756753        echo '  systemd enabled.'
     
    764761
    765762if [ -n "$protocols" ]; then
    766         echo '  Building with these protocols:' $protocols
     763        echo '  Building with these protocols:' $protocols$protocols_mods
    767764        case "$protocols" in
    768765        *purple*)
Note: See TracChangeset for help on using the changeset viewer.