You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
malloc.h is not found unless one uses #include <malloc/malloc.h>. I recommend a configure test that looks in all of the relevant places instead of assuming /usr/include and friends.
sys/epoll.h is a Linux-specific header.
The configure test for CPU_ZERO and CPU_ISSET fails because those are not supported on Mac.
The GNU extension strdupa caused configure to fail until I disabled that check.
malloc.h
is not found unless one uses#include <malloc/malloc.h>
. I recommend a configure test that looks in all of the relevant places instead of assuming/usr/include
and friends.sys/epoll.h
is a Linux-specific header.The configure test for
CPU_ZERO
andCPU_ISSET
fails because those are not supported on Mac.The GNU extension
strdupa
caused configure to fail until I disabled that check.Related to #9, #333 and #334.
The text was updated successfully, but these errors were encountered: