projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21b429b
)
src/libcollectdclient/network_buffer.c check for htonll exitence
author
gkos
<danielhilst@gmail.com>
Wed, 13 Mar 2013 16:19:04 +0000
(13:19 -0300)
committer
Florian Forster
<octo@collectd.org>
Fri, 29 Mar 2013 20:29:42 +0000
(13:29 -0700)
before defining it. I have to to this to get it compiled on AIX6
Signed-off-by: Florian Forster <octo@collectd.org>
src/libcollectdclient/network_buffer.c
patch
|
blob
|
history
diff --git
a/src/libcollectdclient/network_buffer.c
b/src/libcollectdclient/network_buffer.c
index
acbe93f
..
7b06620
100644
(file)
--- a/
src/libcollectdclient/network_buffer.c
+++ b/
src/libcollectdclient/network_buffer.c
@@
-146,6
+146,7
@@
static _Bool have_gcrypt (void) /* {{{ */
#endif
} /* }}} _Bool have_gcrypt */
+#ifndef HAVE_HTONLL
static uint64_t htonll (uint64_t val) /* {{{ */
{
static int config = 0;
@@
-175,6
+176,7
@@
static uint64_t htonll (uint64_t val) /* {{{ */
return ((((uint64_t) lo) << 32) | ((uint64_t) hi));
} /* }}} uint64_t htonll */
+#endif
static double htond (double val) /* {{{ */
{