vcpkg/ports/tesseract/fix-timeval.patch
Jack·Boos·Yu f315deab8d
[tesseract] Fix non-Windows build (#21320)
* [tesseract] Fix non-Windows build

* version

* apply suggestion

* version
2021-12-10 13:51:47 -08:00

15 lines
310 B
Diff

diff --git a/src/ccutil/ocrclass.h b/src/ccutil/ocrclass.h
index d39a6dd..3755632 100644
--- a/src/ccutil/ocrclass.h
+++ b/src/ccutil/ocrclass.h
@@ -28,6 +28,9 @@
#include <chrono>
#include <ctime>
+#ifndef _WIN32
+#include <sys/time.h>
+#endif
#ifdef _WIN32
#include <winsock2.h> // for timeval
#endif