From 6eb9e65781fa1fd8a0bcfe0715187a3a35f09ae4 Mon Sep 17 00:00:00 2001 From: Tal Regev Date: Sun, 14 Apr 2024 05:37:18 +0300 Subject: [PATCH] cmake: forward `USE_LIBRTMP` option to C Define in C `USE_LIBRTMP` if user requested it from cmake. Closes #13364 --- lib/curl_config.h.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/curl_config.h.cmake b/lib/curl_config.h.cmake index f624da5f82..f3904d2675 100644 --- a/lib/curl_config.h.cmake +++ b/lib/curl_config.h.cmake @@ -710,6 +710,9 @@ ${SIZEOF_TIME_T_CODE} /* if OpenSSL is in use */ #cmakedefine USE_OPENSSL 1 +/* if librtmp/rtmpdump is in use */ +#cmakedefine USE_LIBRTMP 1 + /* Define to 1 if you don't want the OpenSSL configuration to be loaded automatically */ #cmakedefine CURL_DISABLE_OPENSSL_AUTO_LOAD_CONFIG 1 -- 2.47.3