From 798f2816130838f3618212291de6ab0ea814c868 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sun, 29 Sep 2019 20:39:02 -0700 Subject: [PATCH] include sys/select on non-glibc platforms musl needs sys/select.h for defining fd_set Upstream-Status: Pending Signed-off-by: Khem Raj --- gdraw/gdraw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/gdraw/gdraw.c +++ b/gdraw/gdraw.c @@ -33,7 +33,7 @@ #include "gkeysym.h" #include "ustring.h" -#if __Mac +#if __Mac || (defined(__linux__) && !defined(__GLIBC__)) # include #endif