diff options
author | Mark H Weaver <mhw@netris.org> | 2016-04-23 13:13:53 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-04-23 13:13:53 -0400 |
commit | e969b140a4382fd91514439a57749379cf00f86b (patch) | |
tree | c5c5adfc0c7c4cd0c367fa37203637e6d655544c /gnu/packages/patches/glib-tests-prlimit.patch | |
parent | 267061ba0bc6df0d61081b97d650d95acec8178a (diff) | |
download | gnu-guix-e969b140a4382fd91514439a57749379cf00f86b.tar gnu-guix-e969b140a4382fd91514439a57749379cf00f86b.tar.gz |
Revert "Merge branch 'gnome-updates'"
This reverts commit 63655d459e28b09cd8d58743dae14b3460f6c9da, reversing
changes made to 80627f51f0238b9450745f4e642172d059ca5bb5.
Diffstat (limited to 'gnu/packages/patches/glib-tests-prlimit.patch')
-rw-r--r-- | gnu/packages/patches/glib-tests-prlimit.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/patches/glib-tests-prlimit.patch b/gnu/packages/patches/glib-tests-prlimit.patch new file mode 100644 index 0000000000..f2b2a61bee --- /dev/null +++ b/gnu/packages/patches/glib-tests-prlimit.patch @@ -0,0 +1,14 @@ +prlimit(2) returns ENOSYS on Linux 2.6.32-5-xen-amd64 as found on +hydra.gnu.org, and strace(1) doesn't recognize it. + +--- glib-2.34.3/glib/tests/thread.c 2012-11-20 15:27:12.000000000 +0100 ++++ glib-2.34.3/glib/tests/thread.c 2013-03-27 14:48:31.000000000 +0100 +@@ -130,7 +130,7 @@ test_thread3 (void) + static void + test_thread4 (void) + { +-#ifdef HAVE_PRLIMIT ++#if 0 + struct rlimit ol, nl; + GThread *thread; + GError *error; |