aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2018-01-10 00:05:23 -0300
committerdequis <dx@dxzone.com.ar>2018-01-10 00:05:23 -0300
commit7ec2ce8fd7d30a536823ef9e08a3dad80ce76d4e (patch)
tree15f0ad9918bd45898308683f6c549af5fa8e79f4 /configure
parent4a9c6b0b15eb3738897dc1635fda2e4be67414ad (diff)
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.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 0 insertions, 11 deletions
diff --git a/configure b/configure
index e2357815..3f1769df 100755
--- a/configure
+++ b/configure
@@ -32,7 +32,6 @@ configure_args="$@"
# If the user sets one of these to 1, purple won't disable them.
# Otherwise, if it's still default-on, it gets included in normal builds,
# but not purple ones.
-msn="default-on"
jabber="default-on"
oscar="default-on"
@@ -129,7 +128,6 @@ Option Description Default
--verbose=0/1 Disable/enable verbose build $verbose
---msn=0/1 Disable/enable MSN part $msn
--jabber=0/1 Disable/enable Jabber part $jabber
--oscar=0/1 Disable/enable Oscar part (ICQ, AIM) $oscar
--twitter=0/1 Disable/enable Twitter part $twitter
@@ -845,7 +843,6 @@ EOF
protoobjs=$protoobjs'purple_mod.o '
# only disable these if the user didn't enable them explicitly
- [ "$msn" = "default-on" ] && msn=0
[ "$jabber" = "default-on" ] && jabber=0
[ "$oscar" = "default-on" ] && oscar=0
@@ -868,14 +865,6 @@ case "$CC" in
done
esac
-if [ "$msn" = 0 ]; then
- echo '#undef WITH_MSN' >> config.h
-else
- echo '#define WITH_MSN' >> config.h
- protocols=$protocols'msn '
- protoobjs=$protoobjs'msn_mod.o '
-fi
-
if [ "$jabber" = 0 ]; then
echo '#undef WITH_JABBER' >> config.h
else