AmitGorvadiya / tesseract-ocr

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

tesseract-2.04.exe.tar.gz depends on missing DLLs #226

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
> What steps will reproduce the problem?

tessdll.dll depends on MSVCR90.dll and MSVCP90.dll
which are NOT standard part of windows.

> What version of the product are you using? On what operating system?
tesseract-2.04.exe.tar.gz    Win2k or WinXP SP3

> Please provide any additional information below:

Best solution to compile executables for windows is mingw (gcc port to
win32), or some old and portable VC (like VC6).

Another solution is telling users in README file, where can they obtain
missing MSVC*.dll, if they are redistributable? (not really preferrable)

Another solution is telling your compiler not to use these microsoft
C-runtime DLLs (VC++ CAN build static DLLs not using their dynamic runtime!)

On WinXP, there is last msvcr70.dll and msvcr71.dll preinstalled with the
system.

(Well, I'm not a C programmer and probably cannot compile that myself...)

Original issue reported on code.google.com by s...@seznam.cz on 31 Jul 2009 at 2:40

GoogleCodeExporter commented 9 years ago
Fixed in 3.00, via static crt.

Original comment by theraysm...@gmail.com on 11 Aug 2009 at 8:41