dajobe / raptor

Redland Raptor RDF syntax library
https://librdf.org/raptor/
Other
156 stars 62 forks source link

configure.ac: fix -Wimplicit-function-declaration in HAVE___FUNCTION_… #55

Closed thesamesam closed 1 year ago

thesamesam commented 1 year ago

…_ test

This breaks with Clang 16 which makes such errors fatal:

error: call to undeclared library function 'printf' with type 'int (const char *, ...)'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration]
error: call to undeclared library function 'printf' with type 'int (const char *, ...)'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration]

Signed-off-by: Sam James sam@gentoo.org

thesamesam commented 1 year ago

Thanks!