diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-02-17 00:17:04 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-02-17 00:17:04 +0000 |
commit | 1c2eaa3c99a2e7fbe264b06e559f3d709b9a080d (patch) | |
tree | e22895748f1737e065219cc79a28e4a2bcd45c14 /configure | |
parent | ccba98084344125e0f89331baced2ba6d1802b29 (diff) |
Also disable Yahoo! module if SSL support is missing since it also fully
depends on working SSL support.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |