From owner-svn-ports-all@FreeBSD.ORG Tue Sep 17 15:53:03 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 B7B0C7D0; Tue, 17 Sep 2013 15:53:03 +0000 (UTC) (envelope-from amdmi3@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 A49C12E39; Tue, 17 Sep 2013 15:53:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8HFr32w025922; Tue, 17 Sep 2013 15:53:03 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8HFr1lV025913; Tue, 17 Sep 2013 15:53:01 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201309171553.r8HFr1lV025913@svn.freebsd.org> From: Dmitry Marakasov Date: Tue, 17 Sep 2013 15:53:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327480 - in head/graphics: animorph animorph/files makehuman makehuman/files mhgui 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, 17 Sep 2013 15:53:03 -0000 Author: amdmi3 Date: Tue Sep 17 15:53:01 2013 New Revision: 327480 URL: http://svnweb.freebsd.org/changeset/ports/327480 Log: Fix build with clang/libc++ Added: head/graphics/animorph/files/ head/graphics/animorph/files/patch-include-animorph-util.h (contents, props changed) head/graphics/animorph/files/patch-src-BodySettings.cpp (contents, props changed) head/graphics/animorph/files/patch-src-FaceGroup.cpp (contents, props changed) head/graphics/animorph/files/patch-src-Hotspot.cpp (contents, props changed) head/graphics/makehuman/files/ head/graphics/makehuman/files/patch-src-ComponentID.h (contents, props changed) head/graphics/makehuman/files/patch-src-FileTools.cpp (contents, props changed) Modified: head/graphics/animorph/Makefile head/graphics/makehuman/Makefile head/graphics/mhgui/Makefile Modified: head/graphics/animorph/Makefile ============================================================================== --- head/graphics/animorph/Makefile Tue Sep 17 13:27:06 2013 (r327479) +++ head/graphics/animorph/Makefile Tue Sep 17 15:53:01 2013 (r327480) @@ -15,6 +15,7 @@ GNU_CONFIGURE= yes USE_GMAKE= yes USES= pkgconfig USE_LDCONFIG= yes +USE_GCC= yes # otherwise graphics/makehuman won't link CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Added: head/graphics/animorph/files/patch-include-animorph-util.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/animorph/files/patch-include-animorph-util.h Tue Sep 17 15:53:01 2013 (r327480) @@ -0,0 +1,10 @@ +--- include/animorph/util.h.orig 2007-11-25 12:34:57.000000000 +0300 ++++ include/animorph/util.h 2013-09-14 08:03:24.413227432 +0400 +@@ -37,6 +37,7 @@ + #include + #include + #include ++#include // for atoi() + #include "Vector3.h" + #include "Vertex.h" + #include "VertexVector.h" Added: head/graphics/animorph/files/patch-src-BodySettings.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/animorph/files/patch-src-BodySettings.cpp Tue Sep 17 15:53:01 2013 (r327480) @@ -0,0 +1,10 @@ +--- src/BodySettings.cpp.orig 2007-12-03 01:30:41.000000000 +0300 ++++ src/BodySettings.cpp 2013-09-17 17:25:49.896520104 +0400 +@@ -1,5 +1,7 @@ + #include "../include/animorph/BodySettings.h" + ++#include ++ + using namespace std; + using namespace Animorph; + Added: head/graphics/animorph/files/patch-src-FaceGroup.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/animorph/files/patch-src-FaceGroup.cpp Tue Sep 17 15:53:01 2013 (r327480) @@ -0,0 +1,10 @@ +--- src/FaceGroup.cpp.orig 2007-12-03 01:30:41.000000000 +0300 ++++ src/FaceGroup.cpp 2013-09-17 17:56:37.772519994 +0400 +@@ -1,5 +1,7 @@ + #include "../include/animorph/FaceGroup.h" + ++#include ++ + using namespace std; + using namespace Animorph; + Added: head/graphics/animorph/files/patch-src-Hotspot.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/animorph/files/patch-src-Hotspot.cpp Tue Sep 17 15:53:01 2013 (r327480) @@ -0,0 +1,10 @@ +--- src/Hotspot.cpp.orig 2007-11-25 12:34:58.000000000 +0300 ++++ src/Hotspot.cpp 2013-09-17 17:32:58.043519323 +0400 +@@ -1,5 +1,7 @@ + #include "../include/animorph/Hotspot.h" + ++#include ++ + using namespace std; + using namespace Animorph; + Modified: head/graphics/makehuman/Makefile ============================================================================== --- head/graphics/makehuman/Makefile Tue Sep 17 13:27:06 2013 (r327479) +++ head/graphics/makehuman/Makefile Tue Sep 17 15:53:01 2013 (r327480) @@ -16,7 +16,7 @@ LIB_DEPENDS= animorph:${PORTSDIR}/graphi USES= gmake pkgconfig GNU_CONFIGURE= yes USE_GL= glut -USE_GCC= any # Animation.cpp:94:26: error: variable length array of non-POD element type 'Animorph::BodySettings' +USE_GCC= yes # Animation.cpp:94:26: error: variable length array of non-POD element type 'Animorph::BodySettings' CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Added: head/graphics/makehuman/files/patch-src-ComponentID.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/makehuman/files/patch-src-ComponentID.h Tue Sep 17 15:53:01 2013 (r327480) @@ -0,0 +1,11 @@ +--- src/ComponentID.h.orig 2007-12-03 01:30:18.000000000 +0300 ++++ src/ComponentID.h 2013-09-14 14:26:25.451226331 +0400 +@@ -27,6 +27,8 @@ + #ifndef COMPONENTID_H + #define COMPONENTID_H 1 + ++#include // for for_each in *Panel.cpp ++ + #ifdef HAVE_CONFIG_H + #include + #endif Added: head/graphics/makehuman/files/patch-src-FileTools.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/makehuman/files/patch-src-FileTools.cpp Tue Sep 17 15:53:01 2013 (r327480) @@ -0,0 +1,11 @@ +--- src/FileTools.cpp.orig 2007-11-25 12:28:07.000000000 +0300 ++++ src/FileTools.cpp 2013-09-17 06:11:17.036227572 +0400 +@@ -45,6 +45,8 @@ + #include + #include + #include ++#include ++#include + + /* ========================================================================== * + * FileTools - Implementation Modified: head/graphics/mhgui/Makefile ============================================================================== --- head/graphics/mhgui/Makefile Tue Sep 17 13:27:06 2013 (r327479) +++ head/graphics/mhgui/Makefile Tue Sep 17 15:53:01 2013 (r327480) @@ -21,6 +21,7 @@ USES= pkgconfig USE_LDCONFIG= yes USE_XORG= xi xmu ice sm USE_GL= glut +USE_GCC= yes # otherwise graphics/makehuman won't link CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib