Merge pull request #4106 from truboxl/patch-2

Add check for libcurl when building for server
This commit is contained in:
Vitalii Koshura 2020-11-21 17:24:35 +01:00 committed by GitHub
commit 8cc31dd587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -451,7 +451,7 @@ AS_IF([test "x${enable_client}" = "xyes" -o "x${enable_server}" = "xyes"],
dnl ---------- libcurl (m4/libcurl.m4) ------------------------------
dnl curl is needed for client
AS_IF([test "x${enable_client}" = "xyes"],
AS_IF([test "x${enable_client}" = "xyes" -o "x${enable_server}" = "xyes"],
[
LIBCURL_CHECK_CONFIG([yes], [7.17.1], [haveCurl=yes], [haveCurl=no])