diff options
author | mirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-06-20 22:18:43 +0000 |
---|---|---|
committer | mirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-06-20 22:18:43 +0000 |
commit | b211f2f9da8479d5c0e235b4b717f8527f2b8d50 (patch) | |
tree | 06bb7cbe4ee7fed0850d1fcd16be284c3d3d20e6 /toolchain/uClibc/patches-0.9.30+nptl/130-compile_fix.patch | |
parent | 034599263990a8ab206af90239d63a0ee7df75eb (diff) |
add support for uClibc version 0.9.32 based on git rev a7642511b08b0b8a4012bab67cb8aa554992df6b,
this includes support for nptl which got merged into the uClibc master branch recently
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21856 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/uClibc/patches-0.9.30+nptl/130-compile_fix.patch')
-rw-r--r-- | toolchain/uClibc/patches-0.9.30+nptl/130-compile_fix.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/toolchain/uClibc/patches-0.9.30+nptl/130-compile_fix.patch b/toolchain/uClibc/patches-0.9.30+nptl/130-compile_fix.patch deleted file mode 100644 index ed3812a8e..000000000 --- a/toolchain/uClibc/patches-0.9.30+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__ */ |