mirror of https://git.FreeBSD.org/ports.git
Browse Source
- Fix building with some DEFAULT OPTIONS off [1] PR: 265500 [1] Reported by: a.shikov@itcons.net.ua [1] Sponsored by: Bounce Expertsmain
10 changed files with 54 additions and 33 deletions
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1657140674 |
||||
SHA256 (php-8.2.0alpha3.tar.xz) = 8960799d88319fedb6a4b6be16a9fa08069116169b6b34aec50eb418a411a2e8 |
||||
SIZE (php-8.2.0alpha3.tar.xz) = 11743380 |
||||
TIMESTAMP = 1659606224 |
||||
SHA256 (php-8.2.0beta2.tar.xz) = cffb46d5458b52e93876584c77631620003e420cbe119fe864925fca188e01bd |
||||
SIZE (php-8.2.0beta2.tar.xz) = 11828116 |
||||
|
@ -1,11 +1,20 @@
|
||||
--- ext/pcre/pcre2lib/sljit/sljitConfigInternal.h.orig 2022-03-25 09:54:56 UTC |
||||
--- ext/pcre/pcre2lib/sljit/sljitConfigInternal.h.orig 2022-08-02 13:57:03 UTC |
||||
+++ ext/pcre/pcre2lib/sljit/sljitConfigInternal.h |
||||
@@ -283,7 +283,7 @@ |
||||
/* Instruction cache flush. */ |
||||
/****************************/ |
||||
@@ -303,7 +303,7 @@ extern "C" { |
||||
/* Type of public API functions. */ |
||||
/*********************************/ |
||||
|
||||
-#ifndef SLJIT_API_FUNC_ATTRIBUTE
|
||||
+#ifndef SLJIT_API_FUNC_ATTRIBUTE |
||||
#if (defined SLJIT_CONFIG_STATIC && SLJIT_CONFIG_STATIC) |
||||
/* Static ABI functions. For all-in-one programs. */ |
||||
|
||||
@@ -333,7 +333,7 @@ extern "C" { |
||||
* beware APPLE is known to have removed the code in iOS so |
||||
* it will need to be excempted or result in broken builds |
||||
*/ |
||||
-#if (!defined SLJIT_CACHE_FLUSH && defined __has_builtin) |
||||
+#if (!defined SLJIT_CACHE_FLUSH && defined __has_builtin && !defined SLJIT_CONFIG_PPC_32) |
||||
#if __has_builtin(__builtin___clear_cache) |
||||
#if __has_builtin(__builtin___clear_cache) && !defined(__clang__) |
||||
|
||||
#define SLJIT_CACHE_FLUSH(from, to) \ |
||||
/*
|
||||
|
Loading…
Reference in new issue