Changeset 7ec2ce8 for configure


Ignore:
Timestamp:
2018-01-10T03:05:23Z (6 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
d168091
Parents:
4a9c6b0
Message:

Remove MSN. Use the skypeweb purple plugin instead.

RIP

As per http://ismsndeadyet.com/ all versions up to MSNP22 died a few
months ago. We had a MSNP21 implementation, bought us two extra years.

Implementing MSNP24 is technically possible but also pointless given
skypeweb, and the authentication requires some fairly messed up crypto
and legacy old-skype-protocol servers. For a long time I tried to
reverse a potentially simpler method, and got fairly close, but never
completed that. I haven't done any attempts to continue it in the last
year, so I'm fine with giving up at this point.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r4a9c6b0 r7ec2ce8  
    3333# Otherwise, if it's still default-on, it gets included in normal builds,
    3434# but not purple ones.
    35 msn="default-on"
    3635jabber="default-on"
    3736oscar="default-on"
     
    130129--verbose=0/1   Disable/enable verbose build            $verbose
    131130
    132 --msn=0/1       Disable/enable MSN part                 $msn
    133131--jabber=0/1    Disable/enable Jabber part              $jabber
    134132--oscar=0/1     Disable/enable Oscar part (ICQ, AIM)    $oscar
     
    846844
    847845        # only disable these if the user didn't enable them explicitly
    848         [ "$msn" = "default-on" ] && msn=0
    849846        [ "$jabber" = "default-on" ] && jabber=0
    850847        [ "$oscar" = "default-on" ] && oscar=0
     
    868865        done
    869866esac
    870 
    871 if [ "$msn" = 0 ]; then
    872         echo '#undef WITH_MSN' >> config.h
    873 else
    874         echo '#define WITH_MSN' >> config.h
    875         protocols=$protocols'msn '
    876         protoobjs=$protoobjs'msn_mod.o '
    877 fi
    878867
    879868if [ "$jabber" = 0 ]; then
Note: See TracChangeset for help on using the changeset viewer.