aboutsummaryrefslogtreecommitdiffstats
path: root/tools/fakeroot/patches/301-glibc-2.33-compat-fixes.patch
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2021-09-18 00:20:45 -0700
committerHauke Mehrtens <hauke@hauke-m.de>2021-09-20 15:21:17 +0200
commit22c30ed958296b756cef60b42200d668b145bf6b (patch)
treecd26acfeb9796ef924a6b45d53ef60f892e6de56 /tools/fakeroot/patches/301-glibc-2.33-compat-fixes.patch
parentaf1853af602cbdd85d8efdbf7f6ab56efc2e0b71 (diff)
downloadupstream-22c30ed958296b756cef60b42200d668b145bf6b.tar.gz
upstream-22c30ed958296b756cef60b42200d668b145bf6b.tar.bz2
upstream-22c30ed958296b756cef60b42200d668b145bf6b.zip
tools/fakeroot: update to 1.26
Remove upstreamed patches. Refresh other. Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'tools/fakeroot/patches/301-glibc-2.33-compat-fixes.patch')
-rw-r--r--tools/fakeroot/patches/301-glibc-2.33-compat-fixes.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/tools/fakeroot/patches/301-glibc-2.33-compat-fixes.patch b/tools/fakeroot/patches/301-glibc-2.33-compat-fixes.patch
deleted file mode 100644
index 0b91d65edb..0000000000
--- a/tools/fakeroot/patches/301-glibc-2.33-compat-fixes.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- a/libfakeroot.c
-+++ b/libfakeroot.c
-@@ -1368,7 +1368,8 @@ int renameat(int olddir_fd, const char *
- #endif /* HAVE_FSTATAT */
-
-
--#if defined(__GLIBC__) && __GLIBC_PREREQ(2,33)
-+#if defined(__GLIBC__)
-+#if __GLIBC_PREREQ(2,33)
- /* Glibc 2.33 exports symbols for these functions in the shared lib */
- int lstat(const char *file_name, struct stat *statbuf) {
- return WRAP_LSTAT LSTAT_ARG(_STAT_VER, file_name, statbuf);
-@@ -1413,6 +1414,7 @@ int renameat(int olddir_fd, const char *
- return WRAP_MKNODAT MKNODAT_ARG(_STAT_VER, dir_fd, pathname, mode, &dev);
- }
- #endif
-+#endif /* __GLIBC__ */
- #endif /* GLIBC_PREREQ */
-
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -182,6 +182,9 @@ AC_MSG_CHECKING([for type of arg of __xm
- #include <fcntl.h>
- #include <unistd.h>
- ]], [[
-+#ifndef __GLIBC__
-+#error no extra *
-+#endif
- int __xmknod ( int ver,
- const char *pathname ,
- mode_t mode , dev_t *dev);
-@@ -208,6 +211,9 @@ AC_MSG_CHECKING([for type of arg of __xm
- #include <fcntl.h>
- #include <unistd.h>
- ]], [[
-+#ifndef __GLIBC__
-+#error no extra *
-+#endif
- int __xmknodat ( int ver,
- int dirfd,
- const char *pathname ,