/* @(#)$Id: config.h.in,v 1.1 2005/12/03 10:59:09 simon Exp $ */ #ifndef CONFIG_H #define CONFIG_H #undef WITH_PTHREAD #undef WITH_AUTORULES #undef WITH_RULES #undef WITH_LIMITS #undef WITH_THRESHOLDS #if defined(WITH_LIMITS) || defined(WITH_THRESHOLDS) # define WITH_ANY_LIMITS #endif #undef SIZEOF_LONG #if SIZEOF_LONG == 4 # define ARCH_32_BITS #else # define ARCH_64_BITS #endif #undef HAVE_STDINT_H #ifdef HAVE_STDINT_H # include #endif #ifndef UINT64_C # ifdef ARCH_32_BITS # define UINT64_C(c) (c ## ULL) # else # define UINT64_C(c) (c ## UL) # endif #endif /* !UINT64_C */ #undef HAVE_INTTYPES_H #ifdef HAVE_INTTYPES_H # include #endif #undef HAVE_SYS_INTTYPES_H #ifdef HAVE_SYS_INTTYPES_H # include #endif #ifndef UINT16_MAX # define UINT16_MAX 0xfffff #endif #ifndef PRIu64 # undef PRIu64 #endif #ifndef SCNu64 # undef SCNu64 #endif #undef HAVE_U_SHORT #ifndef HAVE_U_SHORT typedef unsigned short u_short; #endif #undef HAVE_U_INT #ifndef HAVE_U_INT typedef unsigned int u_int; #endif #undef HAVE_U_LONG #ifndef HAVE_U_LONG typedef unsigned long u_long; #endif #ifndef lint # undef ATTR_FORMAT # undef ATTR_NORETURN # undef ATTR_UNUSED #else # define ATTR_FORMAT(x, y, z) # define ATTR_NORETURN # define ATTR_UNUSED #endif /* !lint */ #endif /* !CONFIG_H */