mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
Clean up
This commit is contained in:
parent
19672c1627
commit
9763807fcd
1 changed files with 54 additions and 31 deletions
79
Makefile.PL
79
Makefile.PL
|
@ -1,14 +1,7 @@
|
||||||
use ExtUtils::MakeMaker;
|
|
||||||
eval {
|
|
||||||
require DBI;
|
|
||||||
require DBI::DBD;
|
|
||||||
unless ( $DBI::VERSION >= 1.21 ) {
|
|
||||||
die "Your DBI Version is too old - DBD::SQLite requires at least 1.21";
|
|
||||||
}
|
|
||||||
};
|
|
||||||
warn $@ if $@;
|
|
||||||
use Config;
|
|
||||||
use strict;
|
use strict;
|
||||||
|
use ExtUtils::MakeMaker;
|
||||||
|
use Config;
|
||||||
|
|
||||||
eval {
|
eval {
|
||||||
require DBD::SQLite;
|
require DBD::SQLite;
|
||||||
if ( $DBD::SQLite::VERSION < 1.0 ) {
|
if ( $DBD::SQLite::VERSION < 1.0 ) {
|
||||||
|
@ -109,27 +102,57 @@ unless ($force_local) {
|
||||||
|
|
||||||
@ARGV = grep( ! /SQLITE_LOCATION|USE_LOCAL_SQLITE/, @ARGV );
|
@ARGV = grep( ! /SQLITE_LOCATION|USE_LOCAL_SQLITE/, @ARGV );
|
||||||
|
|
||||||
my $nlid = $DBI::VERSION > 1.42 ? '' : '-Dno_last_insert_id';
|
|
||||||
|
|
||||||
my $libs = '';
|
|
||||||
$libs .= "-L$sqlite_lib " if $sqlite_lib;
|
|
||||||
$libs .= "-lsqlite3 " unless $force_local;
|
|
||||||
|
#####################################################################
|
||||||
|
# Prepare Compiler Options
|
||||||
|
|
||||||
|
my @CC_LIBS = ();
|
||||||
|
if ( $sqlite_lib ) {
|
||||||
|
push @CC_LIBS, "-L$sqlite_lib";
|
||||||
|
}
|
||||||
|
unless ( $force_local ) {
|
||||||
|
push @CC_LIBS, '-lsqlite3';
|
||||||
|
}
|
||||||
|
|
||||||
|
my @CC_INC = (
|
||||||
|
'-I.',
|
||||||
|
'-I$(DBI_INSTARCH_DIR)',
|
||||||
|
);
|
||||||
|
if ( $sqlite_inc ) {
|
||||||
|
push @INC, "-I$sqlite_inc";
|
||||||
|
}
|
||||||
|
|
||||||
|
my @CC_DEFINE = (
|
||||||
|
'-DSQLITE_CORE',
|
||||||
|
'-DSQLITE_ENABLE_FTS2',
|
||||||
|
'-DNDEBUG=1',
|
||||||
|
"-DSQLITE_PTR_SZ=$Config{ptrsize}"
|
||||||
|
);
|
||||||
|
if ( $Config{d_usleep} || $Config{osname} =~ m/linux/ ) {
|
||||||
|
push @CC_DEFINE, '-DHAVE_USLEEP=1';
|
||||||
|
}
|
||||||
|
if ( $DBI::VERSION <= 1.42 ) {
|
||||||
|
push @CC_DEFINE, '-Dno_last_insert_id';
|
||||||
|
}
|
||||||
|
unless ( $Config{usethreads} ) {
|
||||||
|
push @CC_DEFINE, '-DTHREADSAFE=0';
|
||||||
|
}
|
||||||
|
|
||||||
WriteMakefile(
|
WriteMakefile(
|
||||||
'NAME' => 'DBD::SQLite',
|
NAME => 'DBD::SQLite',
|
||||||
'VERSION_FROM' => 'lib/DBD/SQLite.pm',
|
VERSION_FROM => 'lib/DBD/SQLite.pm',
|
||||||
'PREREQ_PM' => { DBI => 1.21 },
|
PREREQ_PM => { DBI => 1.21 },
|
||||||
'OBJECT' => ( $force_local ? '$(O_FILES)' : 'SQLite.o dbdimp.o' ),
|
OBJECT => ( $force_local ? '$(O_FILES)' : 'SQLite.o dbdimp.o' ),
|
||||||
$libs ? ('LIBS' => $libs) : (),
|
OPTIMIZE => '-O2',
|
||||||
'OPTIMIZE' => "-O2",
|
clean => { FILES => 'SQLite.xsi config.h tv.log output' },
|
||||||
'clean' => { FILES => 'SQLite.xsi config.h tv.log output' },
|
PL_FILES => {},
|
||||||
'PL_FILES' => {},
|
EXE_FILES => [],
|
||||||
'EXE_FILES' => [],
|
INC => join( ' ', @CC_INC ),
|
||||||
'INC' => '-I. -I$(DBI_INSTARCH_DIR)' . ($sqlite_inc ? " -I$sqlite_inc" : ''),
|
DEFINE => join( ' ', @CC_DEFINE ),
|
||||||
'DEFINE' => "-DSQLITE_CORE -DSQLITE_ENABLE_FTS2 -DNDEBUG=1 -DSQLITE_PTR_SZ=$Config{ptrsize}" .
|
( @CC_LIBS ? join( ' ', @CC_LIBS ) : () ),
|
||||||
(($Config{d_usleep} || $Config{osname} =~ m/linux/) ? " -DHAVE_USLEEP=1" : "" ) .
|
|
||||||
($DBI::VERSION > 1.42 ? '' : ' -Dno_last_insert_id') .
|
|
||||||
($Config{usethreads} ? '' : ' -DTHREADSAFE=0'),
|
|
||||||
);
|
);
|
||||||
|
|
||||||
package MY;
|
package MY;
|
||||||
|
|
Loading…
Add table
Reference in a new issue