Re: [WiX-users] VS2005 C++ and Custom Actions

2006-12-07 Thread Matthew Kowalski
rsday, December 07, 2006 9:55 AM To: Bob Arnson; Mike Dimmick Cc: wix-users@lists.sourceforge.net; Matthew Kowalski Subject: RE: [WiX-users] VS2005 C++ and Custom Actions We could get rid of the CRT dependencies and I used to do that work (had to port over sprint to do it too, that was a pain). Ho

Re: [WiX-users] VS2005 C++ and Custom Actions

2006-12-07 Thread Rob Mensching
ck Cc: wix-users@lists.sourceforge.net; 'Matthew Kowalski' Subject: Re: [WiX-users] VS2005 C++ and Custom Actions Mike Dimmick wrote: You should try to eliminate use of the CRT, if possible, and statically link with it to remove the dependency on the CRT DLLs. There's nothing wron

Re: [WiX-users] VS2005 C++ and Custom Actions

2006-12-06 Thread Bob Arnson
Mike Dimmick wrote: You should try to eliminate use of the CRT, if possible, and statically link with it to remove the dependency on the CRT DLLs. There's nothing wrong with using the CRT as long as you statically link. The WiX custom actions should probably take the lead here and replace

Re: [WiX-users] VS2005 C++ and Custom Actions

2006-12-06 Thread Mike Dimmick
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Kowalski Sent: 05 December 2006 19:42 To: wix-users@lists.sourceforge.net Subject: [WiX-users] VS2005 C++ and Custom Actions I've created a simple C++ .dll in VS2005 to do some checks for me during the install after a use

Re: [WiX-users] VS2005 C++ and Custom Actions

2006-12-05 Thread Eric Fesh
I was in a similar situation and just statically linked the runtime library. Of course, I was running an executable instead of trying to access a DLL, so that might not be helpful information. -- Eric Fesh Customer Support Engineer/Software Test Engineer Verari Systems Software, Inc. 110 12th S

[WiX-users] VS2005 C++ and Custom Actions

2006-12-05 Thread Matthew Kowalski
I've created a simple C++ .dll in VS2005 to do some checks for me during the install after a user has selected an installation folder. The problem I am having is with the VS2005 C++ runtime (msvcp80.dll). The compiled .dll apparently needs to have the runtime installed otherwise the installation fa