Summary: | Make scandir check more reliable. | ||
---|---|---|---|
Product: | fontconfig | Reporter: | Krzesimir Nowak <qdlacz> |
Component: | library | Assignee: | Akira TAGOH <akira> |
Status: | RESOLVED FIXED | QA Contact: | Behdad Esfahbod <freedesktop> |
Severity: | normal | ||
Priority: | medium | CC: | akira, fontconfig-bugs, freedesktop |
Version: | unspecified | ||
Hardware: | Other | ||
OS: | All | ||
Whiteboard: | |||
i915 platform: | i915 features: | ||
Attachments: | Avoid warnings about unused parameter in scandir checks. |
Ugh. We shouldn't have -Werror to begin with. Well, -Werror was required to check if posix_fadvise() is exactly available on the system. see Bug#52573 for more details. so I can't get rid of it unless we have any better idea for that issue. that said we can just turn it off for scandir testing. Hmm, it may be also required to check scandir for NetBSD which has taken the callback function with different arguments. Okay, fixed in git with the different way. that should works. |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.
Created attachment 89339 [details] Avoid warnings about unused parameter in scandir checks. The scandir checks can fail because "comp" function inside the checks have some unused parameters. Normally the gcc does not warn (and errs because of -Werror here), but I had -Wall in CFLAGS and the checks failed. Attached patch should fix the issue.