$NetBSD: patch-ad,v 1.8 2018/09/27 15:29:06 triaxx Exp $ Support for NetBSD and MacOS. --- utils.h.orig 2008-08-22 09:39:06.000000000 +0000 +++ utils.h @@ -1,5 +1,20 @@ #include +#ifdef __linux__ #include +#endif +#ifdef __NetBSD__ +#include +#if __NetBSD_Version__ >= 104010000 +#include +#else +#include +#include +#endif +#endif +#if defined(__APPLE__) && defined(__MACH__) +#include +#include +#endif #include #include #include @@ -18,15 +33,35 @@ static inline int bigendianp(void){ } static inline int32_t swap32(int32_t x){ +#ifdef __NetBSD__ + return bswap32(x); +#else +#if defined(__APPLE__) && defined(__MACH__) + return((((uint32_t)x & 0x000000ffU) << 24) | + (((uint32_t)x & 0x0000ff00U) << 8) | + (((uint32_t)x & 0x00ff0000U) >> 8) | + (((uint32_t)x & 0xff000000U) >> 24)); +#else return((((u_int32_t)x & 0x000000ffU) << 24) | (((u_int32_t)x & 0x0000ff00U) << 8) | (((u_int32_t)x & 0x00ff0000U) >> 8) | (((u_int32_t)x & 0xff000000U) >> 24)); +#endif +#endif } static inline int16_t swap16(int16_t x){ +#ifdef __NetBSD__ + return bswap16(x); +#else +#if defined(__APPLE__) && defined(__MACH__) + return((((uint16_t)x & 0x00ffU) << 8) | + (((uint16_t)x & 0xff00U) >> 8)); +#else return((((u_int16_t)x & 0x00ffU) << 8) | (((u_int16_t)x & 0xff00U) >> 8)); +#endif +#endif } #if BYTE_ORDER == LITTLE_ENDIAN