update to 3.2.7

This commit is contained in:
jolan 2005-09-27 03:49:35 +00:00
parent ba583f6fae
commit 449ac25a95
3 changed files with 6 additions and 18 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.10 2005/09/17 22:05:39 jolan Exp $
# $OpenBSD: Makefile,v 1.11 2005/09/27 03:49:35 jolan Exp $
COMMENT= "Embedded SQL implementation"
COMMENT-tcl= "TCL bindings for Sqlite3"
V= 3.2.6
V= 3.2.7
PKGNAME= sqlite3-${V}
PKGNAME-tcl= sqlite3-tcl-${V}
DISTNAME= sqlite-${V}

View File

@ -1,4 +1,4 @@
MD5 (sqlite-3.2.6.tar.gz) = f0bf0df075231ff037842b47e6bf0f93
RMD160 (sqlite-3.2.6.tar.gz) = b10432701e7105973a26530853c8e5046ffee1b5
SHA1 (sqlite-3.2.6.tar.gz) = 3e8d0261a6b4b850ca50d7278f84f78741f9d01c
SIZE (sqlite-3.2.6.tar.gz) = 1507554
MD5 (sqlite-3.2.7.tar.gz) = 34c92821b3b46380f192c0aaf2b2b217
RMD160 (sqlite-3.2.7.tar.gz) = e321badace03b7d48112fc9ae1dca8c39c90a3d5
SHA1 (sqlite-3.2.7.tar.gz) = 370095ce08b0f70754e034b2f07915c07f74ac11
SIZE (sqlite-3.2.7.tar.gz) = 1521075

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-src_os_unix_c,v 1.1 2005/09/17 22:05:39 jolan Exp $
--- src/os_unix.c.orig Sat Sep 17 11:34:55 2005
+++ src/os_unix.c Sat Sep 17 15:15:08 2005
@@ -830,7 +830,7 @@ static int full_fsync(int fd, int fullSy
#else
if( dataOnly ){
- rc = fdatasync(fd);
+ rc = fsync(fd);
}else{
rc = fsync(fd);
}