diff options
| -rw-r--r-- | meta-oe/recipes-extended/mozjs/mozjs/0001-mozjs17.0.0-fix-the-compile-bug-of-powerpc.patch | 36 | ||||
| -rw-r--r-- | meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb | 1 |
2 files changed, 37 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/mozjs/mozjs/0001-mozjs17.0.0-fix-the-compile-bug-of-powerpc.patch b/meta-oe/recipes-extended/mozjs/mozjs/0001-mozjs17.0.0-fix-the-compile-bug-of-powerpc.patch new file mode 100644 index 0000000000..de72d4f9a3 --- /dev/null +++ b/meta-oe/recipes-extended/mozjs/mozjs/0001-mozjs17.0.0-fix-the-compile-bug-of-powerpc.patch | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | From da3929a96d9c74e11bf37d128890e18fcb745365 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Lei Maohui <leimaohui@cn.fujitsu.com> | ||
| 3 | Date: Mon, 26 Jan 2015 08:53:19 +0900 | ||
| 4 | Subject: [PATCH] mozjs17.0.0: fix the compile bug of powerpc | ||
| 5 | |||
| 6 | To fix the bug as following | ||
| 7 | |||
| 8 | error: cannot convert '__va_list_tag**' to '__va_list_tag (*)[1]' for | ||
| 9 | argument '5' to 'JSBool TryArgumentFormatter(JSContext*, const char**, | ||
| 10 | JSBool, jsval**, __va_list_tag (*)[1])' | ||
| 11 | |||
| 12 | Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> | ||
| 13 | --- | ||
| 14 | jscpucfg.h | 6 ++++++ | ||
| 15 | 1 file changed, 6 insertions(+) | ||
| 16 | |||
| 17 | diff --git a/jscpucfg.h b/jscpucfg.h | ||
| 18 | index dfb1c14..8683491 100644 | ||
| 19 | --- a/jscpucfg.h | ||
| 20 | +++ b/jscpucfg.h | ||
| 21 | @@ -47,6 +47,12 @@ | ||
| 22 | #elif defined(JS_HAVE_ENDIAN_H) | ||
| 23 | # include <endian.h> | ||
| 24 | |||
| 25 | +#if defined(_POWER) || defined(__powerpc__) || \ | ||
| 26 | + defined(__ppc__) | ||
| 27 | +# define HAVE_VA_LIST_AS_ARRAY 1 | ||
| 28 | +# endif | ||
| 29 | + | ||
| 30 | + | ||
| 31 | # if defined(__BYTE_ORDER) | ||
| 32 | # if __BYTE_ORDER == __LITTLE_ENDIAN | ||
| 33 | # define IS_LITTLE_ENDIAN 1 | ||
| 34 | -- | ||
| 35 | 1.8.4.2 | ||
| 36 | |||
diff --git a/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb b/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb index ab01471d0b..174f6fe0a8 100644 --- a/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb +++ b/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb | |||
| @@ -5,6 +5,7 @@ LIC_FILES_CHKSUM = "file://../../LICENSE;md5=815ca599c9df247a0c7f619bab123dad" | |||
| 5 | SRC_URI = " \ | 5 | SRC_URI = " \ |
| 6 | http://ftp.mozilla.org/pub/mozilla.org/js/${BPN}${PV}.tar.gz \ | 6 | http://ftp.mozilla.org/pub/mozilla.org/js/${BPN}${PV}.tar.gz \ |
| 7 | file://0001-js.pc.in-do-not-include-RequiredDefines.h-for-depend.patch \ | 7 | file://0001-js.pc.in-do-not-include-RequiredDefines.h-for-depend.patch \ |
| 8 | file://0001-mozjs17.0.0-fix-the-compile-bug-of-powerpc.patch \ | ||
| 8 | " | 9 | " |
| 9 | SRC_URI[md5sum] = "20b6f8f1140ef6e47daa3b16965c9202" | 10 | SRC_URI[md5sum] = "20b6f8f1140ef6e47daa3b16965c9202" |
| 10 | SRC_URI[sha256sum] = "321e964fe9386785d3bf80870640f2fa1c683e32fe988eeb201b04471c172fba" | 11 | SRC_URI[sha256sum] = "321e964fe9386785d3bf80870640f2fa1c683e32fe988eeb201b04471c172fba" |
