chiark / gitweb /
Rebase patch queue onto upstream 8.39:
[pcre3.git] / debian / patches / Disable_JIT_on_sparc64.patch
1 From: Matthew Vernon <matthew@debian.org>
2 Date: Wed, 13 Jul 2016 21:20:13 +0100
3 Subject: Disable_JIT_on_sparc64
4
5 ---
6  sljit/sljitConfigInternal.h | 6 +++++-
7  1 file changed, 5 insertions(+), 1 deletion(-)
8
9 diff --git a/sljit/sljitConfigInternal.h b/sljit/sljitConfigInternal.h
10 index b2bc80a..2d031f5 100644
11 --- a/sljit/sljitConfigInternal.h
12 +++ b/sljit/sljitConfigInternal.h
13 @@ -145,7 +145,11 @@
14  #elif defined(__mips64)
15  #define SLJIT_CONFIG_MIPS_64 1
16  #elif defined(__sparc__) || defined(__sparc)
17 -#define SLJIT_CONFIG_SPARC_32 1
18 +# if defined(__arch64__)
19 +#  define SLJIT_CONFIG_UNSUPPORTED 1
20 +# else
21 +#  define SLJIT_CONFIG_SPARC_32 1
22 +# endif
23  #elif defined(__tilegx__)
24  #define SLJIT_CONFIG_TILEGX 1
25  #else