From 2af9a36c9267f011cdc24486dbf26c7f6bd9e7c9 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 17 Dec 2016 11:27:19 -0800 Subject: [PATCH] configure: check curl only if building client --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 08d28e53bd..cc2617eafb 100644 --- a/configure.ac +++ b/configure.ac @@ -445,9 +445,9 @@ then fi dnl ---------- libcurl (m4/libcurl.m4) ------------------------------ -dnl curl is needed for client and server +dnl curl is needed for client -if [[ "x${enable_client}" = "xyes" -o "x${enable_server}" = "xyes" ]] +if [[ "x${enable_client}" = "xyes" ]] then LIBCURL_CHECK_CONFIG([yes], [7.17.1], [haveCurl=yes], [haveCurl=no])