summaryrefslogtreecommitdiff
path: root/dev-db/sqlite/files/sqlite-3.20.1-full_tarball-csv-unsigned_char.patch
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2018-05-27 13:54:37 +0200
committerAaron Bauman <bman@gentoo.org>2018-05-27 12:09:12 -0400
commit60f72f89b59cf3eff1f589e9731f1d39f68443b3 (patch)
treebc034319b94517655013248d63ff603617d1ff6c /dev-db/sqlite/files/sqlite-3.20.1-full_tarball-csv-unsigned_char.patch
parentd21ef2fd44c0172ebcff5ada2aa17c3163501f8d (diff)
downloadgentoo-60f72f89b59cf3eff1f589e9731f1d39f68443b3.tar.gz
gentoo-60f72f89b59cf3eff1f589e9731f1d39f68443b3.tar.bz2
gentoo-60f72f89b59cf3eff1f589e9731f1d39f68443b3.zip
dev-db/sqlite: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/8606
Diffstat (limited to 'dev-db/sqlite/files/sqlite-3.20.1-full_tarball-csv-unsigned_char.patch')
-rw-r--r--dev-db/sqlite/files/sqlite-3.20.1-full_tarball-csv-unsigned_char.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-db/sqlite/files/sqlite-3.20.1-full_tarball-csv-unsigned_char.patch b/dev-db/sqlite/files/sqlite-3.20.1-full_tarball-csv-unsigned_char.patch
deleted file mode 100644
index 86236c4b4bfe..000000000000
--- a/dev-db/sqlite/files/sqlite-3.20.1-full_tarball-csv-unsigned_char.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-https://sqlite.org/src/info/42f0777555675875
-
---- ext/misc/csv.c
-+++ ext/misc/csv.c
-@@ -78,7 +78,7 @@
- int nAlloc; /* Space allocated for z[] */
- int nLine; /* Current line number */
- int bNotFirst; /* True if prior text has been seen */
-- char cTerm; /* Character that terminated the most recent field */
-+ int cTerm; /* Character that terminated the most recent field */
- size_t iIn; /* Next unread character in the input buffer */
- size_t nIn; /* Number of characters in the input buffer */
- char *zIn; /* The input buffer */
-@@ -166,7 +166,7 @@
- if( p->in!=0 ) return csv_getc_refill(p);
- return EOF;
- }
-- return p->zIn[p->iIn++];
-+ return ((unsigned char*)p->zIn)[p->iIn++];
- }
-
- /* Increase the size of p->z and append character c to the end.
---- test/releasetest.tcl
-+++ test/releasetest.tcl
-@@ -114,7 +114,7 @@
- }
- "Debug-One" {
- --disable-shared
-- -O2
-+ -O2 -funsigned-char
- -DSQLITE_DEBUG=1
- -DSQLITE_MEMDEBUG=1
- -DSQLITE_MUTEX_NOOP=1