Fabian Sauter

Results 337 comments of Fabian Sauter

Good idea! I Added it to the next major release. In the meantime you can provide hints to `find_package` e.g. via `find_package(cpr REQUIRED HINTS "/usr/local")`

Yes, it's still open. You are more than welcome to work on it. I added the "Hacktoberfest" tag.

1. `confugure_file` good idea 2. Static/Dynamic linking: There is the CMake variable called `BUILD_SHARED_LIBS` which allows you to some extend to decide if cpr links statically or dynamically. Ref: https://github.com/libcpr/cpr?tab=readme-ov-file#build-static-library...

This might be related to https://github.com/libcpr/cpr/pull/1097. Can you please retry with this change.

Do I understand it correctly you are using macOS on powerpc 32bit? So I can setup a VM for debugging.

Interesting... For the CI I can not observe such a change. Here for example old as well as new fedora debug and release test runs with openssl take the same...

Thanks for the update! Regarding the ppc thing: PPC, 32bit and Apple might be a bit too many variables to have to deal with. Do you know any linux distro...

OK, thanks for the pointer. For now I consider it out of scope.

@carlwang99 thanks for reporting. Which curl options do you want to be able to set precisely? There is a workaround for it: https://github.com/libcpr/cpr/issues/1057#issuecomment-2138691120 You can interface with the underlying curl...

@Binary-System thanks for reporting! I can not reproduce this. For me it works perfectly as intended: ```c++ #include #include int main(int /*argc*/, char** /*argv*/) { std::ofstream outFs("my.iso", std::ios::binary); cpr::Response response...