X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fdaemon%2Fcollectd.h;h=07597d3b99781e851a5b757973ae437883d4d91e;hb=711f5b6c86f51061c21bedcaa46214a01de0125c;hp=87f05a23a215ea49b8bc3c8599f745a5e69981a6;hpb=38e94dcc796e5d00088826ffd5d43ca5a2e590a2;p=collectd.git diff --git a/src/daemon/collectd.h b/src/daemon/collectd.h index 87f05a23..07597d3b 100644 --- a/src/daemon/collectd.h +++ b/src/daemon/collectd.h @@ -27,6 +27,11 @@ #ifndef COLLECTD_H #define COLLECTD_H +#ifdef WIN32 +typedef int uid_t; +#include "gnulib_config.h" +#endif + #if HAVE_CONFIG_H #include "config.h" #endif @@ -122,6 +127,10 @@ #include #endif +#if HAVE_SYS_PARAM_H +#include +#endif + #ifndef BYTE_ORDER #if defined(_BYTE_ORDER) #define BYTE_ORDER _BYTE_ORDER @@ -183,10 +192,6 @@ #endif #endif -#if HAVE_SYS_PARAM_H -#include -#endif - #ifndef PACKAGE_NAME #define PACKAGE_NAME "collectd" #endif @@ -240,26 +245,6 @@ #define __attribute__(x) /**/ #endif -#if defined(COLLECT_DEBUG) && COLLECT_DEBUG && defined(__GNUC__) && __GNUC__ -#undef strcpy -#undef strcat -#undef strtok -#pragma GCC poison strcpy strcat strtok -#endif - -/* - * Special hack for the perl plugin: Because the later included perl.h defines - * a macro which is never used, but contains `sprintf', we cannot poison that - * identifies just yet. The parl plugin will do that itself once perl.h is - * included. - */ -#ifndef DONT_POISON_SPRINTF_YET -#if defined(COLLECT_DEBUG) && COLLECT_DEBUG && defined(__GNUC__) && __GNUC__ -#undef sprintf -#pragma GCC poison sprintf -#endif -#endif - #ifndef GAUGE_FORMAT #define GAUGE_FORMAT "%.15g" #endif