All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] package/tesseract-ocr: fix build on uclibc
@ 2019-07-18 18:27 Thomas Petazzoni
  0 siblings, 0 replies; only message in thread
From: Thomas Petazzoni @ 2019-07-18 18:27 UTC (permalink / raw)
  To: buildroot

commit: https://git.buildroot.net/buildroot/commit/?id=5200ce57aa8b65bfd0fe41762762ee3e081d3ff4
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Fixes:
 - http://autobuild.buildroot.org/results/bdfbafa105ddf0b9b9399d94b557d318ad587d79

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 ...ng-instead-of-off_t-for-result-from-ftell.patch | 26 ++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/package/tesseract-ocr/0001-Use-long-instead-of-off_t-for-result-from-ftell.patch b/package/tesseract-ocr/0001-Use-long-instead-of-off_t-for-result-from-ftell.patch
new file mode 100644
index 0000000000..7cb5d6877e
--- /dev/null
+++ b/package/tesseract-ocr/0001-Use-long-instead-of-off_t-for-result-from-ftell.patch
@@ -0,0 +1,26 @@
+From d4e0ab3014c57e519513c10b8e23d8bf66610bff Mon Sep 17 00:00:00 2001
+From: Stefan Weil <sw@weilnetz.de>
+Date: Wed, 17 Jul 2019 21:11:53 +0200
+Subject: [PATCH] Use long instead of off_t for result from ftell
+
+Signed-off-by: Stefan Weil <sw@weilnetz.de>
+[Retrieved from:
+https://github.com/tesseract-ocr/tesseract/commit/d4e0ab3014c57e519513c10b8e23d8bf66610bff]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+---
+ src/ccutil/scanutils.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ccutil/scanutils.cpp b/src/ccutil/scanutils.cpp
+index da0c6918e..ea376a570 100644
+--- a/src/ccutil/scanutils.cpp
++++ b/src/ccutil/scanutils.cpp
+@@ -214,7 +214,7 @@ static int tvfscanf(FILE* stream, const char *format, va_list ap) {
+       (CHAR_BIT * sizeof(long))];
+   int matchinv = 0;   // Is match map inverted?
+   unsigned char range_start = 0;
+-  off_t start_off = ftell(stream);
++  long start_off = ftell(stream);
+ 
+   // Skip leading spaces
+   SkipSpace(stream);

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-07-18 18:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-18 18:27 [Buildroot] [git commit] package/tesseract-ocr: fix build on uclibc Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.