diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-08 22:27:48 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-11 18:59:22 +0100 |
commit | 9d3b6a5d65505018186d778c4812c3c90aab3527 (patch) | |
tree | 00fbf23fda1fd78c996903d6f848d65763bdd0da /gnu/packages/patches | |
parent | a82e6faa8b993d1f3b47a8bd22c4509f7cae7ec1 (diff) | |
download | guix-9d3b6a5d65505018186d778c4812c3c90aab3527.tar.gz |
Revert "gnu: network-manager: Fix build with glibc 2.30."
This commit was obsolete by the time it was pushed, whoops! This reverts commit 12818a0656817e95a80aace01089042c0b0e7e22.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/network-manager-gettid.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/gnu/packages/patches/network-manager-gettid.patch b/gnu/packages/patches/network-manager-gettid.patch deleted file mode 100644 index d50b5f8102..0000000000 --- a/gnu/packages/patches/network-manager-gettid.patch +++ /dev/null @@ -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 |