1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

solaris gcc may require -std=gnu99

This commit is contained in:
Kenichi Ishigaki 2014-03-26 03:39:30 +09:00
parent 66083b879c
commit aea147ed00

View file

@ -308,7 +308,7 @@ WriteMakefile(
# this change broke a test under some environment, and thus, may
# break other applications eventually. I'm not sure if this is
# worth the trouble.
OPTIMIZE => $Config{optimize} . (($^O eq 'solaris' and !$Config{gccversion}) ? "" : " -O2"),
OPTIMIZE => $Config{optimize} . (($^O eq 'solaris' and !$Config{gccversion}) ? "" : " -O2 -std=gnu99"),
OPTIONAL( '6.48',
MIN_PERL_VERSION => '5.006',
),