From owner-svn-ports-all@FreeBSD.ORG Mon Jun 16 18:20:17 2014 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 ESMTPS id 85F43643; Mon, 16 Jun 2014 18:20:17 +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 72E232DA3; Mon, 16 Jun 2014 18:20:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5GIKHhe044558; Mon, 16 Jun 2014 18:20:17 GMT (envelope-from oliver@svn.freebsd.org) Received: (from oliver@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5GIKHBI044555; Mon, 16 Jun 2014 18:20:17 GMT (envelope-from oliver@svn.freebsd.org) Message-Id: <201406161820.s5GIKHBI044555@svn.freebsd.org> From: Oliver Lehmann Date: Mon, 16 Jun 2014 18:20:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358033 - head/graphics/ogre3d/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 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: Mon, 16 Jun 2014 18:20:17 -0000 Author: oliver Date: Mon Jun 16 18:20:16 2014 New Revision: 358033 URL: http://svnweb.freebsd.org/changeset/ports/358033 QAT: https://qat.redports.org/buildarchive/r358033/ Log: try to better detect SSE availability Submitted by: tijl Added: head/graphics/ogre3d/files/patch-OgreMain_include_OgrePlatformInformation.h (contents, props changed) Added: head/graphics/ogre3d/files/patch-OgreMain_include_OgrePlatformInformation.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ogre3d/files/patch-OgreMain_include_OgrePlatformInformation.h Mon Jun 16 18:20:16 2014 (r358033) @@ -0,0 +1,11 @@ +--- OgreMain/include/OgrePlatformInformation.h.orig 2013-12-01 18:28:12.000000000 +0100 ++++ OgreMain/include/OgrePlatformInformation.h 2014-06-15 21:59:18.000000000 +0200 +@@ -94,6 +94,7 @@ + OGRE_PLATFORM != OGRE_PLATFORM_NACL + # define __OGRE_HAVE_SSE 1 + #elif OGRE_DOUBLE_PRECISION == 0 && OGRE_CPU == OGRE_CPU_X86 && (OGRE_COMPILER == OGRE_COMPILER_GNUC || OGRE_COMPILER == OGRE_COMPILER_CLANG) && \ ++ defined(__SSE__) && \ + OGRE_PLATFORM != OGRE_PLATFORM_APPLE_IOS && OGRE_PLATFORM != OGRE_PLATFORM_NACL + # define __OGRE_HAVE_SSE 1 + #endif +