All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/icu: remove xlocale.h header
@ 2017-10-02 20:52 Romain Naour
  2017-10-02 20:52 ` [Buildroot] [PATCH] package/netsniff-ng: add missing header Romain Naour
  2017-10-03 12:20 ` [Buildroot] [PATCH] package/icu: remove xlocale.h header Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Romain Naour @ 2017-10-02 20:52 UTC (permalink / raw)
  To: buildroot

Remove xlocale.h header since it's removed from glibc 2.26.

Reported-by: Ross <grunpferd@netscape.net>
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 package/icu/0006-i18n-Drop-include-xlocale.h.patch | 39 ++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 package/icu/0006-i18n-Drop-include-xlocale.h.patch

diff --git a/package/icu/0006-i18n-Drop-include-xlocale.h.patch b/package/icu/0006-i18n-Drop-include-xlocale.h.patch
new file mode 100644
index 0000000..a5eb9cb
--- /dev/null
+++ b/package/icu/0006-i18n-Drop-include-xlocale.h.patch
@@ -0,0 +1,39 @@
+From 5f38e4f8c4be351db96a3be23ce25c97597cc508 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Mon, 2 Oct 2017 22:41:02 +0200
+Subject: [PATCH] i18n: Drop include <xlocale.h>
+
+glibc 2.26 drops this header
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Reported Upstream: http://bugs.icu-project.org/trac/ticket/13385
+From: https://git.yoctoproject.org/cgit.cgi/poky/commit/meta/recipes-support/icu/icu/0001-i18n-Drop-include-xlocale.h.patch?id=931430f94c018bc3f58d70e11ca4a4ae7cb2e19c
+
+Signed-off-by: Romain Naour <romain.naour@gmail.com>
+---
+Upstream-Status: Pending
+---
+ source/i18n/digitlst.cpp | 6 +-----
+ 1 file changed, 1 insertion(+), 5 deletions(-)
+
+diff --git a/source/i18n/digitlst.cpp b/source/i18n/digitlst.cpp
+index 4d7c3f4..f111cf3 100644
+--- a/source/i18n/digitlst.cpp
++++ b/source/i18n/digitlst.cpp
+@@ -61,11 +61,7 @@
+ #endif
+ 
+ #if U_USE_STRTOD_L
+-# if U_PLATFORM_USES_ONLY_WIN32_API || U_PLATFORM == U_PF_CYGWIN
+-#   include <locale.h>
+-# else
+-#   include <xlocale.h>
+-# endif
++# include <locale.h>
+ #endif
+ 
+ // ***************************************************************************
+-- 
+2.9.5
+
-- 
2.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] package/netsniff-ng: add missing header
  2017-10-02 20:52 [Buildroot] [PATCH] package/icu: remove xlocale.h header Romain Naour
@ 2017-10-02 20:52 ` Romain Naour
  2017-10-03 12:30   ` Peter Korsgaard
  2017-10-03 12:20 ` [Buildroot] [PATCH] package/icu: remove xlocale.h header Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Romain Naour @ 2017-10-02 20:52 UTC (permalink / raw)
  To: buildroot

Like for nfs-utils and strongswan, add stdint.h header for
UINT16_MAX definition

Reported-by: Ross <grunpferd@netscape.net>
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 ...0004-staging-compilation-fix-with-new-gcc.patch | 31 ++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 package/netsniff-ng/0004-staging-compilation-fix-with-new-gcc.patch

diff --git a/package/netsniff-ng/0004-staging-compilation-fix-with-new-gcc.patch b/package/netsniff-ng/0004-staging-compilation-fix-with-new-gcc.patch
new file mode 100644
index 0000000..fce604e
--- /dev/null
+++ b/package/netsniff-ng/0004-staging-compilation-fix-with-new-gcc.patch
@@ -0,0 +1,31 @@
+From 551aa0ee996132e443b5d12cbb6f114ac9aabcd3 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= <jskarvad@redhat.com>
+Date: Mon, 3 Jul 2017 18:24:32 +0200
+Subject: [PATCH] staging: compilation fix with new gcc
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Jaroslav ?karvada <jskarvad@redhat.com>
+
+Upstream patch 551aa0ee996132e443b5d12cbb6f114ac9aabcd3
+Signed-off-by: Romain Naour <romain.naour@gmail.com>
+---
+ staging/mz.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/staging/mz.h b/staging/mz.h
+index 5ed05a7..aa2c36f 100644
+--- a/staging/mz.h
++++ b/staging/mz.h
+@@ -40,6 +40,7 @@
+ #include <netinet/in.h>
+ #include <stdarg.h>
+ #include <math.h>
++#include <stdint.h>
+ 
+ extern int verbose_level;
+ 
+-- 
+2.9.5
+
-- 
2.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] package/icu: remove xlocale.h header
  2017-10-02 20:52 [Buildroot] [PATCH] package/icu: remove xlocale.h header Romain Naour
  2017-10-02 20:52 ` [Buildroot] [PATCH] package/netsniff-ng: add missing header Romain Naour
@ 2017-10-03 12:20 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2017-10-03 12:20 UTC (permalink / raw)
  To: buildroot

>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:

 > Remove xlocale.h header since it's removed from glibc 2.26.
 > Reported-by: Ross <grunpferd@netscape.net>
 > Signed-off-by: Romain Naour <romain.naour@gmail.com>

Committed after slightly tweaking the commit message, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] package/netsniff-ng: add missing header
  2017-10-02 20:52 ` [Buildroot] [PATCH] package/netsniff-ng: add missing header Romain Naour
@ 2017-10-03 12:30   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2017-10-03 12:30 UTC (permalink / raw)
  To: buildroot

>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:

 > Like for nfs-utils and strongswan, add stdint.h header for
 > UINT16_MAX definition

 > Reported-by: Ross <grunpferd@netscape.net>
 > Signed-off-by: Romain Naour <romain.naour@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-10-03 12:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-02 20:52 [Buildroot] [PATCH] package/icu: remove xlocale.h header Romain Naour
2017-10-02 20:52 ` [Buildroot] [PATCH] package/netsniff-ng: add missing header Romain Naour
2017-10-03 12:30   ` Peter Korsgaard
2017-10-03 12:20 ` [Buildroot] [PATCH] package/icu: remove xlocale.h header Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.