Update to 1.13

This commit is contained in:
Mathieu Arnold 2006-09-12 13:29:00 +00:00
parent a755774481
commit 1233c00f46
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=172856
4 changed files with 11 additions and 26 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= DBD-SQLite
PORTVERSION= 1.12
PORTVERSION= 1.13
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= DBD

View File

@ -1,3 +1,3 @@
MD5 (DBD-SQLite-1.12.tar.gz) = 40b1d208d70d5d8cab7723df96fc239c
SHA256 (DBD-SQLite-1.12.tar.gz) = 37ad91ec0cec17c07f367b1aa974e3fd2b719e4a1cbb16e06b1799ed112ae2bd
SIZE (DBD-SQLite-1.12.tar.gz) = 547151
MD5 (DBD-SQLite-1.13.tar.gz) = d33e584f435d464a55946f58d4d4b9e2
SHA256 (DBD-SQLite-1.13.tar.gz) = 7298060b241260af0b495840aec358bd27b0b2bf2e0b6bcf1dbc0743229ee412
SIZE (DBD-SQLite-1.13.tar.gz) = 582465

View File

@ -1,6 +1,6 @@
--- Makefile.PL.orig Fri Aug 5 19:15:09 2005
+++ Makefile.PL Wed Apr 12 11:13:37 2006
@@ -65,31 +65,31 @@ if ($force_local = (grep(/USE_LOCAL_SQLI
--- Makefile.PL.orig Fri Sep 8 05:45:13 2006
+++ Makefile.PL Tue Sep 12 13:59:02 2006
@@ -68,31 +68,31 @@
# Now, check for a compatible sqlite3
unless ($force_local) {
@ -39,17 +39,3 @@
last if $version;
}
}
@@ -115,11 +115,11 @@ WriteMakefile(
'OBJECT' => ($force_local) ? '$(O_FILES)' : 'SQLite.o dbdimp.o',
'INC' => '-I. -I$(DBI_INSTARCH_DIR)' .
(($sqlite_inc) ? " -I$sqlite_inc" : ''),
- $force_local ? () : ('LIBS' => '-lsqlite3'),
+ $force_local ? () : ('LIBS' => $sqlite_lib ? "-L$sqlite_lib -lsqlite3" : "-lsqlite3"),
$sqlite_lib ? ('dynamic_lib' => { OTHERLDFLAGS => "-L$sqlite_lib" }) : (),
'OPTIMIZE' => "-O2",
'DEFINE' => "-DNDEBUG=1 -DSQLITE_PTR_SZ=$Config{ptrsize}" .
- ( ($Config{d_usleep} ||
+ ( (1 ||
$Config{osname} =~ m/linux/) ?
" -DHAVE_USLEEP=1" : "" ) .
($DBI::VERSION > 1.42 ? '' : ' -Dno_last_insert_id'),

View File

@ -1,10 +1,9 @@
--- dbdimp.h.orig Sat Sep 11 00:24:28 2004
+++ dbdimp.h Mon Dec 27 16:37:25 2004
@@ -99,6 +99,10 @@
#define newUTF8SVpv newSVpv
--- dbdimp.h.orig Fri Sep 8 06:50:50 2006
+++ dbdimp.h Tue Sep 12 14:00:36 2006
@@ -105,6 +105,9 @@
#define newUTF8SVpvn newSVpvn
#define SvUTF8_on(a) (a)
+#define SvUTF8_off(a) (a)
#define SvUTF8_off(a) (a)
+#ifndef get_sv
+#define get_sv perl_get_sv
+#endif