diff --git a/network_core.h b/network_core.h index 0ab9942c84..e442391fd8 100644 --- a/network_core.h +++ b/network_core.h @@ -58,7 +58,7 @@ typedef struct ifreq IFREQ; # include // According to glibc/NEWS, appeared in glibc-2.3. # if !defined(SUNOS) && !defined(__MORPHOS__) && !defined(__BEOS__) \ - && !(defined(__GLIBC__) && (__GLIBC__ <= 2) && (__GLIBC_MINOR__ <= 2)) + && !(defined(__GLIBC__) && (__GLIBC__ <= 2) && (__GLIBC_MINOR__ <= 2)) && !defined(__dietlibc__) // If for any reason ifaddrs.h does not exist on your system, comment out // the following two lines and an alternative way will be used to fetch // the list of IPs from the system. diff --git a/unix.c b/unix.c index ff9e096c2e..c7487f34dd 100644 --- a/unix.c +++ b/unix.c @@ -12,7 +12,7 @@ #include #include -#if (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__linux__) +#if ((defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__linux__)) && !defined(__dietlibc__) #define HAS_STATVFS #endif