View | Details | Raw Unified | Return to bug 237149
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 11-17 Link Here
11
11
12
LICENSE=	GPLv3
12
LICENSE=	GPLv3
13
13
14
NOT_FOR_ARCHS=		aarch64 armv6 armv7 powerpc64
14
NOT_FOR_ARCHS=		aarch64 armv6 armv7
15
NOT_FOR_ARCHS_REASON=	fails to configure: Architecture not supported
15
NOT_FOR_ARCHS_REASON=	fails to configure: Architecture not supported
16
16
17
LIB_DEPENDS=	libcurl.so:ftp/curl \
17
LIB_DEPENDS=	libcurl.so:ftp/curl \
(-)files/patch-MP_code_qcommon_q__platform.h (-3 / +8 lines)
Lines 1-6 Link Here
1
--- MP/code/qcommon/q_platform.h.orig	2016-07-29 22:00:04 UTC
1
--- MP/code/qcommon/q_platform.h.orig	2019-03-16 18:09:48 UTC
2
+++ MP/code/qcommon/q_platform.h
2
+++ MP/code/qcommon/q_platform.h
3
@@ -35,11 +35,7 @@ Foundation, Inc., 51 Franklin St, Fifth 
3
@@ -35,11 +35,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
4
 
4
 
5
 #else
5
 #else
6
 
6
 
Lines 12-18 Link Here
12
 
12
 
13
 #if (defined(powerc) || defined(powerpc) || defined(ppc) || \
13
 #if (defined(powerc) || defined(powerpc) || defined(ppc) || \
14
 	defined(__ppc) || defined(__ppc__)) && !defined(C_ONLY)
14
 	defined(__ppc) || defined(__ppc__)) && !defined(C_ONLY)
15
@@ -229,8 +225,6 @@ Foundation, Inc., 51 Franklin St, Fifth 
15
@@ -224,11 +220,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
16
 #ifdef __i386__
16
 #ifdef __i386__
17
 #define ARCH_STRING "i386"
17
 #define ARCH_STRING "i386"
18
 #elif defined __amd64__
18
 #elif defined __amd64__
Lines 21-23 Link Here
21
 #define ARCH_STRING "amd64"
21
 #define ARCH_STRING "amd64"
22
 #elif defined __axp__
22
 #elif defined __axp__
23
 #define ARCH_STRING "alpha"
23
 #define ARCH_STRING "alpha"
24
+#elif defined __powerpc64__
25
+#define ARCH_STRING "powerpc64"
26
 #endif
27
 
28
 #if BYTE_ORDER == BIG_ENDIAN
(-)files/patch-SP_code_qcommon_q__platform.h (-3 / +8 lines)
Lines 1-6 Link Here
1
--- SP/code/qcommon/q_platform.h.orig	2015-12-26 14:21:49 UTC
1
--- SP/code/qcommon/q_platform.h.orig	2019-03-16 18:09:48 UTC
2
+++ SP/code/qcommon/q_platform.h
2
+++ SP/code/qcommon/q_platform.h
3
@@ -35,11 +35,7 @@ Foundation, Inc., 51 Franklin St, Fifth 
3
@@ -35,11 +35,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
4
 
4
 
5
 #else
5
 #else
6
 
6
 
Lines 12-18 Link Here
12
 
12
 
13
 #if (defined(powerc) || defined(powerpc) || defined(ppc) || \
13
 #if (defined(powerc) || defined(powerpc) || defined(ppc) || \
14
 	defined(__ppc) || defined(__ppc__)) && !defined(C_ONLY)
14
 	defined(__ppc) || defined(__ppc__)) && !defined(C_ONLY)
15
@@ -229,8 +225,6 @@ Foundation, Inc., 51 Franklin St, Fifth 
15
@@ -224,11 +220,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
16
 #ifdef __i386__
16
 #ifdef __i386__
17
 #define ARCH_STRING "i386"
17
 #define ARCH_STRING "i386"
18
 #elif defined __amd64__
18
 #elif defined __amd64__
Lines 21-23 Link Here
21
 #define ARCH_STRING "amd64"
21
 #define ARCH_STRING "amd64"
22
 #elif defined __axp__
22
 #elif defined __axp__
23
 #define ARCH_STRING "alpha"
23
 #define ARCH_STRING "alpha"
24
+#elif defined __powerpc64__
25
+#define ARCH_STRING "powerpc64"
26
 #endif
27
 
28
 #if BYTE_ORDER == BIG_ENDIAN

Return to bug 237149