From owner-svn-ports-head@freebsd.org Sun Nov 29 16:34:05 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 401CEA3BAA9; Sun, 29 Nov 2015 16:34:05 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 0F52813C1; Sun, 29 Nov 2015 16:34:04 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tATGY4LA049219; Sun, 29 Nov 2015 16:34:04 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tATGY4u9049218; Sun, 29 Nov 2015 16:34:04 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201511291634.tATGY4u9049218@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Sun, 29 Nov 2015 16:34:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402605 - head/graphics/libGL/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.20 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: Sun, 29 Nov 2015 16:34:05 -0000 Author: mmoll Date: Sun Nov 29 16:34:04 2015 New Revision: 402605 URL: https://svnweb.freebsd.org/changeset/ports/402605 Log: graphics/libGL: unbreak build on sparc64 Approved by: x11 (kwm) MFH: 2015Q4 Differential Revision: https://reviews.freebsd.org/D4311 Modified: head/graphics/libGL/files/patch-src__gallium__include__pipe__p_config.h Modified: head/graphics/libGL/files/patch-src__gallium__include__pipe__p_config.h ============================================================================== --- head/graphics/libGL/files/patch-src__gallium__include__pipe__p_config.h Sun Nov 29 15:52:26 2015 (r402604) +++ head/graphics/libGL/files/patch-src__gallium__include__pipe__p_config.h Sun Nov 29 16:34:04 2015 (r402605) @@ -1,4 +1,4 @@ ---- src/gallium/include/pipe/p_config.h.orig 2014-08-14 17:22:24 UTC +--- src/gallium/include/pipe/p_config.h.orig 2015-11-29 13:40:59 UTC +++ src/gallium/include/pipe/p_config.h @@ -81,6 +81,13 @@ #define PIPE_CC_SUNPRO @@ -14,6 +14,15 @@ /* * Processor architecture +@@ -171,7 +178,7 @@ + + #if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64) || defined(PIPE_ARCH_ARM) || defined(PIPE_ARCH_AARCH64) + #define PIPE_ARCH_LITTLE_ENDIAN +-#elif defined(PIPE_ARCH_PPC) || defined(PIPE_ARCH_PPC_64) || defined(PIPE_ARCH_S390) ++#elif defined(PIPE_ARCH_PPC) || defined(PIPE_ARCH_PPC_64) || defined(PIPE_ARCH_S390) || defined(PIPE_ARCH_SPARC) || defined(PIPE_ARCH_SPARC_64) + #define PIPE_ARCH_BIG_ENDIAN + #endif + @@ -200,6 +207,12 @@ #define PIPE_OS_ANDROID #endif