[glibc] 03/04: debian/patches/kfreebsd/local-sysdeps.diff: update to revision 6172 (from glibc-bsd).
This is an automated email from the git hooks/post-receive script.
aurel32 pushed a commit to branch glibc-2.25
in repository glibc.
commit 24a141b700bde5c85f7c3a72d601f8a715a82e19
Author: Aurelien Jarno <aurelien@aurel32.net>
Date: Sat Aug 26 23:13:54 2017 +0200
debian/patches/kfreebsd/local-sysdeps.diff: update to revision 6172 (from glibc-bsd).
---
debian/changelog | 2 ++
debian/patches/kfreebsd/local-sysdeps.diff | 17 ++++++++++++++++-
2 files changed, 18 insertions(+), 1 deletion(-)
diff --git a/debian/changelog b/debian/changelog
index 5797612..e1b9964 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,8 @@ glibc (2.25-0experimental3) UNRELEASED; urgency=medium
* debian/rules.d/build.mk: run configure with --enable-stack-protector=
strong.
* debian/sysdeps/hurd.mk: disable stack-protector on the Hurd.
+ * debian/patches/kfreebsd/local-sysdeps.diff: update to revision 6172 (from
+ glibc-bsd).
-- Aurelien Jarno <aurel32@debian.org> Sat, 26 Aug 2017 16:23:18 +0200
diff --git a/debian/patches/kfreebsd/local-sysdeps.diff b/debian/patches/kfreebsd/local-sysdeps.diff
index edb3e71..8b0afa3 100644
--- a/debian/patches/kfreebsd/local-sysdeps.diff
+++ b/debian/patches/kfreebsd/local-sysdeps.diff
@@ -491,7 +491,7 @@
+#endif /* __A_OUT_GNU_H__ */
--- /dev/null
+++ b/sysdeps/unix/bsd/bsd4.4/kfreebsd/access.c
-@@ -0,0 +1,67 @@
+@@ -0,0 +1,82 @@
+/* Copyright (C) 2009 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
@@ -558,6 +558,21 @@
+ return -1;
+}
+
++
++/* Test for access to FILE by our real user and group IDs without setting
++ errno. */
++int
++__access_noerrno (const char *file, int type)
++{
++ int ret;
++ int saved_errno = errno;
++
++ ret = __access (file, type);
++
++ __set_errno(saved_errno);
++ return ret;
++}
++
+weak_alias (__access, access)
--- /dev/null
+++ b/sysdeps/unix/bsd/bsd4.4/kfreebsd/aio_sigqueue.c
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-glibc/glibc.git
Reply to: