diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-04-19 22:03:10 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-04-19 22:03:10 +0000 |
commit | 21337f4776d9944f774cef075d90d7d739ed608b (patch) | |
tree | 4d00ea97f79814584ae9878d91f4c914a1cad24c | |
parent | 53a8e5655b02585e3528c4c619315c80adccd4c0 (diff) |
remove the warning for a lacking crypto lib since it migth just be a gnutls
build...
-rw-r--r-- | configure.ac | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index cf6738b4c..81f06059c 100644 --- a/configure.ac +++ b/configure.ac @@ -836,10 +836,7 @@ if test X"$OPT_SSL" != Xno; then ]) - if test X"$HAVECRYPTO" != X"yes"; then - AC_MSG_WARN([crypto lib was not found; SSL will be disabled]) - - else + if test X"$HAVECRYPTO" = X"yes"; then dnl This is only reasonable to do if crypto actually is there: check for dnl SSL libs NOTE: it is important to do this AFTER the crypto lib |