summaryrefslogtreecommitdiffstats
path: root/toolchain/uClibc/uClibc-0.9.33-define-MSG_CMSG_CLOEXEC.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2012-04-11 18:41:06 -0300
committerPeter Korsgaard <jacmet@sunsite.dk>2012-04-14 23:08:07 +0200
commitd6c110e77fce6ebaf79b02caa69f1f5659f86100 (patch)
tree8d741cc8c6d6f030463960b41dc8aa78e732de09 /toolchain/uClibc/uClibc-0.9.33-define-MSG_CMSG_CLOEXEC.patch
parent11c06f763423dabcf1cfe1c8b41c384a4b884222 (diff)
downloadbuildroot-novena-d6c110e77fce6ebaf79b02caa69f1f5659f86100.tar.gz
buildroot-novena-d6c110e77fce6ebaf79b02caa69f1f5659f86100.zip
toolchain/uClibc: bump 0.9.33.x series to version 0.9.33.1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/uClibc/uClibc-0.9.33-define-MSG_CMSG_CLOEXEC.patch')
-rw-r--r--toolchain/uClibc/uClibc-0.9.33-define-MSG_CMSG_CLOEXEC.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/toolchain/uClibc/uClibc-0.9.33-define-MSG_CMSG_CLOEXEC.patch b/toolchain/uClibc/uClibc-0.9.33-define-MSG_CMSG_CLOEXEC.patch
deleted file mode 100644
index c699b6b11..000000000
--- a/toolchain/uClibc/uClibc-0.9.33-define-MSG_CMSG_CLOEXEC.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Add definition of MSG_WAITFORONE and MSG_CMSG_CLOEXEC
-
-From yocto:
-http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-core/uclibc/uclibc-0.9.33/define-MSG_CMSG_CLOEXEC.patch
-
-Upstream-Status: Pending
-
-Index: git/libc/sysdeps/linux/common/bits/socket.h
-===================================================================
---- git.orig/libc/sysdeps/linux/common/bits/socket.h 2012-01-26 23:23:21.537456132 -0800
-+++ git/libc/sysdeps/linux/common/bits/socket.h 2012-01-26 23:25:10.125461388 -0800
-@@ -235,8 +235,15 @@
- #define MSG_ERRQUEUE MSG_ERRQUEUE
- MSG_NOSIGNAL = 0x4000, /* Do not generate SIGPIPE. */
- #define MSG_NOSIGNAL MSG_NOSIGNAL
-- MSG_MORE = 0x8000 /* Sender will send more. */
-+ MSG_MORE = 0x8000, /* Sender will send more. */
- #define MSG_MORE MSG_MORE
-+ MSG_WAITFORONE = 0x10000, /* Wait for at least one packet to return.*/
-+#define MSG_WAITFORONE MSG_WAITFORONE
-+
-+ MSG_CMSG_CLOEXEC = 0x40000000 /* Set close_on_exit for file
-+ descriptor received through
-+ SCM_RIGHTS. */
-+#define MSG_CMSG_CLOEXEC MSG_CMSG_CLOEXEC
- };
-
-