From owner-svn-ports-all@FreeBSD.ORG Thu Dec 4 18:32:36 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5820177; Thu, 4 Dec 2014 18:32:36 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B80E8FF6; Thu, 4 Dec 2014 18:32:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB4IWauh069255; Thu, 4 Dec 2014 18:32:36 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB4IWag1069253; Thu, 4 Dec 2014 18:32:36 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201412041832.sB4IWag1069253@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 4 Dec 2014 18:32:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373979 - in head/math/glm: . 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.18-1 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: Thu, 04 Dec 2014 18:32:37 -0000 Author: jkim Date: Thu Dec 4 18:32:35 2014 New Revision: 373979 URL: https://svnweb.freebsd.org/changeset/ports/373979 QAT: https://qat.redports.org/buildarchive/r373979/ Log: Make it more libstdc++ friendly. graphics/gource now builds on 8.x and 9.x. Approved by: demon (maintainer) Added: head/math/glm/files/ head/math/glm/files/patch-glm__detail__type_int.hpp (contents, props changed) Modified: head/math/glm/Makefile Modified: head/math/glm/Makefile ============================================================================== --- head/math/glm/Makefile Thu Dec 4 18:24:46 2014 (r373978) +++ head/math/glm/Makefile Thu Dec 4 18:32:35 2014 (r373979) @@ -3,6 +3,7 @@ PORTNAME= glm PORTVERSION= 0.9.5.4 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= math graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} Added: head/math/glm/files/patch-glm__detail__type_int.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/glm/files/patch-glm__detail__type_int.hpp Thu Dec 4 18:32:35 2014 (r373979) @@ -0,0 +1,35 @@ +--- glm/detail/type_int.hpp.orig 2014-12-04 12:55:42.000000000 -0500 ++++ glm/detail/type_int.hpp 2014-12-04 12:57:55.000000000 -0500 +@@ -32,22 +32,22 @@ + #include "setup.hpp" + + #if GLM_HAS_EXTENDED_INTEGER_TYPE +-# include ++# include + #endif + + namespace glm{ + namespace detail + { + # if GLM_HAS_EXTENDED_INTEGER_TYPE +- typedef std::int8_t int8; +- typedef std::int16_t int16; +- typedef std::int32_t int32; +- typedef std::int64_t int64; +- +- typedef std::uint8_t uint8; +- typedef std::uint16_t uint16; +- typedef std::uint32_t uint32; +- typedef std::uint64_t uint64; ++ typedef ::int8_t int8; ++ typedef ::int16_t int16; ++ typedef ::int32_t int32; ++ typedef ::int64_t int64; ++ ++ typedef ::uint8_t uint8; ++ typedef ::uint16_t uint16; ++ typedef ::uint32_t uint32; ++ typedef ::uint64_t uint64; + # else + # if(defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) // C99 detected, 64 bit types available + typedef int64_t sint64;