summaryrefslogtreecommitdiff
path: root/meta/recipes-core/uclibc/uclibc-git/dup3.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2013-01-21 21:04:27 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-22 15:55:35 +0000
commitb4ee580d37d15e699dd6efc6551f4c7f8e902e2a (patch)
tree1168fba9d570fd769badd8e214b20ee2c697dddb /meta/recipes-core/uclibc/uclibc-git/dup3.patch
parent202263aeca837dc7b6615a3dc34569c199163733 (diff)
downloadopenembedded-core-b4ee580d37d15e699dd6efc6551f4c7f8e902e2a.tar.gz
openembedded-core-b4ee580d37d15e699dd6efc6551f4c7f8e902e2a.tar.bz2
openembedded-core-b4ee580d37d15e699dd6efc6551f4c7f8e902e2a.zip
uclibc-git: Upgrades to latest git
Drop upstream accepted patches Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/uclibc/uclibc-git/dup3.patch')
-rw-r--r--meta/recipes-core/uclibc/uclibc-git/dup3.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-core/uclibc/uclibc-git/dup3.patch b/meta/recipes-core/uclibc/uclibc-git/dup3.patch
deleted file mode 100644
index 481f23b2c4..0000000000
--- a/meta/recipes-core/uclibc/uclibc-git/dup3.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Implement dup3()
-
-Upstream-Status: Pending
-
-Index: git/libc/sysdeps/linux/common/dup3.c
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ git/libc/sysdeps/linux/common/dup3.c 2012-01-27 07:40:52.802900849 -0800
-@@ -0,0 +1,15 @@
-+/* vi: set sw=4 ts=4: */
-+/*
-+ * dup3() for uClibc
-+ *
-+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
-+ *
-+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
-+ */
-+
-+#include <sys/syscall.h>
-+#include <unistd.h>
-+
-+
-+_syscall3(int, dup3, int, oldfd, int, newfd, int, flags)
-+libc_hidden_def(dup3)
-Index: git/include/unistd.h
-===================================================================
---- git.orig/include/unistd.h 2012-01-27 01:19:17.521792781 -0800
-+++ git/include/unistd.h 2012-01-27 07:40:03.106898447 -0800
-@@ -512,6 +512,8 @@
- /* Duplicate FD to FD2, closing FD2 and making it open on the same file. */
- extern int dup2 (int __fd, int __fd2) __THROW;
- libc_hidden_proto(dup2)
-+extern int dup3 (int __fd, int __fd2, int __flags) __THROW;
-+libc_hidden_proto(dup3)
-
- /* NULL-terminated array of "NAME=VALUE" environment variables. */
- extern char **__environ;