From d8535473c787386e5a341632ea758013a61b247c Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Thu, 14 Nov 2019 15:45:46 +0000 Subject: Fix build on BSD systems I tested FreeBSD, DragonflyBSD, NetBSD and OpenBSD and the endian macros weren't necessary (and in fact caused errors) on all of them. Because OpenBSD ships with an ancient GCC that doesn't support the checked addition/multiplication builtins, the build there would fail unless built with CC=cc or CC=clang. I changed configure.ac to prefer cc over gcc, so that the distribution's compiler preference is respected. (The default is [gcc cc]). I had to move AC_PROG_CC above LT_INIT because otherwise LT_INIT would run AC_PROG_CC first, and we wouldn't have a chance to use non-default parameters. --- include/util/compat.h | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'include/util') diff --git a/include/util/compat.h b/include/util/compat.h index a1a45b6..cb9e81c 100644 --- a/include/util/compat.h +++ b/include/util/compat.h @@ -7,6 +7,10 @@ #ifndef COMPAT_H #define COMPAT_H +#ifndef __linux__ +#define O_PATH 0 +#endif + #if defined(__APPLE__) #include @@ -17,14 +21,8 @@ #define le32toh(x) OSSwapLittleToHostInt32(x) #define le16toh(x) OSSwapLittleToHostInt16(x) #define le64toh(x) OSSwapLittleToHostInt64(x) -#elif defined(__OpenBSD__) +#elif defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) #include -#elif defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) -#include - -#define le16toh(x) letoh16(x) -#define le32toh(x) letoh32(x) -#define le64toh(x) letoh64(x) #elif defined(_WIN32) || defined(__WINDOWS__) #define htole16(x) (x) #define htole32(x) (x) @@ -107,7 +105,6 @@ struct stat { #else #include #include -#include #endif #ifndef HAVE_GETLINE -- cgit v1.2.3