Navigation Menu

Skip to content

Commit

Permalink
configure: allow --with-ca-path with PolarSSL too
Browse files Browse the repository at this point in the history
Missed this in af45542.

Signed-off-by: Catalin Patulea <cat@vv.carleton.ca>
  • Loading branch information
cpatulea authored and bagder committed Sep 13, 2014
1 parent 8250f93 commit 4da70de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acinclude.m4
Expand Up @@ -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"
Expand Down

0 comments on commit 4da70de

Please sign in to comment.