python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / python3 / 0011-Serial-ioctl-workaround.patch
blobcbd96b4ea734c486c86096f5cd35085904d2e722
1 From 49bfbdadd4808e7868e443b2786faf513c9818ea Mon Sep 17 00:00:00 2001
2 From: Baruch Siach <baruch@tkos.co.il>
3 Date: Wed, 23 Dec 2015 11:44:02 +0100
4 Subject: [PATCH] Serial ioctl() workaround
6 The ioctls.h of some architectures (notably xtensa) references structs from
7 linux/serial.h. Make sure to include this header as well.
9 Also, undef TIOCTTYGSTRUCT that require reference to internal kernel tty_struct,
10 but isn't actually referenced in modern kernels.
12 Signed-off-by: Baruch Siach <baruch@tkos.co.il>
13 ---
14 Modules/termios.c | 2 ++
15 1 file changed, 2 insertions(+)
17 diff --git a/Modules/termios.c b/Modules/termios.c
18 index b78d33e..58b0444 100644
19 --- a/Modules/termios.c
20 +++ b/Modules/termios.c
21 @@ -9,7 +9,9 @@
22 #endif
24 #include <termios.h>
25 +#include <linux/serial.h>
26 #include <sys/ioctl.h>
27 +#undef TIOCTTYGSTRUCT
29 /* HP-UX requires that this be included to pick up MDCD, MCTS, MDSR,
30 * MDTR, MRI, and MRTS (appearantly used internally by some things
31 --
32 2.7.4