-
Notifications
You must be signed in to change notification settings - Fork 100
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
xmlSecNssGetInternalKeySlot function arguments missing #627
Comments
Thanks, I wonder why macosx build in github actions didn't catch it. |
This warning (which you turn into an error) is new in clang 15. Xcode 14.3 is the first version whose clang is based on clang 15. Xcode 14.3 requires macOS 13 or later. Your GitHub Actions configuration file uses macOS 12. GitHub Actions does not have a macOS 13 runner yet; see actions/runner-images#6426. |
thanks for looking into it! I will switch to the mac-13 as soon as it is available! |
FYI it's available now. |
Thanks, PR #651 |
Building xmlsec 1.3.0 with clang 15 fails:
The problem is that you haven't declared
xmlSecNssGetInternalKeySlot
's arguments:xmlsec/src/nss/crypto.c
Lines 414 to 415 in 7296990
If this is to be a function that takes no arguments, you must declare it as such:
This was reported to MacPorts here: https://trac.macports.org/ticket/67227
The text was updated successfully, but these errors were encountered: