Revert "gnu: network-manager: Fix build with glibc 2.30."

This commit was obsolete by the time it was pushed, whoops!

This reverts commit 12818a0656.
This commit is contained in:
Marius Bakke 2020-01-08 22:27:48 +01:00
parent a82e6faa8b
commit 9d3b6a5d65
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA
3 changed files with 1 additions and 23 deletions

View file

@ -1195,7 +1195,6 @@ dist_patch_DATA = \
%D%/packages/patches/netsurf-system-utf8proc.patch \
%D%/packages/patches/netsurf-y2038-tests.patch \
%D%/packages/patches/netsurf-longer-test-timeout.patch \
%D%/packages/patches/network-manager-gettid.patch \
%D%/packages/patches/nfs-utils-missing-headers.patch \
%D%/packages/patches/ngircd-handle-zombies.patch \
%D%/packages/patches/nm-plugin-path.patch \

View file

@ -5822,8 +5822,7 @@ users.")
(uri (string-append "mirror://gnome/sources/NetworkManager/"
(version-major+minor version) "/"
"NetworkManager-" version ".tar.xz"))
(patches (search-patches "nm-plugin-path.patch"
"network-manager-gettid.patch"))
(patches (search-patches "nm-plugin-path.patch"))
(sha256
(base32
"0pnh1wr2p1fqa5pr945fr3lngfc5ccfrmgddqsg55lxnjpv0ggd3"))

View file

@ -1,20 +0,0 @@
glibc 2.30 added gettid() which conflicts with the implementation in
NetworkManager. Remove for 1.17.1 and later versions.
Adapted from upstream:
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/commit/10276322bde8f015e48ac06f6a7509f514eb46f0
--- a/src/systemd/sd-adapt/nm-sd-adapt.h
+++ b/src/systemd/sd-adapt/nm-sd-adapt.h
@@ -181,9 +181,10 @@
#endif
}
-static inline pid_t gettid(void) {
+static inline pid_t _nm_gettid(void) {
return (pid_t) syscall(SYS_gettid);
}
+#define gettid() _nm_gettid ()
/* we build with C11 and thus <uchar.h> provides char32_t,char16_t. */
#define HAVE_CHAR32_T 1