src/libcollectdclient/network_buffer.c check for htonll exitence
authorgkos <danielhilst@gmail.com>
Wed, 13 Mar 2013 16:19:04 +0000 (13:19 -0300)
committerFlorian 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

index acbe93f..7b06620 100644 (file)
@@ -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) /* {{{ */
 {