Re: [osg-users] probs running OSG on non-dev system?

2007-09-17 Thread Olaf Flebbe
Hi, Thanks for the suggestion, but now my problem wont repro, so I guess that isn't the problem. But a further question, are manifests relevant to native win32 binaries, or windows managed assemblies? If the former, then that including of a manifest better be captured the cmake build

Re: [osg-users] probs running OSG on non-dev system?

2007-09-16 Thread Hartmut Seichter
The redistributable package should reside: %ProgramFiles%\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\vcredist_x86 for x86 ... more details here:

Re: [osg-users] probs running OSG on non-dev system?

2007-09-16 Thread Mike Weiblen
Hi, ok that was a good idea. I double-checked, and yes my runtime libs were from the VS8 SP1. The weird thing is, now I can not get it to fail again?! It was late, maybe I dreamed it? :-S thanks for the suggestion -- mew On 9/14/07, Serge Lages [EMAIL PROTECTED] wrote: On 9/14/07, Mike

Re: [osg-users] probs running OSG on non-dev system?

2007-09-15 Thread Olaf Flebbe
Hi, The official location for this vcredist_x86.exe is http://www.microsoft.com/downloads/details.aspx?FamilyID=200B2FD9-AE1A-4A14-984D-389C36F85647displaylang=en This is the updated SP1 redistributable, works for plain MSVC8 too. Cheers Olaf Thrall, Bryan schrieb: [EMAIL PROTECTED] wrote

[osg-users] probs running OSG on non-dev system?

2007-09-14 Thread Mike Weiblen
Pardon the sparse details, had a problem in wee hours this morn... Built a 2.1.10-ish OSG on one system w/ winxppro/vs8, tried to run the resulting osgviewer on a different system w/ winxphome but no VS8 installed. I got entirely unhelpful errormsgs/dialogs along the lines of that application

Re: [osg-users] probs running OSG on non-dev system?

2007-09-14 Thread Serge Lages
On 9/14/07, Mike Weiblen [EMAIL PROTECTED] wrote: Pardon the sparse details, had a problem in wee hours this morn... Built a 2.1.10-ish OSG on one system w/ winxppro/vs8, tried to run the resulting osgviewer on a different system w/ winxphome but no VS8 installed. I got entirely unhelpful

Re: [osg-users] probs running OSG on non-dev system?

2007-09-14 Thread [EMAIL PROTECTED]
Hi Mike, My bells rang: Include a manifest. For DLL's: mt -manifest test.dll.manifest -outputresource:test.dll;2 For EXE's: mt -manifest test.exe.manifest -outputresource:test.exe;1 Hope this helps, Paul Mike Weiblen wrote: Pardon the sparse details, had a problem in wee hours this morn...