One more attempt to fix the logical or problem

This commit is contained in:
Eric J Korpela 2015-01-19 14:49:36 -08:00
parent d805bfe2a3
commit 716e851d2a
1 changed files with 2 additions and 2 deletions

View File

@ -465,9 +465,9 @@ ERROR: could not find (recent enough) development-libs for libcurl.
fi
dnl ---------- SSL (m4/check_ssl.m4)
if [["${enable_client}" = yes -o "${enable_server}" = yes]]; then
if test "x${enable_client}" = xyes || test "x${enable_server}" = xyes]; then
CHECK_SSL
if test "${found_ssl}" = "yes"; then
if test "x${found_ssl}" = "xyes"; then
BOINC_EXTRA_LIBS="${BOINC_EXTRA_LIBS} ${SSL_LIBS}"
fi
fi