diff options
author | Markus Duft <mduft@gentoo.org> | 2011-07-15 14:04:41 +0000 |
---|---|---|
committer | Markus Duft <mduft@gentoo.org> | 2011-07-15 14:04:41 +0000 |
commit | fde644b0cc0c66d15eacddd4930d02eaefb35253 (patch) | |
tree | 1a7fd495bcc4d150cde20b1be7adfa031677c600 /dev-db/sqlite/files | |
parent | Marked ~ppc wrt #371833 (diff) | |
download | gentoo-2-fde644b0cc0c66d15eacddd4930d02eaefb35253.tar.gz gentoo-2-fde644b0cc0c66d15eacddd4930d02eaefb35253.tar.bz2 gentoo-2-fde644b0cc0c66d15eacddd4930d02eaefb35253.zip |
added interix patch which does not have ESTALE. reported and accepted (in vcs) upstream.
(Portage version: 2.1.10.3/cvs/Linux i686)
Diffstat (limited to 'dev-db/sqlite/files')
-rw-r--r-- | dev-db/sqlite/files/sqlite-3.7.7.1-interix-amalgamation.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-db/sqlite/files/sqlite-3.7.7.1-interix-amalgamation.patch b/dev-db/sqlite/files/sqlite-3.7.7.1-interix-amalgamation.patch new file mode 100644 index 000000000000..7f90fd6591c8 --- /dev/null +++ b/dev-db/sqlite/files/sqlite-3.7.7.1-interix-amalgamation.patch @@ -0,0 +1,16 @@ +reported and accepted upstream: http://sqlite.org:8080/cgi-bin/mailman/private/sqlite-dev/2011-July/001281.html +(archives are private ... :( ) + +diff -ru sqlite-autoconf-3070701.orig/sqlite3.c sqlite-autoconf-3070701/sqlite3.c +--- sqlite-autoconf-3070701.orig/sqlite3.c 2011-07-07 07:49:38 +0200 ++++ sqlite-autoconf-3070701/sqlite3.c 2011-07-07 07:50:46 +0200 +@@ -25143,7 +25143,9 @@ + case ENODEV: + case ENXIO: + case ENOENT: ++#ifdef ESTALE + case ESTALE: ++#endif + case ENOSYS: + /* these should force the client to close the file and reconnect */ + |