diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-04-24 02:07:24 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-04-24 02:07:24 +0000 |
commit | 222f37cbde2e880148eecd7bee5f39bb2afa6159 (patch) | |
tree | a6c174b24a09175c2add6a0264a5d89a7f584a50 /toolchain/uClibc/patches-nptl/130-compile_fix.patch | |
parent | 2783110a97a84c52b590221b637b3596d18dc013 (diff) | |
download | upstream-222f37cbde2e880148eecd7bee5f39bb2afa6159.tar.gz upstream-222f37cbde2e880148eecd7bee5f39bb2afa6159.tar.bz2 upstream-222f37cbde2e880148eecd7bee5f39bb2afa6159.zip |
uClibc cleanup: - use full version string (0.9.30.1), instead of base (0.9.30) + extra (.1) - remove support for 0.9.28 and snapshots (building from SVN to be added later)
SVN-Revision: 15368
Diffstat (limited to 'toolchain/uClibc/patches-nptl/130-compile_fix.patch')
-rw-r--r-- | toolchain/uClibc/patches-nptl/130-compile_fix.patch | 36 |
1 files changed, 0 insertions, 36 deletions
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__ */ |