Permalink
Browse files
p5-text-bibtex: remove blacklisting and add -std=c99 to compile flags
This is a better build fix for 10.6 and earlier. In particular, gcc-4.2 does, in fact, support C99 but not by default as newer compilers do. Thanks to @ryandesign and @jmroot for clarifying the issue.
- Loading branch information
Showing
with
21 additions
and 8 deletions.
| @@ -0,0 +1,11 @@ | ||
| --- inc/MyBuilder.pm.orig 2019-04-03 15:32:39.000000000 -0700 | ||
| +++ inc/MyBuilder.pm 2019-04-03 15:36:49.000000000 -0700 | ||
| @@ -17,7 +17,7 @@ | ||
| use File::Path qw.mkpath.; | ||
| use Cwd 'abs_path'; | ||
|
|
||
| -my @EXTRA_FLAGS = (); | ||
| +my @EXTRA_FLAGS = ("-std=c99"); | ||
| my @BINARIES = qw(biblex bibparse dumpnames); | ||
|
|
||
| ## debug |