From 714a0db2ade17f61f09816f0f7067f14e049e645 Mon Sep 17 00:00:00 2001 From: Isaac Dunham Date: Tue, 28 Jan 2014 10:10:25 -0600 Subject: Two changes to shut up GCC: * __GLIBC__ was checked unconditionally; this made for a very messy build on musl. * int fd in chvt is always initialized; GCC 3.4 does not recognize this. --- lib/portability.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/portability.h') diff --git a/lib/portability.h b/lib/portability.h index 75576204..86484c7f 100644 --- a/lib/portability.h +++ b/lib/portability.h @@ -145,7 +145,7 @@ int clearenv(void); #define SWAP_LE64(x) (x) #endif -#if defined(__APPLE__) || defined(__ANDROID__) || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 10) +#if defined(__APPLE__) || defined(__ANDROID__) || (defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 10) ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream); ssize_t getline(char **lineptr, size_t *n, FILE *stream); #endif -- cgit v1.2.3