|
|
- From a4ed6560017d0b9edcd7cab93ca05d80f794ec10 Mon Sep 17 00:00:00 2001
- From: Rosen Penev <rosenp@gmail.com>
- Date: Wed, 10 Jul 2019 17:01:01 -0700
- Subject: [PATCH] Mayaqua: Replace GNU specific sys/poll.h header with POSIX
- poll.h
-
- Fixes warning from the musl libc:
-
- warning redirecting incorrect #include <sys/poll.h> to <poll.h>
- ---
- src/Mayaqua/Mayaqua.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
- diff --git a/src/Mayaqua/Mayaqua.h b/src/Mayaqua/Mayaqua.h
- index 0f46d52a..63c2edc3 100644
- --- a/src/Mayaqua/Mayaqua.h
- +++ b/src/Mayaqua/Mayaqua.h
- @@ -157,8 +157,8 @@ int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, char *CmdLine, int CmdShow)
- #ifdef UNIX_SOLARIS
- #include <sys/filio.h>
- #endif // UNIX_SOLARIS
- -#include <sys/poll.h>
- #include <sys/resource.h>
- +#include <poll.h>
- #include <pthread.h>
- #ifdef UNIX_LINUX
- #include <sys/prctl.h>
|