mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
define SQLITE_TEMP_STORE=2 for cygwin to resolve RT #89351
See also the following for details and patches: - http://sqlite.1065341.n5.nabble.com/Bug-in-Cygwin-SQLite-temporary-table-creation-fails-tp66277p66295.html
This commit is contained in:
parent
55b13e47ad
commit
aa5ec5f585
1 changed files with 3 additions and 0 deletions
|
@ -223,6 +223,9 @@ my @CC_DEFINE = (
|
|||
'-DSQLITE_ENABLE_STAT3',
|
||||
'-DNDEBUG=1',
|
||||
);
|
||||
if ( $^O eq 'cygwin') {
|
||||
push @CC_DEFINE, '-DSQLITE_TEMP_STORE=2';
|
||||
}
|
||||
if ( $Config{d_usleep} || $Config{osname} =~ m/linux/ ) {
|
||||
push @CC_DEFINE, '-DHAVE_USLEEP=1';
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue