summaryrefslogtreecommitdiff
path: root/packages/gettext/0.19.7/0003-Fix-Cygwin-sys-select.patch
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2021-09-21 07:56:07 (GMT)
committerChris Packham <judge.packham@gmail.com>2021-09-21 09:24:31 (GMT)
commit793b2503458b874e58c9d7fafc68686ecb9fd071 (patch)
treee4094b478f5e109d1b21c6b134890d492f1514eb /packages/gettext/0.19.7/0003-Fix-Cygwin-sys-select.patch
parente4221734830d982a5974132cdd77607b9d2ca1bf (diff)
gettext: Remove obsolete versions
The following versions were marked obsolete in crosstool-ng-1.24.0, remove them. - gettext-0.19.7 Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'packages/gettext/0.19.7/0003-Fix-Cygwin-sys-select.patch')
-rw-r--r--packages/gettext/0.19.7/0003-Fix-Cygwin-sys-select.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/packages/gettext/0.19.7/0003-Fix-Cygwin-sys-select.patch b/packages/gettext/0.19.7/0003-Fix-Cygwin-sys-select.patch
deleted file mode 100644
index 295f7e4..0000000
--- a/packages/gettext/0.19.7/0003-Fix-Cygwin-sys-select.patch
+++ /dev/null
@@ -1,41 +0,0 @@
->From cfbc1c62a1ea5c5809d11b957ad29cd820db15b8 Mon Sep 17 00:00:00 2001
-From: Paul Eggert <address@hidden>
-Date: Mon, 21 Mar 2016 00:49:17 -0700
-Subject: [PATCH] sys_select: port to new Cygwin
-
-Problem reported by Ken Brown in:
-https://lists.gnu.org/archive/html/bug-gnulib/2016-03/msg00054.html
-* lib/sys_select.in.h [__CYGWIN__]: Avoid "unknown type name"
-diagnostics.
----
- gettext-tools/gnulib-lib/sys_select.in.h | 10 ++++++----
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
---- a/gettext-tools/gnulib-lib/sys_select.in.h
-+++ b/gettext-tools/gnulib-lib/sys_select.in.h
-@@ -81,8 +81,9 @@
- of 'struct timeval', and no definition of this type.
- Also, Mac OS X, AIX, HP-UX, IRIX, Solaris, Interix declare select()
- in <sys/time.h>.
-- But avoid namespace pollution on glibc systems. */
--# ifndef __GLIBC__
-+ But avoid namespace pollution on glibc systems and "unknown type
-+ name" problems on Cygwin. */
-+# if !(defined __GLIBC__ || defined __CYGWIN__)
- # include <sys/time.h>
- # endif
-
-@@ -100,10 +101,11 @@
- #endif
-
- /* Get definition of 'sigset_t'.
-- But avoid namespace pollution on glibc systems.
-+ But avoid namespace pollution on glibc systems and "unknown type
-+ name" problems on Cygwin.
- Do this after the include_next (for the sake of OpenBSD 5.0) but before
- the split double-inclusion guard (for the sake of Solaris). */
--#if !(defined __GLIBC__ && !defined __UCLIBC__)
-+#if !((defined __GLIBC__ || defined __CYGWIN__) && !defined __UCLIBC__)
- # include <signal.h>
- #endif
-