aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/uClibc
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-04-23 02:52:50 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-04-23 02:52:50 +0000
commit0d00b1cb591789959a4e75442e32b05f360f7b2e (patch)
tree7d6128d2692b72d1582be5545b625cf684a1bc8c /toolchain/uClibc
parentc73f8dfbe0561165421e2d76efe736f93e4c8810 (diff)
downloadupstream-0d00b1cb591789959a4e75442e32b05f360f7b2e.tar.gz
upstream-0d00b1cb591789959a4e75442e32b05f360f7b2e.tar.bz2
upstream-0d00b1cb591789959a4e75442e32b05f360f7b2e.zip
uclibc: remove the sockets_throw patch from 0.9.30, as it does not apply to 0.9.30.1
SVN-Revision: 15343
Diffstat (limited to 'toolchain/uClibc')
-rw-r--r--toolchain/uClibc/patches-0.9.30/130-sockets_throw.patch11
-rw-r--r--toolchain/uClibc/patches-nptl/130-compile_fix.patch36
2 files changed, 0 insertions, 47 deletions
diff --git a/toolchain/uClibc/patches-0.9.30/130-sockets_throw.patch b/toolchain/uClibc/patches-0.9.30/130-sockets_throw.patch
deleted file mode 100644
index 619d01670a..0000000000
--- a/toolchain/uClibc/patches-0.9.30/130-sockets_throw.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/libc/sysdeps/linux/mips/bits/socket.h
-+++ b/libc/sysdeps/linux/mips/bits/socket.h
-@@ -269,7 +269,7 @@ struct cmsghdr
- #define CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len))
-
- extern struct cmsghdr *__cmsg_nxthdr (struct msghdr *__mhdr,
-- struct cmsghdr *__cmsg) __THROW;
-+ struct cmsghdr *__cmsg);
- #ifdef __USE_EXTERN_INLINES
- # ifndef _EXTERN_INLINE
- # define _EXTERN_INLINE extern __inline
diff --git a/toolchain/uClibc/patches-nptl/130-compile_fix.patch b/toolchain/uClibc/patches-nptl/130-compile_fix.patch
deleted file mode 100644
index ed3812a8ea..0000000000
--- a/toolchain/uClibc/patches-nptl/130-compile_fix.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- a/librt/mq_receive.c
-+++ b/librt/mq_receive.c
-@@ -6,7 +6,8 @@
- #include <stddef.h>
- #include <sys/syscall.h>
- #include <mqueue.h>
--#warning FIXME: hard dependency on ADVANCED REALTIME feature
-+
-+#ifdef __UCLIBC_HAS_ADVANCED_REALTIME__
-
- librt_hidden_proto(mq_timedreceive)
-
-@@ -44,3 +45,5 @@ ssize_t mq_receive(mqd_t mqdes, char *ms
- {
- return mq_timedreceive(mqdes, msg_ptr, msg_len, msg_prio, NULL);
- }
-+
-+#endif /* __UCLIBC_HAS_ADVANCED_REALTIME__ */
---- a/librt/mq_send.c
-+++ b/librt/mq_send.c
-@@ -6,7 +6,8 @@
- #include <stddef.h>
- #include <sys/syscall.h>
- #include <mqueue.h>
--#warning FIXME: hard dependency on ADVANCED REALTIME feature
-+
-+#ifdef __UCLIBC_HAS_ADVANCED_REALTIME__
-
- librt_hidden_proto(mq_timedsend)
-
-@@ -43,3 +44,5 @@ int mq_send(mqd_t mqdes, const char *msg
- {
- return mq_timedsend(mqdes, msg_ptr, msg_len, msg_prio, NULL);
- }
-+
-+#endif /* __UCLIBC_HAS_ADVANCED_REALTIME__ */