diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-25 16:43:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-25 16:43:57 +0000 |
commit | 9526ee659401dee7160f35cb62ded2779bcbbc99 (patch) | |
tree | 812ad73bde9c84dcc02a3acbc5db576369ca314a /main/aterm/uclibc.patch | |
parent | 05e09c1126a898b6d0af491fef0401bf53e297f8 (diff) | |
download | aports-9526ee659401dee7160f35cb62ded2779bcbbc99.tar.bz2 aports-9526ee659401dee7160f35cb62ded2779bcbbc99.tar.xz |
merged x11 repository into main
ref #255
Diffstat (limited to 'main/aterm/uclibc.patch')
-rw-r--r-- | main/aterm/uclibc.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main/aterm/uclibc.patch b/main/aterm/uclibc.patch new file mode 100644 index 0000000000..1c14283457 --- /dev/null +++ b/main/aterm/uclibc.patch @@ -0,0 +1,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 + |