mirror of
https://github.com/curl/curl.git
synced 2026-07-15 22:47:17 +03:00
configure: allow --with-ca-path with PolarSSL too
Missed this in af45542c.
Signed-off-by: Catalin Patulea <cat@vv.carleton.ca>
This commit is contained in:
parent
8250f93d41
commit
4da70dea28
1 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue