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

apparently openbsd doesn't like the previous _XOPEN_SOURCE hack (cpantesters++)

This commit is contained in:
Kenichi Ishigaki 2013-05-31 11:43:04 +09:00
parent 05052fe40c
commit 9b5dfb52e7

View file

@ -248,7 +248,7 @@ if ($^O eq 'darwin') {
if ($^O eq 'aix') {
push @CC_DEFINE, '-DSQLITE_DISABLE_DIRSYNC';
}
if ($^O =~ /bsd/i) {
if ($^O =~ /bsd/i && $^O ne 'openbsd') {
push @CC_DEFINE, '-D_XOPEN_SOURCE';
}