summaryrefslogtreecommitdiffstats
path: root/main/aterm/uclibc.patch
blob: 1c142834572e0712a37ae9faaa40b5b0c467705b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- aterm-1.0.1/src/command.c.orig	2009-06-12 18:04:43.000000000 +0000
+++ aterm-1.0.1/src/command.c	2009-06-12 18:10:23.000000000 +0000
@@ -91,7 +91,12 @@
 
 #if defined (__svr4__) || defined (__lnx21__)
 # include <sys/resource.h>	/* for struct rlimit */
-# include <sys/stropts.h>	/* for I_PUSH */
+# if defined (__UCLIBC__)
+#  define __SID ('S' << 8)
+#  define I_PUSH (__SID | 2)
+# else
+#  include <sys/stropts.h>	/* for I_PUSH */
+# endif
 # define _NEW_TTY_CTRL		/* to get proper defines in <termios.h> */
 #endif