2008-12-19 02:31:16 UTC
This error relates to a DLL dependency that has not been met. Instructions to fix are below.
Thanks to these sources:
- thread in this help forum, contains fuller explanation and reason about the fix:
https://sourceforge.net/forum/forum.php?thread_id=1916085&forum_id=52737
- a tool for assisting with finding the error on a workstation at work:
http://www.dependencywalker.com/
Problem summary:
- missing dlls msvcr80.dll, msvcp80.dll and msvcm80.dll
Constraints:
This was done at work in a semi-locked down xp sp2 environment (ie no admin access) using the portable (windows zip) version of TOra 2.0.0.
Instructions summary:
- find the dlls and copy to tora directory
- add special manifest file to get tora to load them
Instructions detail:
1a find dlls in windows directory and copy them locally to tora executable directory, we did this on the test system, files were in: C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700
1b download them from:
http://www.dll-files.com/dllindex/dll-files.shtml?msvcr80
2 create a file in the tora directory called "Microsoft.VC80.CRT.manifest" with the content below:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<noInheritable></noInheritable>
<assemblyIdentity
type="win32"
name="Microsoft.VC80.CRT"
version="8.0.50727.762"
processorArchitecture="x86"
publicKeyToken="1fc8b3b9a1e18e3b"
/>
<file name="msvcr80.dll" />
<file name="msvcp80.dll" />
<file name="msvcm80.dll" />
</assembly>