dlareklami / tesseract-ocr

Automatically exported from code.google.com/p/tesseract-ocr
Other
0 stars 0 forks source link

configure checks for wrong leptonica major version #1127

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
configure.ac:353 checks twice for minor version instead of major AND minor

orig:
[#if (LIBLEPT_MINOR_VERSION >= 1) && (LIBLEPT_MINOR_VERSION >= 70)

correct:
[#if (LIBLEPT_MAJOR_VERSION >= 1) && (LIBLEPT_MINOR_VERSION >= 70)

Original issue reported on code.google.com by habadas...@gmail.com on 2 Mar 2014 at 12:05

GoogleCodeExporter commented 9 years ago
Thank. Fixed in r1052.

Original comment by zde...@gmail.com on 2 Mar 2014 at 2:40