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:
parent
a82e6faa8b
commit
9d3b6a5d65
3 changed files with 1 additions and 23 deletions
|
@ -1195,7 +1195,6 @@ dist_patch_DATA = \
|
||||||
%D%/packages/patches/netsurf-system-utf8proc.patch \
|
%D%/packages/patches/netsurf-system-utf8proc.patch \
|
||||||
%D%/packages/patches/netsurf-y2038-tests.patch \
|
%D%/packages/patches/netsurf-y2038-tests.patch \
|
||||||
%D%/packages/patches/netsurf-longer-test-timeout.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/nfs-utils-missing-headers.patch \
|
||||||
%D%/packages/patches/ngircd-handle-zombies.patch \
|
%D%/packages/patches/ngircd-handle-zombies.patch \
|
||||||
%D%/packages/patches/nm-plugin-path.patch \
|
%D%/packages/patches/nm-plugin-path.patch \
|
||||||
|
|
|
@ -5822,8 +5822,7 @@ users.")
|
||||||
(uri (string-append "mirror://gnome/sources/NetworkManager/"
|
(uri (string-append "mirror://gnome/sources/NetworkManager/"
|
||||||
(version-major+minor version) "/"
|
(version-major+minor version) "/"
|
||||||
"NetworkManager-" version ".tar.xz"))
|
"NetworkManager-" version ".tar.xz"))
|
||||||
(patches (search-patches "nm-plugin-path.patch"
|
(patches (search-patches "nm-plugin-path.patch"))
|
||||||
"network-manager-gettid.patch"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0pnh1wr2p1fqa5pr945fr3lngfc5ccfrmgddqsg55lxnjpv0ggd3"))
|
"0pnh1wr2p1fqa5pr945fr3lngfc5ccfrmgddqsg55lxnjpv0ggd3"))
|
||||||
|
|
|
@ -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
|
|
Reference in a new issue