From owner-svn-ports-head@FreeBSD.ORG Wed Oct 2 12:00:32 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6933FAB9; Wed, 2 Oct 2013 12:00:32 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 473B72383; Wed, 2 Oct 2013 12:00:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r92C0WBm010471; Wed, 2 Oct 2013 12:00:32 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r92C0Vi8010461; Wed, 2 Oct 2013 12:00:31 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201310021200.r92C0Vi8010461@svn.freebsd.org> From: John Marino Date: Wed, 2 Oct 2013 12:00:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329041 - head/science/paraview/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Oct 2013 12:00:32 -0000 Author: marino Date: Wed Oct 2 12:00:31 2013 New Revision: 329041 URL: http://svnweb.freebsd.org/changeset/ports/329041 Log: science/paraview: add , , other c++ fixes The non-header fix addresses the error, "calls to overloaded operations cannot appear in a constant-expression". The fix was suggested on various bug trackers. Approved by: portmgr (bapt, implicit) Added: head/science/paraview/files/patch-Qt_Core_pqServerManagerSelectionModel.h (contents, props changed) head/science/paraview/files/patch-Utilities_Xdmf2_vtk_Testing_Cxx_XdmfTestVTKIO.cxx (contents, props changed) head/science/paraview/files/patch-VTK_Wrapping_Python_PyVTKObject.cxx (contents, props changed) Added: head/science/paraview/files/patch-Qt_Core_pqServerManagerSelectionModel.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/paraview/files/patch-Qt_Core_pqServerManagerSelectionModel.h Wed Oct 2 12:00:31 2013 (r329041) @@ -0,0 +1,11 @@ +--- Qt/Core/pqServerManagerSelectionModel.h.orig 2011-04-13 16:16:49.000000000 +0000 ++++ Qt/Core/pqServerManagerSelectionModel.h +@@ -68,7 +68,7 @@ public: + Clear = QItemSelectionModel::Clear, + Select = QItemSelectionModel::Select, + Deselect = QItemSelectionModel::Deselect, +- ClearAndSelect = Clear | Select ++ ClearAndSelect = static_cast(Clear) | static_cast(Select) + }; + Q_DECLARE_FLAGS(SelectionFlags, SelectionFlag) + Added: head/science/paraview/files/patch-Utilities_Xdmf2_vtk_Testing_Cxx_XdmfTestVTKIO.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/paraview/files/patch-Utilities_Xdmf2_vtk_Testing_Cxx_XdmfTestVTKIO.cxx Wed Oct 2 12:00:31 2013 (r329041) @@ -0,0 +1,10 @@ +--- Utilities/Xdmf2/vtk/Testing/Cxx/XdmfTestVTKIO.cxx.orig 2011-04-13 16:17:00.000000000 +0000 ++++ Utilities/Xdmf2/vtk/Testing/Cxx/XdmfTestVTKIO.cxx +@@ -21,6 +21,7 @@ + //files around for inspection. Otherwise it deletes the temporary files it + //creates and returns success. + ++#include + #include "vtkXdmfWriter.h" + + #include "vtkCellData.h" Added: head/science/paraview/files/patch-VTK_Wrapping_Python_PyVTKObject.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/paraview/files/patch-VTK_Wrapping_Python_PyVTKObject.cxx Wed Oct 2 12:00:31 2013 (r329041) @@ -0,0 +1,10 @@ +--- VTK/Wrapping/Python/PyVTKObject.cxx.orig 2011-04-13 16:17:36.000000000 +0000 ++++ VTK/Wrapping/Python/PyVTKObject.cxx +@@ -28,6 +28,7 @@ + it is removed along with the smart pointer from the ObjectMap. + -----------------------------------------------------------------------*/ + ++#include + #include "PyVTKObject.h" + #include "vtkPythonUtil.h" + #include "vtkObjectBase.h"