1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00
This commit is contained in:
Adam Kennedy 2009-03-30 21:27:08 +00:00
parent 009ac8094a
commit 9551452076

View file

@ -150,14 +150,14 @@ WriteMakefile(
'DBI' => 1.21,
'Test::More' => '0.42',
},
($ExtUtils::MakeMaker::VERSION ge '6.46'? (
( $ExtUtils::MakeMaker::VERSION ge '6.46'? (
'LICENSE' => 'perl',
'META_MERGE' => {
'configure_requires' => {
DBI => 1.21,
},
},
) : ()),
) : () ),
OBJECT => ( $force_local ? '$(O_FILES)' : 'SQLite.o dbdimp.o' ),
OPTIMIZE => '-O2',
clean => {
@ -167,7 +167,9 @@ WriteMakefile(
EXE_FILES => [],
INC => join( ' ', @CC_INC ),
DEFINE => join( ' ', @CC_DEFINE ),
( @CC_LIBS ? ( LIBS => join( ' ', @CC_LIBS ) ) : () ),
( @CC_LIBS ? (
LIBS => join( ' ', @CC_LIBS )
) : () ),
);
package MY;
@ -175,7 +177,9 @@ package MY;
sub postamble {
require DBI;
require DBI::DBD;
eval { DBI::DBD::dbd_postamble(@_) };
eval {
DBI::DBD::dbd_postamble(@_)
};
}
sub libscan {