PR25548: CURLOPT_PATH_AS_IS backward compatibility
authorFrank Ch. Eigler <fche@redhat.com>
Thu, 26 Mar 2020 15:12:49 +0000 (11:12 -0400)
committerFrank Ch. Eigler <fche@redhat.com>
Thu, 26 Mar 2020 15:21:23 +0000 (11:21 -0400)
old libcurl lacks the CURL_AT_LEAST_VERSION macro, so use
LIBCURL_VERSION_NUM testing instead.

Signed-off-by: Frank Ch. Eigler <fche@redhat.com>
debuginfod/debuginfod-client.c

index f1b6316..b0d5cb0 100644 (file)
@@ -716,7 +716,7 @@ debuginfod_query_server (debuginfod_client *c,
       curl_easy_setopt(data[i].handle, CURLOPT_FOLLOWLOCATION, (long) 1);
       curl_easy_setopt(data[i].handle, CURLOPT_FAILONERROR, (long) 1);
       curl_easy_setopt(data[i].handle, CURLOPT_NOSIGNAL, (long) 1);
-#if CURL_AT_LEAST_VERSION(7,42,0)
+#if LIBCURL_VERSION_NUM >= 0x072a00 /* 7.42.0 */
       curl_easy_setopt(data[i].handle, CURLOPT_PATH_AS_IS, (long) 1);
 #else
       /* On old curl; no big deal, canonicalization here is almost the