Re: Curl + Visual Studio 2010 - Application fails to initialize

2012-02-15 Thread eli
Hey everybody, Thanks for all the great ideas. I've managed to fix the problem temporarily. The Microsoft.VC90.CR version 9.0.21022.8 manifest files were missing on the laptop. And as I found they are missing on most of the PCs, i.e. apparently this is not something standard that ships with VS

Curl + Visual Studio 2010 - Application fails to initialize

2012-02-13 Thread eli
I have a weird problem with libcurl and Visual Studio 2010. There are two PCs i work on, both have the same versions of Windows and the same versions of Visual Studio. The first is desktop PC and the second is laptop. I use the DLLs provided by libcurl-7.19.3-win32-ssl-msvc.zip within an MFC

Re: Curl + Visual Studio 2010 - Application fails to initialize

2012-02-13 Thread Lars Nilsson
On Mon, Feb 13, 2012 at 1:51 PM, eli net...@gmail.com wrote: I use the DLLs provided by libcurl-7.19.3-win32-ssl-msvc.zip within an MFC project. I assume you have checked the dependencies of the dlls using Dependency Walker? Lars Nilsson

Re: Curl + Visual Studio 2010 - Application fails to initialize

2012-02-13 Thread Gisle Vanem
eli net...@gmail.com wrote: There are two PCs i work on, both have the same versions of Windows and the same versions of Visual Studio. The first is desktop PC and the second is laptop. It would be nice to know which Windows that is? Loaded '..\Debug\curllib.dll', Binary was not built

Re: Curl + Visual Studio 2010 - Application fails to initialize

2012-02-13 Thread eli
Hi Lars, On both the PC and the laptop Dependency Walker can't find IESHIMS.DLL and WER.DLL. It was my initial suspicion, that some DLLs are missing. But since its the same DLLs on both machines I don't think this is the reason. On Mon, Feb 13, 2012 at 9:33 PM, Lars Nilsson

Re: Curl + Visual Studio 2010 - Application fails to initialize

2012-02-13 Thread eli
Hi Gisle, Its Windows XP + SP3. On Mon, Feb 13, 2012 at 10:00 PM, Gisle Vanem gva...@broadpark.no wrote: eli net...@gmail.com wrote: There are two PCs i work on, both have the same versions of Windows and the same versions of Visual Studio. The first is desktop PC and the second is laptop.

Re: Curl + Visual Studio 2010 - Application fails to initialize

2012-02-13 Thread Poul Thomas Lomholt
Apparently the prebuilt curl package requires the VS2008 C runtime (msvcr90.dll); several of the .dll's in the dist declare the following in their manifest: Microsoft.VC90.CRT version=9.0.21022.8 - try installing those (or a later 9.0.x build) on your laptop and it may solve your problem...