diff options
author | Roy.Li <rongqing.li@windriver.com> | 2012-07-31 15:30:00 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-31 11:59:05 +0100 |
commit | 8c7480e3dfcb4563010c17e3175fa9133bf439aa (patch) | |
tree | 193403b6a69a54bcd8ba81e7c842e830b2b17f9a | |
parent | 780ba469754b538a154d40b0e06e7bb48cbd13a9 (diff) | |
download | poky-8c7480e3dfcb4563010c17e3175fa9133bf439aa.tar.gz |
slang: change char type to signed char in macros
[YOCTO 2726]
The patch of converting char type to signed char is only applied to arm,
in fact it should be applied to powerpc too since powerpc has the same
assumption for char type. To x86 and mips, this patch has not impact.
(From OE-Core rev: 8c6a9bd7b4fea62b5765caecad660d372379e412)
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/slang/slang_2.2.4.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/slang/slang_2.2.4.bb b/meta/recipes-extended/slang/slang_2.2.4.bb index 7082611fbe..b624af8c9c 100644 --- a/meta/recipes-extended/slang/slang_2.2.4.bb +++ b/meta/recipes-extended/slang/slang_2.2.4.bb | |||
@@ -10,7 +10,7 @@ to recode S-Lang procedures in C if you need to." | |||
10 | HOMEPAGE = "http://www.jedsoft.org/slang/" | 10 | HOMEPAGE = "http://www.jedsoft.org/slang/" |
11 | SECTION = "libs" | 11 | SECTION = "libs" |
12 | DEPENDS = "pcre" | 12 | DEPENDS = "pcre" |
13 | PR = "r10" | 13 | PR = "r11" |
14 | 14 | ||
15 | LICENSE = "GPLv2" | 15 | LICENSE = "GPLv2" |
16 | LIC_FILES_CHKSUM = "file://COPYING;md5=a52a18a472d4f7e45479b06563717c02" | 16 | LIC_FILES_CHKSUM = "file://COPYING;md5=a52a18a472d4f7e45479b06563717c02" |
@@ -19,8 +19,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a52a18a472d4f7e45479b06563717c02" | |||
19 | SRC_URI = "ftp://space.mit.edu/pub/davis/slang/v2.2/slang-${PV}.tar.bz2 \ | 19 | SRC_URI = "ftp://space.mit.edu/pub/davis/slang/v2.2/slang-${PV}.tar.bz2 \ |
20 | file://rpathfix.patch \ | 20 | file://rpathfix.patch \ |
21 | file://fix-check-pcre.patch \ | 21 | file://fix-check-pcre.patch \ |
22 | file://change-char-type-to-signed-char-in-macros.patch \ | ||
22 | " | 23 | " |
23 | SRC_URI_append_arm = " file://change-char-type-to-signed-char-in-macros.patch" | ||
24 | 24 | ||
25 | inherit autotools | 25 | inherit autotools |
26 | 26 | ||