1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

DBD-SQLite: added -DSQLITE_OMIT_LOAD_EXTENSION for older HP-UX

This commit is contained in:
Kenichi Ishigaki 2009-04-14 10:26:27 +00:00
parent 1fca7881d2
commit de2f662a34

View file

@ -182,6 +182,9 @@ if ( $Config{d_usleep} || $Config{osname} =~ m/linux/ ) {
unless ( $Config{usethreads} ) {
push @CC_DEFINE, '-DTHREADSAFE=0';
}
if ($^O eq 'hpux' and $Config{osvers} <= 10.20) {
push @CC_DEFINE, '-DSQLITE_OMIT_LOAD_EXTENSION';
}
my @CC_OPTIONS = (
INC => join( ' ', @CC_INC ),