Hi Robert,

attached are a few patches that:
- add missing osgUtil link dependency for OS X
- fix ImageStream copy constructor
- reduce OperationThread verbosity

Index: src/osg/ImageStream.cpp
===================================================================
--- src/osg/ImageStream.cpp     (revision 8909)
+++ src/osg/ImageStream.cpp     (working copy)
@@ -31,7 +31,8 @@

 ImageStream::ImageStream(const ImageStream& image,const CopyOp& copyop):
     Image(image,copyop),
-    _status(image._status)
+    _status(image._status),
+    _loopingMode(image._loopingMode)
 {
 }

Index: src/osg/OperationThread.cpp
===================================================================
--- src/osg/OperationThread.cpp (revision 8909)
+++ src/osg/OperationThread.cpp (working copy)
@@ -344,7 +344,7 @@
 #endif
             // commenting out debug info as it was cashing crash on exit, 
presumable
             // due to osg::notify or std::cout destructing earlier than this 
destructor.
-            osg::notify(osg::INFO)<<"   Waiting for OperationThread to cancel
"<<this<<std::endl;
+            osg::notify(osg::DEBUG_INFO)<<"   Waiting for OperationThread to 
cancel
"<<this<<std::endl;
             OpenThreads::Thread::YieldCurrentThread();
         }
     }
Index: src/osgVolume/CMakeLists.txt
===================================================================
--- src/osgVolume/CMakeLists.txt        (revision 8909)
+++ src/osgVolume/CMakeLists.txt        (working copy)
@@ -30,6 +30,7 @@

 SET(TARGET_LIBRARIES_VARS FREETYPE_LIBRARY )
 LINK_INTERNAL(${LIB_NAME}
+    osgUtil
     osgDB
     osg
     OpenThreads

Cheers,
/ulrich

Attachment: osgVolume.tar.gz
Description: GNU Zip compressed data

_______________________________________________
osg-submissions mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org

Reply via email to