Kartatz
Kartatz
> Note that freebsd is not supported by github actions, we either need a custom cross compiling solution or use cirrus ci Some time ago, I set up a cross-compiler...
The Android NDK can be obtained from https://developer.android.com/ndk/downloads. Just grab the `.zip`/`.dmg` for your platform and unpack the files. The NDK provides a CMake toolchain that can be used for...
Thanks for your findings, @Lefted! After checking the implementation in [QUtil.cc](https://github.com/qpdf/qpdf/blob/c03ee7aa663c4361e23ca32b596adf6e8be0e8ac/libqpdf/QUtil.cc#L544-L554), I noticed that there is a logic that checks whether `fseeko()` exists and then falls back to using `fseek()`...
No worries. Thanks for your continued work on this awesome library!
Hi @jberkenbilt I tried qpdf 12.1.0 today, and it seems that the misdetection is still there: ``` ... -- Performing Test LFS_WITHOUT_MACROS -- Performing Test LFS_WITHOUT_MACROS - Failed -- Performing...
@nuclearpidgeon nice that you figured this out! In my case, I was also using nghttp2 as part of another CMake project, and both indeed have a `config.h` header, which seems...
@lexiforest. Since curl_cffi aims to be API-compatible with the requests library, may I suggest using requests' [requote_uri()](https://github.com/psf/requests/blob/1ae6fc3137a11e11565ed22436aa1e77277ac98c/src%2Frequests%2Futils.py#L633-L682)? It is the standard way the library deals with URL-encoded strings. ```python assert...