>>>>> On Fri, 30 Sep 2016 14:19:49 +0100, Alastair McKinstry
>>>>> <[email protected]> said:
> I have patched 2 RC bugs that are threatening to get tcsh (and hence my
> packages) kicked out of testing.
> Please review the patch:
Sorry, I cannot review the patch, since I'm didn't program in C since
around 20 years. But here's the patch from upstream, I just
found. Feel free to decide if you want to use your patch or do another
NMU with the upstream patch.
commit 4689eb60a74bf13bc146ca3d76e9d7a124ab7b49
Author: christos <christos>
Date: Fri Sep 23 19:17:28 2016 +0000
Don't define BSDWAIT for linux anymore.
diff --git a/sh.proc.c b/sh.proc.c
index 49b199f..874d67c 100644
--- a/sh.proc.c
+++ b/sh.proc.c
@@ -47,11 +47,9 @@ RCSID("$tcsh$")
# define HZ 16
#endif /* aiws */
-#if defined(_BSD) || (defined(IRIS4D) && __STDC__) || defined(__lucid) ||
defined(__linux__) || defined(__GNU__)
-# if !defined(__ANDROID__) && !defined(__GLIBC__)
-# define BSDWAIT
-# endif
-#endif /* _BSD || (IRIS4D && __STDC__) || __lucid || gnu-linux */
+#if defined(_BSD) || (defined(IRIS4D) && __STDC__) || defined(__lucid)
+# define BSDWAIT
+#endif /* _BSD || (IRIS4D && __STDC__) || __lucid */
#ifndef WTERMSIG
# define WTERMSIG(w) (((union wait *) &(w))->w_termsig)
# ifndef BSDWAIT
--
regards Thomas