mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 22:28:47 -04:00
apparently openbsd doesn't like the previous _XOPEN_SOURCE hack (cpantesters++)
This commit is contained in:
parent
05052fe40c
commit
9b5dfb52e7
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ if ($^O eq 'darwin') {
|
||||||
if ($^O eq 'aix') {
|
if ($^O eq 'aix') {
|
||||||
push @CC_DEFINE, '-DSQLITE_DISABLE_DIRSYNC';
|
push @CC_DEFINE, '-DSQLITE_DISABLE_DIRSYNC';
|
||||||
}
|
}
|
||||||
if ($^O =~ /bsd/i) {
|
if ($^O =~ /bsd/i && $^O ne 'openbsd') {
|
||||||
push @CC_DEFINE, '-D_XOPEN_SOURCE';
|
push @CC_DEFINE, '-D_XOPEN_SOURCE';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue