sys-apps/systemd-readahead: Fix build with glibc-2.27

Closes: https://bugs.gentoo.org/650314
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
This commit is contained in:
Pacho Ramos
2018-10-21 16:52:00 +02:00
parent 71fefc9233
commit fa54821846
2 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
--- a/src/shared/missing.h.orig 2018-10-21 16:47:25.858241043 +0200
+++ b/src/shared/missing.h 2018-10-21 16:47:36.986335212 +0200
@@ -204,12 +204,6 @@
}
#endif
-#ifndef HAVE_MEMFD_CREATE
-static inline int memfd_create(const char *name, uint64_t flags) {
- return syscall(__NR_memfd_create, name, flags);
-}
-#endif
-
#ifndef BTRFS_IOCTL_MAGIC
#define BTRFS_IOCTL_MAGIC 0x94
#endif

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -29,6 +29,9 @@ DEPEND="${RDEPEND}
PATCHES=(
# https://github.com/systemd/systemd/pull/2838 , bug #604614
"${FILESDIR}/${P}-sysmacros.patch"
# https://github.com/systemd/systemd/issues/8099, bug #650314
"${FILESDIR}"/${P}-glibc-2.27.patch
)
src_prepare() {