diff options
| -rw-r--r-- | meta-oe/recipes-extended/indent/indent/0001-Makefile.am-remove-regression-dir.patch | 67 | ||||
| -rw-r--r-- | meta-oe/recipes-extended/indent/indent/0001-src-indent.c-correct-the-check-for-locale.h.patch | 40 | ||||
| -rw-r--r-- | meta-oe/recipes-extended/indent/indent_2.2.12.bb (renamed from meta-oe/recipes-extended/indent/indent_2.2.10.bb) | 11 |
3 files changed, 115 insertions, 3 deletions
diff --git a/meta-oe/recipes-extended/indent/indent/0001-Makefile.am-remove-regression-dir.patch b/meta-oe/recipes-extended/indent/indent/0001-Makefile.am-remove-regression-dir.patch new file mode 100644 index 0000000000..357d77d835 --- /dev/null +++ b/meta-oe/recipes-extended/indent/indent/0001-Makefile.am-remove-regression-dir.patch | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | From 27bda5ee884e79d6d0e76955124d2b0c5798d6cf Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Mingli Yu <mingli.yu@windriver.com> | ||
| 3 | Date: Mon, 25 Feb 2019 00:34:17 -0800 | ||
| 4 | Subject: [PATCH] Makefile.am: remove regression dir | ||
| 5 | |||
| 6 | Remove regression dir to fix below do_compile | ||
| 7 | error: | ||
| 8 | | Making all in regression | ||
| 9 | | /bin/sh: line 20: cd: regression: No such file or directory | ||
| 10 | | Makefile:451: recipe for target 'all-recursive' failed | ||
| 11 | |||
| 12 | BTW, it should be safe not to cover regression dir | ||
| 13 | as there is no Makefile.in under ${S}/regression | ||
| 14 | and the content of ${S}/regression/Makefile as below. | ||
| 15 | ------------------------------------- | ||
| 16 | all: | ||
| 17 | |||
| 18 | install: | ||
| 19 | |||
| 20 | check: | ||
| 21 | ./TEST | ||
| 22 | |||
| 23 | distclean: clean | ||
| 24 | |||
| 25 | maintainer-clean: clean | ||
| 26 | |||
| 27 | distdir: | ||
| 28 | |||
| 29 | clean: | ||
| 30 | @rm -rf output | ||
| 31 | |||
| 32 | .PHONY: all install | ||
| 33 | ------------------------------------- | ||
| 34 | |||
| 35 | Upstream-Status: Pending | ||
| 36 | |||
| 37 | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> | ||
| 38 | --- | ||
| 39 | Makefile.am | 5 ++--- | ||
| 40 | 1 file changed, 2 insertions(+), 3 deletions(-) | ||
| 41 | |||
| 42 | diff --git a/Makefile.am b/Makefile.am | ||
| 43 | index ba37a42..548fea7 100644 | ||
| 44 | --- a/Makefile.am | ||
| 45 | +++ b/Makefile.am | ||
| 46 | @@ -1,7 +1,7 @@ | ||
| 47 | ## Process this file with automake to produce Makefile.in | ||
| 48 | AUTOMAKE_OPTIONS = no-texinfo.tex | ||
| 49 | |||
| 50 | -SUBDIRS = intl src doc po man regression | ||
| 51 | +SUBDIRS = intl src doc po man | ||
| 52 | |||
| 53 | BUILT_SOURCES = | ||
| 54 | |||
| 55 | @@ -13,8 +13,7 @@ EXTRA_DIST = README.md \ | ||
| 56 | aclocal/UTIMBUF.m4 \ | ||
| 57 | miscel/Makefile.mingw32 \ | ||
| 58 | miscel/README.vc++ \ | ||
| 59 | - bootstrap \ | ||
| 60 | - regression | ||
| 61 | + bootstrap | ||
| 62 | |||
| 63 | DISTCLEANFILES=config/config.cache config/config.log config.h | ||
| 64 | |||
| 65 | -- | ||
| 66 | 2.17.1 | ||
| 67 | |||
diff --git a/meta-oe/recipes-extended/indent/indent/0001-src-indent.c-correct-the-check-for-locale.h.patch b/meta-oe/recipes-extended/indent/indent/0001-src-indent.c-correct-the-check-for-locale.h.patch new file mode 100644 index 0000000000..7df7ecb387 --- /dev/null +++ b/meta-oe/recipes-extended/indent/indent/0001-src-indent.c-correct-the-check-for-locale.h.patch | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | From 75369ce004ec0f5e46a432fa1dac8cfc7ae1ef8d Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Mingli Yu <mingli.yu@windriver.com> | ||
| 3 | Date: Sun, 24 Feb 2019 22:35:08 -0800 | ||
| 4 | Subject: [PATCH] src/indent.c: correct the check for locale.h | ||
| 5 | |||
| 6 | Adjust to check HAVE_LC_MESSAGES or HAVE_LOCALE_H | ||
| 7 | to determine whether include locale.h or not to | ||
| 8 | fix below issue: | ||
| 9 | |||
| 10 | | ../../indent-2.2.12/src/indent.c: In function 'main': | ||
| 11 | | ../../indent-2.2.12/src/indent.c:1062:5: error: implicit declaration of function 'setlocale'; did you mean 'setstate'? [-Werror=implicit-function-declaration] | ||
| 12 | | setlocale(LC_ALL, ""); | ||
| 13 | | ^~~~~~~~~ | ||
| 14 | | setstate | ||
| 15 | | ../../indent-2.2.12/src/indent.c:1062:5: error: nested extern declaration of 'setlocale' [-Werror=nested-externs] | ||
| 16 | | ../../indent-2.2.12/src/indent.c:1062:15: error: 'LC_ALL' undeclared (first use in this function) | ||
| 17 | |||
| 18 | Upstream-Status: Pending | ||
| 19 | |||
| 20 | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> | ||
| 21 | --- | ||
| 22 | src/indent.c | 2 +- | ||
| 23 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 24 | |||
| 25 | diff --git a/src/indent.c b/src/indent.c | ||
| 26 | index 4d666e2..0c2780b 100644 | ||
| 27 | --- a/src/indent.c | ||
| 28 | +++ b/src/indent.c | ||
| 29 | @@ -71,7 +71,7 @@ | ||
| 30 | #include <string.h> | ||
| 31 | #include <ctype.h> | ||
| 32 | #include <stdlib.h> | ||
| 33 | -#ifdef HAVE_LOCALE_H | ||
| 34 | +#if defined(HAVE_LC_MESSAGES) || defined(HAVE_LOCALE_H) | ||
| 35 | #include <locale.h> | ||
| 36 | #endif | ||
| 37 | #include "indent.h" | ||
| 38 | -- | ||
| 39 | 2.17.1 | ||
| 40 | |||
diff --git a/meta-oe/recipes-extended/indent/indent_2.2.10.bb b/meta-oe/recipes-extended/indent/indent_2.2.12.bb index d25e8e3174..f2891df50d 100644 --- a/meta-oe/recipes-extended/indent/indent_2.2.10.bb +++ b/meta-oe/recipes-extended/indent/indent_2.2.12.bb | |||
| @@ -11,12 +11,17 @@ LICENSE = "GPLv3" | |||
| 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" |
| 12 | DEPENDS = "virtual/gettext" | 12 | DEPENDS = "virtual/gettext" |
| 13 | 13 | ||
| 14 | SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.gz" | 14 | SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.gz \ |
| 15 | SRC_URI[md5sum] = "be35ea62705733859fbf8caf816d8959" | 15 | file://0001-src-indent.c-correct-the-check-for-locale.h.patch \ |
| 16 | SRC_URI[sha256sum] = "8a9b41be5bfcab5d8c1be74204b10ae78789fc3deabea0775fdced8677292639" | 16 | file://0001-Makefile.am-remove-regression-dir.patch \ |
| 17 | " | ||
| 18 | SRC_URI[md5sum] = "4764b6ac98f6654a35da117b8e5e8e14" | ||
| 19 | SRC_URI[sha256sum] = "e77d68c0211515459b8812118d606812e300097cfac0b4e9fb3472664263bb8b" | ||
| 17 | 20 | ||
| 18 | inherit autotools gettext | 21 | inherit autotools gettext |
| 19 | 22 | ||
| 23 | CFLAGS_class-native += " -Wno-error=unused-value" | ||
| 24 | |||
| 20 | FILES_${PN}-doc += "/usr/doc/indent/indent.html" | 25 | FILES_${PN}-doc += "/usr/doc/indent/indent.html" |
| 21 | 26 | ||
| 22 | BBCLASSEXTEND = "native" | 27 | BBCLASSEXTEND = "native" |
