From e01126788f5d1eb4b2b1bc3de72a419a18a5ba7e Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sat, 13 Oct 2012 14:05:47 +0200 Subject: build: resolve compile abort on RHEL5 #2 libnetfilter_acct.c: In function 'nfacct_nlmsg_build_payload': libnetfilter_acct.c:422: warning: implicit declaration of function 'htobe64' libnetfilter_acct.c: In function 'nfacct_nlmsg_parse_payload': libnetfilter_acct.c:477: warning: implicit declaration of function 'be64toh' Signed-off-by: Jan Engelhardt --- src/internal.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/internal.h b/src/internal.h index 3a88d1a..2106401 100644 --- a/src/internal.h +++ b/src/internal.h @@ -9,4 +9,16 @@ # define EXPORT_SYMBOL #endif +#include +#if !defined(htobe64) +# include +# if __BYTE_ORDER == __LITTLE_ENDIAN +# define htobe64(x) __bswap_64(x) +# define betoh64(x) __bswap_64(x) +# else +# define htobe64(x) (x) +# define betoh64(x) (x) +# endif +#endif + #endif -- cgit v1.2.3