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 process somewhere.

manifests are even relevant to native win32 binaries beginning with w2k. 
You can distribute the msvcrt80.dll beneath your exe iff you provide it 
with a manifest. If you don't windows will not accept the dll. This is 
called you are distributing a private assembly.

The manifest is even more relevant for Vista: It is used for the User 
Access Control, if you need to run with admin priviledges.

Cheers
Olaf

___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


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:

http://blogs.msdn.com/astebner/archive/2007/01/24/updated-vc-8-0-runtime-redistributable-packages-are-included-in-visual-studio-2005-sp1.aspx


Cheers,
Hartmut




Mike Weiblen 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 errormsgs/dialogs along the lines
 of that application cant be run or trying reinstalling the app.  The
 VS8 runtime libs were present on the non-VS8 system
 
 Does this ring any bells?  Could the VS8 or Cmake ocnfigs be triggering
 some OS or binary dependency?
 
 Thanks
 -- mew
 
 Mike Weiblen -- Zebra Imaging -- Austin Texas USA --
 http://www.zebraimaging.com/
 
 ___
 osg-users mailing list
 osg-users@lists.openscenegraph.org
 http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


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 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 errormsgs/dialogs along the lines
  of that application cant be run or trying reinstalling the app.  The
  VS8 runtime libs were present on the non-VS8 system
 
  Does this ring any bells?  Could the VS8 or Cmake ocnfigs be triggering
  some OS or binary dependency?
 
 
 Hi,

 Are you sure that the redistributable package you have installed in the
 non-VS8 system correspond to the VS you use to build the application ? If
 you use VS8 SP1 make sure you use the updated run time libs for it.

 --
 Serge Lages
 http://www.magrathea-engine.org
 ___
 osg-users mailing list
 osg-users@lists.openscenegraph.org
 http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org




-- 
Mike Weiblen -- Austin Texas USA -- http://mew.cx/
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


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 on Friday, September 14, 2007 3:12 PM:
 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
 
 Also, the MSVCRT used by VS8 is not typically installed on WinXP, so
 this link might help:
 
 http://msdn2.microsoft.com/en-us/library/ms235299(VS.80).aspx
 
 Basically, Visual Studio 8 includes a file (on my PC its in C:\Program
 Files\Microsoft Visual Studio
 8\SDK\v2.0\BootStrapper\Packages\vcredist_x86) vcredist_x86.exe that
 will install the updated MSVCRT for you and allow the app to run.
 
 Mike Weiblen 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 errormsgs/dialogs along the
 lines of that application cant be run or trying reinstalling the
 app.  The VS8 runtime libs were present on the non-VS8 system

 Does this ring any bells?  Could the VS8 or Cmake ocnfigs be
 triggering some OS or binary dependency? 

___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


[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 cant be run or trying reinstalling the app.  The
VS8 runtime libs were present on the non-VS8 system

Does this ring any bells?  Could the VS8 or Cmake ocnfigs be triggering
some OS or binary dependency?

Thanks
-- mew

Mike Weiblen -- Zebra Imaging -- Austin Texas USA --
http://www.zebraimaging.com/

___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


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 errormsgs/dialogs along the lines
 of that application cant be run or trying reinstalling the app.  The
 VS8 runtime libs were present on the non-VS8 system

 Does this ring any bells?  Could the VS8 or Cmake ocnfigs be triggering
 some OS or binary dependency?


Hi,

Are you sure that the redistributable package you have installed in the
non-VS8 system correspond to the VS you use to build the application ? If
you use VS8 SP1 make sure you use the updated run time libs for it.

-- 
Serge Lages
http://www.magrathea-engine.org
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


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...
 
 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 cant be run or trying reinstalling the app.  The
 VS8 runtime libs were present on the non-VS8 system
 
 Does this ring any bells?  Could the VS8 or Cmake ocnfigs be triggering
 some OS or binary dependency?
 
 Thanks
 -- mew
 
 Mike Weiblen -- Zebra Imaging -- Austin Texas USA --
 http://www.zebraimaging.com/
 
 ___
 osg-users mailing list
 osg-users@lists.openscenegraph.org
 http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org
 
 
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org