When trying to build musializer, I encountered the following error:
In file included from ./raylib/raylib-5.0/src/rglfw.c:87:
./raylib/raylib-5.0/src/external/glfw/src/posix_poll.c: In function '_glfwPollPOSIX':
./raylib/raylib-5.0/src/external/glfw/src/posix_poll.c:49:32: error: implicit declaration of function 'ppoll'; did you mean 'poll'? [-Wimplicit-function-declaration]
49 | const int result = ppoll(fds, count, &ts, NULL);
| ^~~~~
| poll
When trying to build musializer, I encountered the following error:
It turns out that raylib has a fix for this in master (https://github.com/raysan5/raylib/commit/192f7f1b291d21fbe4bdd2c373e6cf94e69272bb). Applying it fixed the issue for me.
This fixes the issue underlying #20.