-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
library not supporting curl version 8.0.X or higher #84
Comments
Laeri
added a commit
to Laeri/go-curl
that referenced
this issue
Mar 22, 2023
Modify `misc/compatgen.py` to emit compatability also with version `8.0.0` or higher.
msva
pushed a commit
to msva/go-curl
that referenced
this issue
Feb 11, 2024
Modify `misc/compatgen.py` to emit compatability also with version `8.0.0` or higher.
This impacts me as well, and I solved it in a different way: In compat.h, I changed the version TOO low check to:
I'll also comment this on the PR. My fix is not going to be sufficient (likely that LIBCURL_VERSION_MAJOR needs to be added to every line in the file, especially given that compat.h pre-dates curl 8, but I don't want to make changes I can not test) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get following error when trying to compile with the go-curl library:
I have curl version
8.0.1
see output of thecurl --version
The problem seems to be, that the file
compat.h
only supports version with major version7.10
or higher.As for as I have seen the
8.0.0
and8.0.1
release should not break anything present in the7.X+
release as the changelog is rather small. In addition, curl does not follow semver semantics so the upgrade to 8 is not necessarily breaking in this case.I have a change in my fork right now on the
compatgen.py
file which I am testing right now. I had to modify it as rerunning it does not create a correctcompat.h
file as there is a fixed reference within it to curl versions 7.The text was updated successfully, but these errors were encountered: