Permalink
3 comments
on commit
sign in to comment.
Browse files
p5-text-bibtex: blacklist compilers that don't support C99
Build fix for 10.6 and earlier.
- Loading branch information
This comment has been minimized.
GCC 4 does support C99, though it defaults to C89; if upstream requires C99, they should specify
-std=c99inCFLAGS.This comment has been minimized.
That particular part of C99 has been supported since gcc 3.0. See https://gcc.gnu.org/c99status.html
Also I'm pretty sure every version of clang Apple has ever shipped had almost complete C99 support.
This comment has been minimized.
Ryan's statement is correct. However, it's a bit tricky with perl modules since they ignore CFLAGS and use instead CCFLAGS that's obtained from the perl's Config (i.e. the effective CFLAGS used to build perl itself.) I'll see if I can fix this (properly this time) and file a PR with the module's author.
Thanks to both for keeping me honest.