(svn r2191) -Add: OpenTTD now compiles with dietlibc (Aard)

This commit is contained in:
truelight 2005-04-13 18:36:29 +00:00
parent 860242b811
commit 7f4b636559
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ typedef struct ifreq IFREQ;
# include <net/if.h>
// According to glibc/NEWS, <ifaddrs.h> 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.

2
unix.c
View File

@ -12,7 +12,7 @@
#include <pwd.h>
#include <signal.h>
#if (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__linux__)
#if ((defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__linux__)) && !defined(__dietlibc__)
#define HAS_STATVFS
#endif