From a77a4a33c251a5abbcdbee3cf2ada6373dc072ea Mon Sep 17 00:00:00 2001 From: Thorsten Klein Date: Tue, 12 Sep 2023 12:37:08 +0200 Subject: [PATCH] cmake: set SIZEOF_LONG_LONG in curl_config.h in order to support 32bit builds regarding wolfssl CTC_SETTINGS Closes #11839 --- 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 8e76b00070..65901a2b1d 100644 --- a/lib/curl_config.h.cmake +++ b/lib/curl_config.h.cmake @@ -649,6 +649,9 @@ ${SIZEOF_INT_CODE} /* The size of `long', as computed by sizeof. */ ${SIZEOF_LONG_CODE} +/* The size of `long long', as computed by sizeof. */ +${SIZEOF_LONG_LONG_CODE} + /* The size of `off_t', as computed by sizeof. */ ${SIZEOF_OFF_T_CODE} -- 2.47.3