kwo pushed a commit to branch master. http://git.enlightenment.org/e16/e16.git/commit/?id=c67ebd88baf14750383bf13fdd04f409dcead9a7
commit c67ebd88baf14750383bf13fdd04f409dcead9a7 Author: Kim Woelders <[email protected]> Date: Tue Jul 30 17:39:47 2019 +0200 Explicitly include sys/select.h where needed ... rather than relying on it to be included via sys/time.h or sys/types.h. --- src/events.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/events.c b/src/events.c index 1a4e1a04..338f8012 100644 --- a/src/events.c +++ b/src/events.c @@ -1,6 +1,6 @@ /* * Copyright (C) 2000-2007 Carsten Haitzler, Geoff Harrison and various contributors - * Copyright (C) 2004-2018 Kim Woelders + * Copyright (C) 2004-2019 Kim Woelders * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to @@ -23,6 +23,7 @@ */ #include "config.h" +#include <sys/select.h> #include <sys/time.h> #include <X11/Xlib.h> #include <X11/Xutil.h> --
