aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-02-17 00:17:04 +0000
committerWilmer van der Gaast <wilmer@gaast.net>2010-02-17 00:17:04 +0000
commit1c2eaa3c99a2e7fbe264b06e559f3d709b9a080d (patch)
treee22895748f1737e065219cc79a28e4a2bcd45c14
parentccba98084344125e0f89331baced2ba6d1802b29 (diff)
Also disable Yahoo! module if SSL support is missing since it also fully
depends on working SSL support.
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 9d92cedf..cac1161e 100755
--- a/configure
+++ b/configure
@@ -359,11 +359,11 @@ elif [ "$ssl" = "bogus" ]; then
echo 'Using bogus SSL code. This means some features will not work properly.'
## Yes, you, at the console! How can you authenticate if you don't have any SSL!?
- if [ "$msn" = "1" ]; then
+ if [ "$msn" = "1" -o "$yahoo" = "1" ]; then
echo
- echo 'Real SSL support is necessary for MSN authentication, will build without'
- echo 'MSN protocol support.'
+ echo 'WARNING: The MSN and Yahoo! modules will not work without SSL. Disabling.'
msn=0
+ yahoo=0
fi
ret=1