diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-07-15 15:28:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-18 23:09:51 +0100 |
commit | 1a135f58e311938559f22a299ad1ca7fc2d59354 (patch) | |
tree | 3c9f5db7034369f66dfb592b97033e73ea6502c7 /meta/recipes-support | |
parent | 58202aa70960f8c16a99a9e3b918f419b893ffcd (diff) | |
download | poky-1a135f58e311938559f22a299ad1ca7fc2d59354.tar.gz |
gpgme: Use glibc provided closefrom API when available
glibc 2.34+ has added this API new
(From OE-Core rev: a2b2479d20d029f5a11dba8cf7f7ca3e4a5bbbe2)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/gpgme/gpgme/0001-use-closefrom-on-linux-and-glibc-2.34.patch | 24 | ||||
-rw-r--r-- | meta/recipes-support/gpgme/gpgme_1.16.0.bb | 3 |
2 files changed, 26 insertions, 1 deletions
diff --git a/meta/recipes-support/gpgme/gpgme/0001-use-closefrom-on-linux-and-glibc-2.34.patch b/meta/recipes-support/gpgme/gpgme/0001-use-closefrom-on-linux-and-glibc-2.34.patch new file mode 100644 index 0000000000..1c46684c6d --- /dev/null +++ b/meta/recipes-support/gpgme/gpgme/0001-use-closefrom-on-linux-and-glibc-2.34.patch | |||
@@ -0,0 +1,24 @@ | |||
1 | From adb1d4e5498a19e9d591ac8f42f9ddfdb23a1354 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Thu, 15 Jul 2021 12:33:13 -0700 | ||
4 | Subject: [PATCH] use closefrom() on linux and glibc 2.34+ | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | --- | ||
9 | src/posix-io.c | 2 +- | ||
10 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
11 | |||
12 | diff --git a/src/posix-io.c b/src/posix-io.c | ||
13 | index e712ef2..ab8ded9 100644 | ||
14 | --- a/src/posix-io.c | ||
15 | +++ b/src/posix-io.c | ||
16 | @@ -570,7 +570,7 @@ _gpgme_io_spawn (const char *path, char *const argv[], unsigned int flags, | ||
17 | if (fd_list[i].fd > fd) | ||
18 | fd = fd_list[i].fd; | ||
19 | fd++; | ||
20 | -#if defined(__sun) || defined(__FreeBSD__) | ||
21 | +#if defined(__sun) || defined(__FreeBSD__) || (defined(__GLIBC__) && __GNUC_PREREQ(2, 34)) | ||
22 | closefrom (fd); | ||
23 | max_fds = fd; | ||
24 | #else /*!__sun */ | ||
diff --git a/meta/recipes-support/gpgme/gpgme_1.16.0.bb b/meta/recipes-support/gpgme/gpgme_1.16.0.bb index da413c80a0..86dd69f0a1 100644 --- a/meta/recipes-support/gpgme/gpgme_1.16.0.bb +++ b/meta/recipes-support/gpgme/gpgme_1.16.0.bb | |||
@@ -20,7 +20,8 @@ SRC_URI = "${GNUPG_MIRROR}/gpgme/${BP}.tar.bz2 \ | |||
20 | file://0006-fix-build-path-issue.patch \ | 20 | file://0006-fix-build-path-issue.patch \ |
21 | file://0007-python-Add-variables-to-tests.patch \ | 21 | file://0007-python-Add-variables-to-tests.patch \ |
22 | file://0008-do-not-auto-check-var-PYTHON.patch \ | 22 | file://0008-do-not-auto-check-var-PYTHON.patch \ |
23 | " | 23 | file://0001-use-closefrom-on-linux-and-glibc-2.34.patch \ |
24 | " | ||
24 | 25 | ||
25 | SRC_URI[sha256sum] = "6c8cc4aedb10d5d4c905894ba1d850544619ee765606ac43df7405865de29ed0" | 26 | SRC_URI[sha256sum] = "6c8cc4aedb10d5d4c905894ba1d850544619ee765606ac43df7405865de29ed0" |
26 | 27 | ||