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

license and configure_requires in Makefile.PL and META.yml

This commit is contained in:
Alexandr Ciornii 2009-02-03 20:18:40 +00:00
parent 581b3d9391
commit b16ba2bf88
3 changed files with 25 additions and 12 deletions

View file

@ -4,6 +4,7 @@ Revision history for Perl extension DBD::SQLite.
- Updated to SQLite 3.6.10, and bumped up the version
requirement for installed sqlite3 to 3.6.0 as 3.6.x
has backward incompatiblity (ISHIGAKI)
- license and configure_requires in Makefile.PL and META.yml (Alexandr Ciornii)
1.14
- Updated to SQLite 3.4.2

View file

@ -1,11 +1,20 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: DBD-SQLite
version: 1.14
version_from: lib/DBD/SQLite.pm
installdirs: site
requires:
DBI: 1.21
distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.17
--- #YAML:1.0
name: DBD-SQLite
version: 1.15
abstract: ~
author: []
license: perl
distribution_type: module
configure_requires:
DBI: 1.21
ExtUtils::MakeMaker: 0
requires:
DBI: 1.21
no_index:
directory:
- t
- inc
generated_by: ExtUtils::MakeMaker version 6.48
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4

View file

@ -144,7 +144,10 @@ unless ( $Config{usethreads} ) {
WriteMakefile(
NAME => 'DBD::SQLite',
VERSION_FROM => 'lib/DBD/SQLite.pm',
PREREQ_PM => { DBI => 1.21 },
PREREQ_PM => { DBI => 1.21, },
($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 => { FILES => 'SQLite.xsi config.h tv.log output' },