diff options
| author | Gilles Talis <gilles.talis@gmail.com> | 2017-03-22 07:41:27 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-22 22:42:31 +0100 |
| commit | 51c5e50589d4c663efb65325d5bfe9bc767cfa28 (patch) | |
| tree | fd99e1b4ae4a00bc5e787e0ed4a7c7ed2135f523 /package/tesseract-ocr | |
| parent | 6b2025e4daa61725c30a6e765763ed7135b900ce (diff) | |
| download | buildroot-51c5e50589d4c663efb65325d5bfe9bc767cfa28.tar.gz buildroot-51c5e50589d4c663efb65325d5bfe9bc767cfa28.zip | |
tesseract-ocr: needs wchar support
Fixes:
http://autobuild.buildroot.net/results/66e44564aac79c1c47755f6d158663317a5ffe09
Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/tesseract-ocr')
| -rw-r--r-- | package/tesseract-ocr/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/tesseract-ocr/Config.in b/package/tesseract-ocr/Config.in index d4c23fbe46..3afaca771a 100644 --- a/package/tesseract-ocr/Config.in +++ b/package/tesseract-ocr/Config.in @@ -1,7 +1,7 @@ -comment "tesseract-ocr needs a toolchain w/ threads, C++, gcc >= 4.8, dynamic library" +comment "tesseract-ocr needs a toolchain w/ threads, C++, gcc >= 4.8, dynamic library, wchar" depends on BR2_USE_MMU depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ - !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || BR2_STATIC_LIBS + !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || BR2_STATIC_LIBS || !BR2_USE_WCHAR menuconfig BR2_PACKAGE_TESSERACT_OCR bool "tesseract-ocr" @@ -10,6 +10,7 @@ menuconfig BR2_PACKAGE_TESSERACT_OCR depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11 depends on BR2_USE_MMU # fork() depends on !BR2_STATIC_LIBS + depends on BR2_USE_WCHAR select BR2_PACKAGE_LEPTONICA help Tesseract is an OCR (Optical Character Recognition) engine, |

