On Feb 4, 9:18 am, Hampus Wessman <[email protected]> wrote:
[...]
> I don't know why the wx dll isn't included. MSVCR71.dll is a Microsoft
> runtime dll, so I don't want to include it unless I'm sure it doesn't
> violate any license agreements or intellectual property rights (ie
> copyrigth). Could add a link to Microsoft's download site on the
> webpage, so that people can install the dll manually if they don't
> already have it. I think most Windows machines have it already, but I'm
> not sure if it's installed automatically when you install Windows (don't
> think so).
>
> Hampus


MSVCR71 is the Visual Studio 2003 (.Net) C Runtime.
It is freely re-distributable. However MS considers it "depreciated",
hence you have a hard time finding it on microsoft.com.
This DLL should be installed directly in the installation directory
(not system32 or such).
IIRC the win32 port of python 2.5 links against this CRT, so unless
you compile your own python (with static linking this time) you need
to redistribute it.
The CRT should be part of different Microsoft products as well,
like .Net 1.1 Framework, however it likely won't get installed
somewhere in the standard path.
The MSVCR71 is NOT installed with any flavor of windows by default.
If you want happy users then distribute it, or at least offer a
separate download.

Later versions of the MSCRT use SideBySide (SxS) assemblies. Hence, if
you compiled and linked against MSVCRT 8.0 or later, you should
distribute the corresponding vcredist_x86(x64).exe and install that.
(It is part of Visual Studio; be sure to use the correct one as for
example MSVC 8 and MSVC 8 SP1 do contain different versions).

For some more info see:
http://support.microsoft.com/?scid=kb%3Ben-us%3B326922&x=10&y=4

Cheers
Nils
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Metalink Discussion" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/metalink-discussion?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to