Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Dec 2018 15:59:48 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r486868 - head/www/webkit-gtk3/files
Message-ID:  <201812071559.wB7FxmmZ056843@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Fri Dec  7 15:59:48 2018
New Revision: 486868
URL: https://svnweb.freebsd.org/changeset/ports/486868

Log:
  To build on powerpc64, assembler, JIT, YARR JIT and Sampling Profiler
  need to be disabled.
  
  PR:		233731
  Submitted by:	Piotr Kubaj
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/www/webkit-gtk3/files/patch-Source_WTF_wtf_Platform.h

Modified: head/www/webkit-gtk3/files/patch-Source_WTF_wtf_Platform.h
==============================================================================
--- head/www/webkit-gtk3/files/patch-Source_WTF_wtf_Platform.h	Fri Dec  7 15:34:52 2018	(r486867)
+++ head/www/webkit-gtk3/files/patch-Source_WTF_wtf_Platform.h	Fri Dec  7 15:59:48 2018	(r486868)
@@ -1,7 +1,25 @@
-This patch reportedly fixes build for ARM. See PR 208569
+This patch reportedly fixes build for ARM and powerpc64. See PR 208569
 
 --- Source/WTF/wtf/Platform.h.orig	2016-04-10 06:48:36 UTC
 +++ Source/WTF/wtf/Platform.h
+@@ -119,11 +119,16 @@
+ 
+ /* CPU(PPC64) - PowerPC 64-bit Big Endian */
+ #if (  defined(__ppc64__)      \
+-    || defined(__PPC64__))     \
++    || defined(__PPC64__)      \
++    || defined(__powerpc64__))   \
+     && defined(__BYTE_ORDER__) \
+     && (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)
+ #define WTF_CPU_PPC64 1
+ #define WTF_CPU_BIG_ENDIAN 1
++#define ENABLE_ASSEMBLER 0
++#define ENABLE_JIT 0
++#define ENABLE_YARR_JIT 0
++#define ENABLE_SAMPLING_PROFILER 0
+ #endif
+ 
+ /* CPU(PPC64) - PowerPC 64-bit Little Endian */
 @@ -218,6 +218,7 @@
  #elif defined(__ARM_ARCH_6__) \
      || defined(__ARM_ARCH_6J__) \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812071559.wB7FxmmZ056843>