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:
parent
1fca7881d2
commit
de2f662a34
1 changed files with 3 additions and 0 deletions
|
@ -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 ),
|
||||
|
|
Loading…
Add table
Reference in a new issue