diff options
author | Catalin Patulea <cat@vv.carleton.ca> | 2014-09-13 07:58:04 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-09-13 14:57:21 +0200 |
commit | 4da70dea283ebffa6127b664c040e51393107554 (patch) | |
tree | 116704fd3f904c7f559d80e57b1b77a213d142b3 /acinclude.m4 | |
parent | 8250f93d413eaff47d8e2ac0284059afa92dcea4 (diff) | |
download | curl-4da70dea283ebffa6127b664c040e51393107554.tar.gz |
configure: allow --with-ca-path with PolarSSL too
Missed this in af45542c.
Signed-off-by: Catalin Patulea <cat@vv.carleton.ca>
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 9fbcf645c..453358dc9 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -2614,8 +2614,8 @@ AC_HELP_STRING([--without-ca-path], [Don't use a default CA path]), capath="no" elif test "x$want_capath" != "xno" -a "x$want_capath" != "xunset"; then dnl --with-ca-path given - if test "x$OPENSSL_ENABLED" != "x1"; then - AC_MSG_ERROR([--with-ca-path only works with openSSL]) + if test "x$OPENSSL_ENABLED" != "x1" -a "x$POLARSSL_ENABLED" != "x1"; then + AC_MSG_ERROR([--with-ca-path only works with openSSL or PolarSSL]) fi capath="$want_capath" ca="no" |