1
0
Fork 0
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:
Kenichi Ishigaki 2013-10-09 17:06:20 +09:00
parent 55b13e47ad
commit aa5ec5f585

View file

@ -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';
}