Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-25 Thread Brian Keener
Robert Osfield wrote:
 On Tue, Jun 17, 2008 at 9:24 PM, Brian Keener [EMAIL PROTECTED] 
wrote:
  So perhaps the problem in build is down to a different WxWidgets
  version than the OSG can compile against, or not all the lib/includes
  matching up for some reason.  Disabling WxWdiget should be possible by
  just setting the associated via ccmake .
 
   But I am building in Cygwin - which means it should be finding 
/usr/something or
  /something or /cygdrive/something and the D: drive on my system is the CD 
and has
  music in - not WxWdgets - there is not WxWidgets on my system that I can 
find.
 
   How do you disable in ccmake - I tried setting all the WxWidgets entries 
equal
  to their key and -NOTFOUND.
 
 This is really a CMake find issue - Cmake may be not just checking
 /usr paths, perhaps its the
 CMakeModules/Find3rdPartyDependencies.cmake that is introducing
 oddities.  I have amit to not
 being  CMake expert, let alone a Windows/Cygwin user so the best I can

I think I have found it and it is a CMake issue with the FindWxWidgets.cmake 
script.  Either osgviewerWX is new or this didn't start until Cmake 2.6 but I 
cannot be sure.  At any rate in FindWxWidgets.cmake they use this code:

#=
#=
IF(WIN32)
  SET(WIN32_STYLE_FIND 1)
ENDIF(WIN32)
IF(MINGW)
  SET(WIN32_STYLE_FIND 0)
  SET(UNIX_STYLE_FIND 1)
ENDIF(MINGW)
IF(UNIX)
  SET(UNIX_STYLE_FIND 1)
ENDIF(UNIX)

but in Cygwin WIN32 and UNIX are both set and the variables being set determine 
how it find wxWidgets so if WIN32 is set it is using the wrong logic.  I added 
this:

IF(CYGWIN)
  SET(WIN32_STYLE_FIND 0)
  SET(UNIX_STYLE_FIND 1)
ENDIF(CYGWIN)

right after the MINGW routine and that stopped it from find wxWidget or 
defaulting which it does in the Windows find even though I do not have it which 
it weird.  Anyways just thought I would pass it on as it does appear (to me) to 
be in Cmake and not OSG.

bk



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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-16 Thread Robert Osfield
Hi Brian,

Cmake is finding WxWidgets, there are plenty of entires lists in your
CMakeCache.txt file (which came through first time for me BTW), for
instance:

//wxWidgets_LIB_DIR
WX_LIB_DIR:INTERNAL=D:/wxWidgets-2.8.7/lib/vc_lib
//wxWidgets_ROOT_DIR
WX_ROOT_DIR:INTERNAL=D:/wxWidgets-2.8.7
//Advanced flag for variable: WX_adv

So perhaps the problem in build is down to a different WxWidgets
version than the OSG can compile against, or not all the lib/includes
matching up for some reason.  Disabling WxWdiget should be possible by
just setting the associated via ccmake .

Robert.

On Sat, Jun 7, 2008 at 2:47 AM, Brian Keener [EMAIL PROTECTED] wrote:
 Robert Osfield wrote:
 On Fri, Jun 6, 2008 at 12:00 AM, Brian Keener
 [EMAIL PROTECTED] wrote:
  Robert Osfield wrote:
  CMake shouldn't find WxWidgets.  Could you try rm CMakeCache.txt
 and
  then rerun ./configure, and then if you still get the error send
 us
  the CMakeCache.txt, perhaps this might gleen something.
 
  I actually deleted my whole build directory and redid it (twice I
 think)
  but I'll redo it all fresh again and double check - that  way I can
 get
  the CMakeCache.txt fresh.

 This suggests that CMake isn't behaving properly - perhaps it's the
 Win32 3rd party plugin stuff is breaking things.

 Out of curiousity is the the wrappers being built by default as well?

 Are you using CMakeSetup or cmake/ccmake?

 I have uninstalled the build, done a make clean then removed
 everthing in the
 build directory.  I then updated my source (/usr/src/OpenSceneGraph)
 from svn and
 then using cmake in my build directory I did a ccmake
 /usr/src/OpenSceneGraph
 from within my empty build directory.  Had an empty cache so selected
 configure to
 get the fields populated in cmake and then only changed the option to
 build
 examples - no debug or anything and then did a configure and then a
 generate -
 actually took 2 configures I think before I could generate.  I have
 attached the
 CmakeCache.txt and as to the wrappers I cannot see that is is building
 them - I
 find no osgWrapper in my build directory.

 Then from within my build directory I did a simple make

 results:

 Linking CXX executable ../../bin/osgvertexprogram.exe
 [ 99%] Built target example_osgvertexprogram
 Scanning dependencies of target example_osgvolume
 [ 99%] Building CXX object
 examples/osgvolume/CMakeFiles/example_osgvolume.dir/o
 sgvolume.o
 Linking CXX executable ../../bin/osgvolume.exe
 [ 99%] Built target example_osgvolume
 Scanning dependencies of target example_osgwindows
 [ 99%] Building CXX object
 examples/osgwindows/CMakeFiles/example_osgwindows.dir
 /osgwindows.o
 Linking CXX executable ../../bin/osgwindows.exe
 [ 99%] Built target example_osgwindows
 Scanning dependencies of target example_osgviewerGLUT
 [ 99%] Building CXX object
 examples/osgviewerGLUT/CMakeFiles/example_osgviewerGL
 UT.dir/osgviewerGLUT.o
 Linking CXX executable ../../bin/osgviewerGLUT.exe
 [ 99%] Built target example_osgviewerGLUT
 examples/osgviewerWX/CMakeFiles/example_osgviewerWX.dir/build.make:91:
 *** targe
 t pattern contains no `%'.  Stop.
 make[1]: ***
 [examples/osgviewerWX/CMakeFiles/example_osgviewerWX.dir/all] Error
  2
 make: *** [all] Error 2

 [EMAIL PROTECTED] /usr/develop/obj/osg
 $


 bk



 ___
 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] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-12 Thread Brian Keener
Jean-Sébastien Guay wrote:
  The only thing I can find different about your messages upon quick 
  glance is that the Content-Type: boundary designator is very high in the 
  header.  And it contains a line break... which in my limited experience 
  seems a little odd.  As does the :thesoftwaresource.com part but that 
  should be ok, I think.
 
 So I would probably blame an e-mail client bug. Brian, what client are 
 you using and can you try another one? (but we're pretty far from OSG 
 support/discussion here :-) )

We've been researching this in the Virtual-Access Open Source project and not 
sure it is the client causing this.  I went and checked the email archives at 
OpenSceneGraph.org and finding my message at:

http://lists.openscenegraph.org/pipermail/osg-users-openscenegraph.org/2008-J
une/012550.html

and it says the non text attachment was scrubbed and if you follow the URL 
link you see my original message and the MIME attachment but the break in the 
line you noticed is not there.  I wonder if it could be the fact it was 
posted as MIME.

bk



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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-12 Thread Brian Keener
Paul Speed wrote:
 The only thing I can find different about your messages upon quick 
 glance is that the Content-Type: boundary designator is very high in the 
 header.  And it contains a line break... which in my limited experience 
 seems a little odd.  As does the :thesoftwaresource.com part but that 
 should be ok, I think.
 
 It's clear that a strict interpretation of:
 Content-Type: multipart/mixed; boundary=Next part of message
  (VA.181d.0185f8c3:thesoftwaresource.com)

Just as a thought I am trying the post again with the attachment as text 
but without MIME Encoding.  I apologize for this.

bk



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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-10 Thread Alberto Luaces
I somehow managed to decode the file. I hope it is the whole file.
# This is the CMakeCache file.
# For build in directory: /usr/develop/obj/osg
# It was generated by CMake: /usr/bin/cmake.exe
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUI's for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.


# EXTERNAL cache entries


//Location of 3rdparty dependencies
ACTUAL_3DPARTY_DIR:PATH=/usr/src/3rdparty

//Build osg documentation
BUILD_DOCUMENTATION:BOOL=OFF

//Enable the build of the MFC Example
BUILD_MFC_EXAMPLE:BOOL=OFF

//Enable to build OSG Applications (e.g. osgviewer)
BUILD_OSG_APPLICATIONS:BOOL=ON

//Enable to build OSG Examples
BUILD_OSG_EXAMPLES:BOOL=ON

//Enable to build OSG Plugins
BUILD_OSG_PLUGINS:BOOL=ON

//Enable to build Introspection and Wrappers
BUILD_OSG_WRAPPERS:BOOL=OFF

//Build OpenSceneGraph reference documentation using doxygen (use:
// make DoxygenDoc)
BUILD_REF_DOCS:BOOL=OFF

//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar.exe

//For backwards compatibility, what version of CMake commands and
// syntax should this version of CMake try to support.
CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4

//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or
// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.
CMAKE_BUILD_TYPE:STRING=

//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON

//CXX compiler.
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++.exe

//Flags used by the compiler during all build types.
CMAKE_CXX_FLAGS:STRING=

//Flags used by the compiler during debug builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g

//Flags used by the compiler during release minsize builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG

//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG

//Flags used by the compiler during Release with Debug Info builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g

//C compiler.
CMAKE_C_COMPILER:FILEPATH=/usr/bin/gcc.exe

//Flags used by the compiler during all build types.
CMAKE_C_FLAGS:STRING=

//Flags used by the compiler during debug builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g

//Flags used by the compiler during release minsize builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG

//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG

//Flags used by the compiler during Release with Debug Info builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g

//add a postfix, usually d on windows
CMAKE_DEBUG_POSTFIX:STRING=d

//Flags used by the linker.
CMAKE_EXE_LINKER_FLAGS:STRING=

//Flags used by the linker during debug builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during release minsize builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during release builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during Release with Debug Info builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//You may add additional search paths here. Use ; to separate multiple
// paths.
CMAKE_INCLUDE_PATH:STRING=

//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local

//You may add additional search paths here. Use ; to separate multiple
// paths.
CMAKE_LIBRARY_PATH:STRING=

//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/ld.exe

//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make.exe

//Flags used by the linker during the creation of modules.
CMAKE_MODULE_LINKER_FLAGS:STRING=

//Flags used by the linker during debug builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during release minsize builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during release builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during Release with Debug Info builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//Path to a program.
CMAKE_NM:FILEPATH=/usr/bin/nm.exe

//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy.exe

//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump.exe

//(EXPERIMENTAL) You may add additional search paths here. Use
// ; to separate multiple paths.
CMAKE_PREFIX_PATH:STRING=

//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib.exe

//Flags used by the linker during the creation of dll's.
CMAKE_SHARED_LINKER_FLAGS:STRING=

//Flags used by the linker during debug builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-10 Thread Jean-Sébastien Guay

Hello Paul,

For what it's worth... the whole messages are coming through for me but 
they are just not visible.  If I view the message source then I can see 
the contents... including the encoded attachment.  I'm not sure why 
Thunderbird is getting confused by them.


Hey, you're right. Weird, first time I see something like that.

The only thing I can find different about your messages upon quick 
glance is that the Content-Type: boundary designator is very high in the 
header.  And it contains a line break... which in my limited experience 
seems a little odd.  As does the :thesoftwaresource.com part but that 
should be ok, I think.


So I would probably blame an e-mail client bug. Brian, what client are 
you using and can you try another one? (but we're pretty far from OSG 
support/discussion here :-) )


Just trying to be helpful...

J-S
--
__
Jean-Sebastien Guay[EMAIL PROTECTED]
   http://www.cm-labs.com/
http://whitestar02.webhop.org/
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-10 Thread Brian Keener
Jean-Sébastien Guay wrote:
 So I would probably blame an e-mail client bug. Brian, what client are 
 you using and can you try another one? (but we're pretty far from OSG 
 support/discussion here :-) )
 
 Just trying to be helpful...

I'm suspecting the email client now - it is an open source project called 
Virtual-Access and they have done a lot of work lately changing some html 
logic (but I thought only on our viewing side).  I will post this 
scenario there based on the results you are seeing and see what happens.

I will also check posting from another email client - the problem is 
getting the from changed in Outlook or the Web interface on my domain 
since I use a doctored email address for spam protection on newsgroups.

bk




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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-10 Thread Brian Keener
Alberto Luaces wrote:
 I somehow managed to decode the file. I hope it is the whole file

whoa - good job!

Size 47481 bytes
md5sum 66b6269f412416423aaf06f3c9b14706

bk




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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-10 Thread Brian Keener
Paul Speed wrote:
 For what it's worth... the whole messages are coming through for me but 
 they are just not visible.  If I view the message source then I can see 
 the contents... including the encoded attachment.  I'm not sure why 
 Thunderbird is getting confused by them.

I posted to the newsgroup for my email client but I also just remembered - 
remember - each time I posted with an attachment I got a warning from the 
Mailing list saying I was not authorized to post as follows:

subject: Re: [osg-users] Build from svn in Cygwin still tries tobuild 
osgviewerWX but no WX
from: [EMAIL PROTECTED]
to: [EMAIL PROTECTED]
date: Mon, 09 Jun 2008 14:33:50 -0700
x-popfile-link: http://127.0.0.1:8080/jump_to_message?view=128050

You are not allowed to post to this mailing list, and your message has
been automatically rejected.  If you think that your messages are
being rejected in error, contact the mailing list owner at
[EMAIL PROTECTED]

date: Mon, 09 Jun 2008 17:33:16 -0400
to: OpenSceneGraph Users osg-users@lists.openscenegraph.org
from: Brian Keener [EMAIL PROTECTED]
subject: Re: [osg-users] Build from svn in Cygwin still tries to 
buildosgviewerWX but no WX
reply-to: [EMAIL PROTECTED],OpenSceneGraph Users 
osg-users@lists.openscenegraph.org




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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-09 Thread Brian Keener
Robert Osfield wrote:
 On Fri, Jun 6, 2008 at 12:00 AM, Brian Keener [EMAIL PROTECTED] 
wrote:
  Robert Osfield wrote:
  CMake shouldn't find WxWidgets.  Could you try rm CMakeCache.txt and
  then rerun ./configure, and then if you still get the error send us
  the CMakeCache.txt, perhaps this might gleen something.
 
  I actually deleted my whole build directory and redid it (twice I think)
  but I'll redo it all fresh again and double check - that  way I can get
  the CMakeCache.txt fresh.
 
 This suggests that CMake isn't behaving properly - perhaps it's the
 Win32 3rd party plugin stuff is breaking things.
 
 Out of curiousity is the the wrappers being built by default as well?
 
 Are you using CMakeSetup or cmake/ccmake?

Robert,

I tried twice to send this replay with the CmakeCache.txt as an attachment and 
keep getting this message - I am now this without the attachment to see if 
that is the problem.  The response I keep getting is:

You are not allowed to post to this mailing list, and your message has
been automatically rejected.  If you think that your messages are
being rejected in error, contact the mailing list owner at
[EMAIL PROTECTED]

I have uninstalled the build, done a make clean then removed everthing in 
the build directory.  I then updated my source (/usr/src/OpenSceneGraph) 
from svn and then using cmake in my build directory I did a ccmake 
/usr/src/OpenSceneGraph from within my empty build directory.  Had an empty
cache so selected configure to get the fields populated in cmake and then 
only changed the option to build examples - no debug or anything and then 
did a configure and then a generate - actually took 2 configures I think 
before I could generate.  I have attached the CmakeCache.txt and as to the 
wrappers I cannot see that is is building them - I 
find no osgWrapper in my build directory.

Then from within my build directory I did a simple make

results:

Linking CXX executable ../../bin/osgvertexprogram.exe
[ 99%] Built target example_osgvertexprogram
Scanning dependencies of target example_osgvolume
[ 99%] Building CXX object 
examples/osgvolume/CMakeFiles/example_osgvolume.dir/o
sgvolume.o
Linking CXX executable ../../bin/osgvolume.exe
[ 99%] Built target example_osgvolume
Scanning dependencies of target example_osgwindows
[ 99%] Building CXX object 
examples/osgwindows/CMakeFiles/example_osgwindows.dir
/osgwindows.o
Linking CXX executable ../../bin/osgwindows.exe
[ 99%] Built target example_osgwindows
Scanning dependencies of target example_osgviewerGLUT
[ 99%] Building CXX object 
examples/osgviewerGLUT/CMakeFiles/example_osgviewerGL
UT.dir/osgviewerGLUT.o
Linking CXX executable ../../bin/osgviewerGLUT.exe
[ 99%] Built target example_osgviewerGLUT
examples/osgviewerWX/CMakeFiles/example_osgviewerWX.dir/build.make:91: 
*** targe
t pattern contains no `%'.  Stop.
make[1]: *** 
[examples/osgviewerWX/CMakeFiles/example_osgviewerWX.dir/all] Error
 2
make: *** [all] Error 2

[EMAIL PROTECTED] /usr/develop/obj/osg
$


bk




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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-09 Thread Jean-Sébastien Guay

Hi Brian,

I tried twice to send this replay with the CmakeCache.txt as an attachment and 
keep getting this message - I am now this without the attachment to see if 
that is the problem. 


Your two posts came through, but were empty for some reason (no text, no 
attachment, just the headers - to, from, subject etc.).


Just wanted to let you know, and perhaps knowing that someone can fix 
the problem... How large was the attachment BTW?


J-S
--
__
Jean-Sebastien Guay[EMAIL PROTECTED]
   http://www.cm-labs.com/
http://whitestar02.webhop.org/
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-09 Thread Brian Keener
 wrote:
 Hi Brian,
 
  I tried twice to send this replay with the CmakeCache.txt as an attachment 
  and 
  keep getting this message - I am now this without the attachment to see if 
  that is the problem. 
 
 Your two posts came through, but were empty for some reason (no text, no 
 attachment, just the headers - to, from, subject etc.).
 
 Just wanted to let you know, and perhaps knowing that someone can fix 
 the problem... How large was the attachment BTW?

Hmmm, must have been the attachment since you saw everything on this one.  
Attachment was only 47kb - you wouldn't think that would be a stopper unless it 
was 
just the fact it had an attachment.

Thanks J-S for letting me know I was getting through

bk



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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-09 Thread Jean-Sébastien Guay

Hi Brian,

Hmmm, must have been the attachment since you saw everything on this one.  
Attachment was only 47kb - you wouldn't think that would be a stopper unless it was 
just the fact it had an attachment.


Weird, I remember bigger attachments being sent to osg-users (screen 
captures, etc.)... Not sure what's going on.


Sorry I can't be more help...

J-S
--
__
Jean-Sebastien Guay[EMAIL PROTECTED]
   http://www.cm-labs.com/
http://whitestar02.webhop.org/
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-09 Thread Brian Keener
 wrote:
 Hi Brian,
 
  Hmmm, must have been the attachment since you saw everything on this one.  
  Attachment was only 47kb - you wouldn't think that would be a stopper 
  unless it was 
  just the fact it had an attachment.
 
 Weird, I remember bigger attachments being sent to osg-users (screen 
 captures, etc.)... Not sure what's going on.
 
 Sorry I can't be more help...


Thanks for the help.  Should be another blank one there now where I just tried 
posting 
the same file as a zip but that was refused too.  

I'll wait and see what Robert says - I guess I could put the whole 
CmakeCache.txt  
in-line in a message.

Thanks again

bk



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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-09 Thread Jean-Sébastien Guay

Hi Brian,

Thanks for the help.  Should be another blank one there now where I just tried posting 
the same file as a zip but that was refused too.  


Yep. Sorry...

I'll wait and see what Robert says - I guess I could put the whole CmakeCache.txt  
in-line in a message.


That would work I'd guess, and I've seen worse. And someone else might 
be able to see a solution to your problem once the contents of the file 
are accessible, without needing to wait for Robert to come back. Give it 
a shot.


J-S
--
__
Jean-Sebastien Guay[EMAIL PROTECTED]
   http://www.cm-labs.com/
http://whitestar02.webhop.org/
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-09 Thread Paul Speed
For what it's worth... the whole messages are coming through for me but 
they are just not visible.  If I view the message source then I can see 
the contents... including the encoded attachment.  I'm not sure why 
Thunderbird is getting confused by them.


It's weird because other posters seem to come through with an empty 
attachment for their e-mails with no attachments.


The only thing I can find different about your messages upon quick 
glance is that the Content-Type: boundary designator is very high in the 
header.  And it contains a line break... which in my limited experience 
seems a little odd.  As does the :thesoftwaresource.com part but that 
should be ok, I think.


It's clear that a strict interpretation of:
Content-Type: multipart/mixed; boundary=Next part of message
(VA.181d.0185f8c3:thesoftwaresource.com)

Would not find the real separators:
--Next part of message (VA.181d.0185f8c3:thesoftwaresource.com)

But I'm reaching at straws.
-Paul

Brian Keener wrote:

 wrote:

Hi Brian,

Hmmm, must have been the attachment since you saw everything on this one.  
Attachment was only 47kb - you wouldn't think that would be a stopper unless it was 
just the fact it had an attachment.
Weird, I remember bigger attachments being sent to osg-users (screen 
captures, etc.)... Not sure what's going on.


Sorry I can't be more help...



Thanks for the help.  Should be another blank one there now where I just tried posting 
the same file as a zip but that was refused too.  

I'll wait and see what Robert says - I guess I could put the whole CmakeCache.txt  
in-line in a message.


Thanks again

bk



___
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] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-09 Thread Guy
Brian
Maybe you can try sending the attachment from different mail account?
Guy.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul
Speed
Sent: Tuesday, June 10, 2008 5:33 AM
To: OpenSceneGraph Users
Subject: Re: [osg-users] Build from svn in Cygwin still tries to build
osgviewerWX but no WX

For what it's worth... the whole messages are coming through for me but 
they are just not visible.  If I view the message source then I can see 
the contents... including the encoded attachment.  I'm not sure why 
Thunderbird is getting confused by them.

It's weird because other posters seem to come through with an empty 
attachment for their e-mails with no attachments.

The only thing I can find different about your messages upon quick 
glance is that the Content-Type: boundary designator is very high in the

header.  And it contains a line break... which in my limited experience 
seems a little odd.  As does the :thesoftwaresource.com part but that 
should be ok, I think.

It's clear that a strict interpretation of:
Content-Type: multipart/mixed; boundary=Next part of message
(VA.181d.0185f8c3:thesoftwaresource.com)

Would not find the real separators:
--Next part of message (VA.181d.0185f8c3:thesoftwaresource.com)

But I'm reaching at straws.
-Paul

Brian Keener wrote:
  wrote:
 Hi Brian,

 Hmmm, must have been the attachment since you saw everything on this
one.  
 Attachment was only 47kb - you wouldn't think that would be a
stopper unless it was 
 just the fact it had an attachment.
 Weird, I remember bigger attachments being sent to osg-users (screen 
 captures, etc.)... Not sure what's going on.

 Sorry I can't be more help...
 
 
 Thanks for the help.  Should be another blank one there now where I
just tried posting 
 the same file as a zip but that was refused too.  
 
 I'll wait and see what Robert says - I guess I could put the whole
CmakeCache.txt  
 in-line in a message.
 
 Thanks again
 
 bk
 
 
 
 ___
 osg-users mailing list
 osg-users@lists.openscenegraph.org

http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.or
g

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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-06 Thread Robert Osfield
On Fri, Jun 6, 2008 at 12:00 AM, Brian Keener [EMAIL PROTECTED] wrote:
 Robert Osfield wrote:
 CMake shouldn't find WxWidgets.  Could you try rm CMakeCache.txt and
 then rerun ./configure, and then if you still get the error send us
 the CMakeCache.txt, perhaps this might gleen something.

 I actually deleted my whole build directory and redid it (twice I think)
 but I'll redo it all fresh again and double check - that  way I can get
 the CMakeCache.txt fresh.

This suggests that CMake isn't behaving properly - perhaps it's the
Win32 3rd party plugin stuff is breaking things.

Out of curiousity is the the wrappers being built by default as well?

Are you using CMakeSetup or cmake/ccmake?

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


Re: [osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-05 Thread Robert Osfield
Hi Brian,

CMake shouldn't find WxWidgets.  Could you try rm CMakeCache.txt and
then rerun ./configure, and then if you still get the error send us
the CMakeCache.txt, perhaps this might gleen something.

Robert.

On Wed, Jun 4, 2008 at 6:57 PM, Brian Keener [EMAIL PROTECTED] wrote:
 Updated from svn and did a build in Cygwin and if I select to build
 Examples it tries to build osgviewerWX even though Wx is not installed
 and the path it shows in ccmake is D:WxWidgets...  I tried changing the
 setting in ccmake to whatever-NOTFOUND but it still insisted so I built
 without examples and that went okay.

 bk



 ___
 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


[osg-users] Build from svn in Cygwin still tries to build osgviewerWX but no WX

2008-06-04 Thread Brian Keener
Updated from svn and did a build in Cygwin and if I select to build 
Examples it tries to build osgviewerWX even though Wx is not installed 
and the path it shows in ccmake is D:WxWidgets...  I tried changing the 
setting in ccmake to whatever-NOTFOUND but it still insisted so I built 
without examples and that went okay.

bk



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