rawhide report: 20120801 changes

David Tardon dtardon at redhat.com
Wed Aug 8 05:56:35 UTC 2012


Hi,

On Wed, Aug 01, 2012 at 10:36:51AM -0400, Adam Jackson wrote:
> On 8/1/12 8:11 AM, Fedora Rawhide Report wrote:
> 
> >[spring]
> >	spring-88.0-2.fc18.x86_64 requires libGLEW.so.1.6()(64bit)
> >[toped]
> >	toped-0.9.70.1-3.svn1794.fc17.i686 requires libGLEW.so.1.6
> >	toped-0.9.70.1-3.svn1794.fc17.x86_64 requires libGLEW.so.1.6()(64bit)
> 
> I kicked rebuilds for the libGLEW update, but these two failed.  The
> errors appear to involve C++ being a travesty of a language, so I
> haven't investigated further.

The attached patch fixes that. The build now fails with

Making all in tpd_ifaces
make[2]: Entering directory `/builddir/build/BUILD/toped-0.9.80/tpd_ifaces'
make[2]: *** No rule to make target `cif_yacc.h', needed by `all'. Stop.
make[2]: Leaving directory `/builddir/build/BUILD/toped-0.9.80/tpd_ifaces'

, but that is no longer a C++ problem .-)

D.
-------------- next part --------------
diff -up toped-0.9.80/tpd_DB/quadtree.cpp.dt toped-0.9.80/tpd_DB/quadtree.cpp
--- toped-0.9.80/tpd_DB/quadtree.cpp.dt	2012-08-08 07:38:27.270165529 +0200
+++ toped-0.9.80/tpd_DB/quadtree.cpp	2012-08-08 07:39:19.888891404 +0200
@@ -365,7 +365,7 @@ bool laydata::ClipIterator<DataT>::secur
    if (0ll == _clipBox.cliparea(Iterator<DataT>::_cQuad->_overlap)) return false;
    while (0 == Iterator<DataT>::_cQuad->_props._numObjects)
    {
-      return nextSubQuad(0,Iterator<DataT>::_cQuad->_props.numSubQuads());
+      return Iterator<DataT>::nextSubQuad(0,Iterator<DataT>::_cQuad->_props.numSubQuads());
    }
    Iterator<DataT>::_cData = 0;
    return true;
@@ -424,7 +424,7 @@ bool laydata::DrawIterator<DataT>::secur
    else if (!areal.visible(drawprop->scrCtm(), drawprop->visualLimit())) return false;
    while (0 == Iterator<DataT>::_cQuad->_props._numObjects)
    {
-      return nextSubQuad(0,Iterator<DataT>::_cQuad->_props.numSubQuads());
+      return Iterator<DataT>::nextSubQuad(0,Iterator<DataT>::_cQuad->_props.numSubQuads());
    }
    Iterator<DataT>::_cData = 0;
    return true;


More information about the devel mailing list