diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2019-09-13 20:44:48 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2019-09-13 20:44:48 +0000 |
commit | 86e42cce0c4917e52878392af9adda5723cc8c8c (patch) | |
tree | c766f1d7cc42d1fb14771b194b7ed0c1dc77b769 /games/supertuxkart | |
parent | 7c01ec153b6edd2f90beccfcad3a4da7853e4474 (diff) | |
download | ports-86e42cce0c4917e52878392af9adda5723cc8c8c.tar.gz ports-86e42cce0c4917e52878392af9adda5723cc8c8c.zip |
Notes
Diffstat (limited to 'games/supertuxkart')
-rw-r--r-- | games/supertuxkart/Makefile | 1 | ||||
-rw-r--r-- | games/supertuxkart/files/patch-lib_angelscript_source_as__config.h | 12 |
2 files changed, 12 insertions, 1 deletions
diff --git a/games/supertuxkart/Makefile b/games/supertuxkart/Makefile index 6bec541f81da..7adc7bf18582 100644 --- a/games/supertuxkart/Makefile +++ b/games/supertuxkart/Makefile @@ -27,7 +27,6 @@ BROKEN_armv7= invokes x86 assembler BROKEN_mips= invokes x86 assembler BROKEN_mips64= invokes x86 assembler BROKEN_sparc64= invokes x86 assembler -BROKEN_powerpc64= invokes x86 assembler BROKEN_i386= does not build (error: this directive must appear between .cfi_startproc and .cfi_endproc directives) USES= alias cmake compiler:c++11-lib gettext gl \ diff --git a/games/supertuxkart/files/patch-lib_angelscript_source_as__config.h b/games/supertuxkart/files/patch-lib_angelscript_source_as__config.h new file mode 100644 index 000000000000..029c1d2832b1 --- /dev/null +++ b/games/supertuxkart/files/patch-lib_angelscript_source_as__config.h @@ -0,0 +1,12 @@ +--- lib/angelscript/source/as_config.h.orig 2019-04-20 16:40:12 UTC ++++ lib/angelscript/source/as_config.h +@@ -953,7 +953,9 @@ + #define COMPLEX_RETURN_MASK (asOBJ_APP_CLASS_DESTRUCTOR | asOBJ_APP_CLASS_COPY_CONSTRUCTOR | asOBJ_APP_ARRAY) + #define THISCALL_PASS_OBJECT_POINTER_ON_THE_STACK + #define AS_X86 ++ #elif defined(__powerpc64__) ++ #define AS_MAX_PORTABILITY + #elif defined(__LP64__) + #define AS_X64_GCC + #define HAS_128_BIT_PRIMITIVES + #define SPLIT_OBJS_BY_MEMBER_TYPES |