summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2016-03-28 18:04:04 +0200
committerDavid Seifert <soap@gentoo.org>2016-03-28 18:07:19 +0200
commitd28e5cb7bd169f42604802f37a52e09b3494a84b (patch)
treebd0ce32e48dc9855519b0a39cf368aa2f729ff3c /sys-cluster/gearmand/files
parentnet-irc/quassel: EAPI 6 (diff)
downloadgentoo-d28e5cb7bd169f42604802f37a52e09b3494a84b.tar.gz
gentoo-d28e5cb7bd169f42604802f37a52e09b3494a84b.tar.bz2
gentoo-d28e5cb7bd169f42604802f37a52e09b3494a84b.zip
sys-cluster/gearmand: use more recent sys-devel/boost-m4
Gentoo-Bug: 574558 Package-Manager: portage-2.2.28
Diffstat (limited to 'sys-cluster/gearmand/files')
-rw-r--r--sys-cluster/gearmand/files/gearmand-0.34-stdbool-h.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/sys-cluster/gearmand/files/gearmand-0.34-stdbool-h.patch b/sys-cluster/gearmand/files/gearmand-0.34-stdbool-h.patch
new file mode 100644
index 000000000000..37d2db62741d
--- /dev/null
+++ b/sys-cluster/gearmand/files/gearmand-0.34-stdbool-h.patch
@@ -0,0 +1,26 @@
+Ignore configure checks and include stdbool.h
+unconditionally, we're in 2016.
+
+--- gearmand-0.34/libhostile/called.c
++++ gearmand-0.34/libhostile/called.c
+@@ -41,6 +41,7 @@
+ #include <assert.h>
+ #include <stdio.h>
+ #include <stdlib.h>
++#include <stdbool.h>
+
+ __thread bool is_called_= false;
+ static __thread char** unique_ptr= NULL;
+--- gearmand-0.34/libhostile/called.h
++++ gearmand-0.34/libhostile/called.h
+@@ -36,9 +36,7 @@
+
+ #pragma once
+
+-#ifdef HAVE_STDBOOL_H
+-# include <stdbool.h>
+-#endif
++#include <stdbool.h>
+
+ bool is_called(void);
+ void set_called();