We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This runs the preprocessor -E over curl.h to resolve symbols. We extract only option symbols:
-E
curl.h
CFLAGS=$(pkg-config --cflags libcurl) echo '#include <curl/curl.h>' | cc $CFLAGS -std=gnu99 -E -xc - | grep "^[ \t]*CURLOPT_*"
Thereby we do not have to search for curl.h but instead use cflags from pkg-config.
pkg-config
The text was updated successfully, but these errors were encountered:
Done.
Sorry, something went wrong.
No branches or pull requests
This runs the preprocessor
-E
overcurl.h
to resolve symbols. We extract only option symbols:Thereby we do not have to search for
curl.h
but instead use cflags frompkg-config
.The text was updated successfully, but these errors were encountered: