From owner-svn-ports-all@FreeBSD.ORG Tue Oct 1 11:49:26 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CD698A32; Tue, 1 Oct 2013 11:49:26 +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 ACA8423D8; Tue, 1 Oct 2013 11:49:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r91BnQHK006581; Tue, 1 Oct 2013 11:49:26 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r91BnPRq006577; Tue, 1 Oct 2013 11:49:25 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201310011149.r91BnPRq006577@svn.freebsd.org> From: John Marino Date: Tue, 1 Oct 2013 11:49:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328935 - head/x11/metisse/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-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Oct 2013 11:49:26 -0000 Author: marino Date: Tue Oct 1 11:49:25 2013 New Revision: 328935 URL: http://svnweb.freebsd.org/changeset/ports/328935 Log: x11/metisse: add and other c++ fixes Approved by: portmgr (bapt, implicit) Added: head/x11/metisse/files/patch-FvwmCompositor_eigen_ludecomposition.h (contents, props changed) head/x11/metisse/files/patch-FvwmCompositor_eigen_matrix.h (contents, props changed) head/x11/metisse/files/patch-FvwmCompositor_eigen_vector.h (contents, props changed) head/x11/metisse/files/patch-FvwmCompositor_main_AScreen.cxx (contents, props changed) Added: head/x11/metisse/files/patch-FvwmCompositor_eigen_ludecomposition.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/metisse/files/patch-FvwmCompositor_eigen_ludecomposition.h Tue Oct 1 11:49:25 2013 (r328935) @@ -0,0 +1,20 @@ +--- FvwmCompositor/eigen/ludecomposition.h.orig 2008-03-25 17:15:13.000000000 +0000 ++++ FvwmCompositor/eigen/ludecomposition.h +@@ -85,7 +85,7 @@ class LUDecomposition + public: + + /** Performs the LU Decomposition of mat. Use this constructor. */ +- LUDecomposition( const Matrix & mat ) { perform( mat ); } ++ LUDecomposition( const Matrix & mat ) { this->perform( mat ); } + + protected: + /** Default constructor. Does nothing. \internal +@@ -128,7 +128,7 @@ class LUDecompositionX + + public: + /** Performs the LU Decomposition of mat. Use this constructor. */ +- LUDecompositionX( const MatrixX & mat ) { perform( mat ); } ++ LUDecompositionX( const MatrixX & mat ) { this->perform( mat ); } + + protected: + /** Default constructor. Does nothing. \internal Added: head/x11/metisse/files/patch-FvwmCompositor_eigen_matrix.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/metisse/files/patch-FvwmCompositor_eigen_matrix.h Tue Oct 1 11:49:25 2013 (r328935) @@ -0,0 +1,38 @@ +--- FvwmCompositor/eigen/matrix.h.orig 2008-03-25 17:15:13.000000000 +0000 ++++ FvwmCompositor/eigen/matrix.h +@@ -170,7 +170,7 @@ public: + */ + Matrix( const Matrix & other ) + { +- readArray( other.array() ); ++ this->readArray( other.array() ); + } + + /** +@@ -179,7 +179,7 @@ public: + */ + Matrix( const T * array ) + { +- readArray( array ); ++ this->readArray( array ); + } + + /** +@@ -322,7 +322,7 @@ public: + MatrixX( const MatrixX & other ) + { + init( other.size() ); +- readArray( other.array() ); ++ this->readArray( other.array() ); + } + + /** +@@ -336,7 +336,7 @@ public: + MatrixX( int size, const T * array ) + { + init( size ); +- readArray( array ); ++ this->readArray( array ); + } + + /** Added: head/x11/metisse/files/patch-FvwmCompositor_eigen_vector.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/metisse/files/patch-FvwmCompositor_eigen_vector.h Tue Oct 1 11:49:25 2013 (r328935) @@ -0,0 +1,47 @@ +--- FvwmCompositor/eigen/vector.h.orig 2008-03-25 17:15:13.000000000 +0000 ++++ FvwmCompositor/eigen/vector.h +@@ -141,7 +141,7 @@ public: + */ + Vector( const Vector &v ) + { +- readArray( v.array() ); ++ this->readArray( v.array() ); + } + + /** +@@ -149,7 +149,7 @@ public: + */ + Vector( const T *array ) + { +- readArray( array ); ++ this->readArray( array ); + } + + /** +@@ -160,7 +160,7 @@ public: + Vector( int unused_size, const T *array ) + { + assert( unused_size == this->size() ); +- readArray( array ); ++ this->readArray( array ); + } + + /** +@@ -312,7 +312,7 @@ public: + VectorX( const VectorX & other ) + { + init( other._size() ); +- readArray( other.array() ); ++ this->readArray( other.array() ); + } + + /** +@@ -328,7 +328,7 @@ public: + VectorX( int size, const T * array ) + { + init( size ); +- readArray( array ); ++ this->readArray( array ); + } + + ~VectorX() Added: head/x11/metisse/files/patch-FvwmCompositor_main_AScreen.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/metisse/files/patch-FvwmCompositor_main_AScreen.cxx Tue Oct 1 11:49:25 2013 (r328935) @@ -0,0 +1,10 @@ +--- FvwmCompositor/main/AScreen.cxx.orig 2008-11-25 10:22:45.000000000 +0000 ++++ FvwmCompositor/main/AScreen.cxx +@@ -10,6 +10,7 @@ + * + */ + ++#include + #ifdef HAVE_CONFIG_H + #include "config-not-xserver.h" + #endif