summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.16-Werror-return-type.patch
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2015-05-04 08:32:35 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-14 11:43:59 +0100
commit5f165e1314f9075b0bdd75486e1a24785ed98287 (patch)
treef1f6375722bcfbd843126b240f9bd1d4726bdb6a /meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.16-Werror-return-type.patch
parent109d670e5d189d4ba7ae8b4dbd3d53a549a31875 (diff)
downloadpoky-5f165e1314f9075b0bdd75486e1a24785ed98287.tar.gz
ghostscript: 9.15 -> 9.16
* Update LICENSE's md5sum, the new version added a "of" in the file, the license is the same. * Remove ghostscript-9.02-parallel-make.patch, it has 932 lines and modified 24 files, which is hard to maintain, and it can't be applied since the code has changed, and if we meet parallel issues again, we need fix it in other ways. * Fix a build error of -Werror=return-type. (From OE-Core rev: c5adb5903bd93f1c71acd52062d8c8620de2f944) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.16-Werror-return-type.patch')
-rw-r--r--meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.16-Werror-return-type.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.16-Werror-return-type.patch b/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.16-Werror-return-type.patch
new file mode 100644
index 0000000000..d786482007
--- /dev/null
+++ b/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.16-Werror-return-type.patch
@@ -0,0 +1,30 @@
1From 5d5c83c89be0cff29dde2267fa168e6f7146be8c Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Mon, 4 May 2015 22:31:48 -0700
4Subject: [PATCH] base/gendev.c: fix for -Werror=return-type
5
6Fixed:
7base/gendev.c:80:1: error: return type defaults to 'int' [-Werror=return-type]
8
9Upstream-Status: Pending
10
11Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
12---
13 base/gendev.c | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/base/gendev.c b/base/gendev.c
17index 68a745f..8058b5a 100644
18--- a/base/gendev.c
19+++ b/base/gendev.c
20@@ -77,6 +77,7 @@ static const char *indent_item = "";
21 /* Forward definitions */
22 void add_entry(config *, const char *, const char *, bool);
23
24+int
25 main(int argc, char *argv[])
26 {
27 config conf;
28--
291.7.9.5
30