diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-01-27 22:25:28 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-02-01 19:32:43 +0100 |
commit | 0a40d0191ae47b04bddeab9a08c3394b0b1b56bd (patch) | |
tree | d07ea9c15e606618483fc16210d75814042c8f84 /package/uclibc/0.9.33.2/0061-fix-sparc-networking.patch | |
parent | 1a2225427522be13bf8287e2a4fcf4897884c0fc (diff) | |
download | buildroot-0a40d0191ae47b04bddeab9a08c3394b0b1b56bd.tar.gz buildroot-0a40d0191ae47b04bddeab9a08c3394b0b1b56bd.zip |
uclibc: remove 0.9.33 version
The upstream project is dead, the 0.9.33 version requires tons of
patches, and uclibc-ng has now successfully replaced uclibc. It is
time to get rid of the 0.9.33 version.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/uclibc/0.9.33.2/0061-fix-sparc-networking.patch')
-rw-r--r-- | package/uclibc/0.9.33.2/0061-fix-sparc-networking.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/package/uclibc/0.9.33.2/0061-fix-sparc-networking.patch b/package/uclibc/0.9.33.2/0061-fix-sparc-networking.patch deleted file mode 100644 index 12729507c8..0000000000 --- a/package/uclibc/0.9.33.2/0061-fix-sparc-networking.patch +++ /dev/null @@ -1,39 +0,0 @@ -Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> - -Bug introduced by uclibc-0035-socket.h-pull-socket_type.h-from-eglibc.patch -Sent upstream: http://lists.uclibc.org/pipermail/uclibc/2014-July/048438.html - -diff -Nur uClibc-0.9.33.2.orig/libc/inet/socketcalls.c uClibc-0.9.33.2/libc/inet/socketcalls.c ---- uClibc-0.9.33.2.orig/libc/inet/socketcalls.c 2012-05-15 09:20:09.000000000 +0200 -+++ uClibc-0.9.33.2/libc/inet/socketcalls.c 2014-07-28 14:50:52.477479493 +0200 -@@ -34,6 +34,30 @@ - #define SYS_ACCEPT4 18 - #endif - -+/* for sparc: __NR_socket and others are defined, but syscalls are not implemen -+/* see http://lists.busybox.net/pipermail/uclibc/2004-March/029424.html */ -+#ifdef __sparc__ -+#undef __NR_accept -+#undef __NR_accept4 -+#undef __NR_bind -+#undef __NR_connect -+#undef __NR_getpeername -+#undef __NR_getsockname -+#undef __NR_getsockopt -+#undef __NR_listen -+#undef __NR_recv -+#undef __NR_recvfrom -+#undef __NR_recvmsg -+#undef __NR_send -+#undef __NR_sendmsg -+#undef __NR_sendto -+#undef __NR_setsockopt -+#undef __NR_shutdown -+#undef __NR_socket -+#undef __NR_socketpair -+#endif -+ -+ - #ifdef __UCLIBC_HAS_THREADS_NATIVE__ - #include <sysdep-cancel.h> - #include <pthreadP.h> |