aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 3 insertions, 14 deletions
diff --git a/configure b/configure
index 7a931112..f5eaa309 100755
--- a/configure
+++ b/configure
@@ -34,7 +34,6 @@ configure_args="$@"
msn="default-on"
jabber="default-on"
oscar="default-on"
-yahoo="default-on"
twitter=1
purple=0
@@ -130,7 +129,6 @@ Option Description Default
--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
---yahoo=0/1 Disable/enable Yahoo part $yahoo
--twitter=0/1 Disable/enable Twitter part $twitter
--purple=0/1 Disable/enable libpurple support $purple
@@ -823,10 +821,9 @@ 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
- #[ "$yahoo" = "default-on" ] && yahoo=0
+ [ "$msn" = "default-on" ] && msn=0
+ [ "$jabber" = "default-on" ] && jabber=0
+ [ "$oscar" = "default-on" ] && oscar=0
#echo '#undef PACKAGE' >> config.h
#echo '#define PACKAGE "BitlBee-LIBPURPLE"' >> config.h
@@ -871,14 +868,6 @@ else
protoobjs=$protoobjs'oscar_mod.o '
fi
-if [ "$yahoo" = 0 ]; then
- echo '#undef WITH_YAHOO' >> config.h
-else
- echo '#define WITH_YAHOO' >> config.h
- protocols=$protocols'yahoo '
- protoobjs=$protoobjs'yahoo_mod.o '
-fi
-
if [ "$twitter" = 0 ]; then
echo '#undef WITH_TWITTER' >> config.h
else