Fix build on FreeBSD (missing SIGPOLL) (#1379)
This commit is contained in:
parent
c96987909e
commit
86fb767d77
3
luaa.c
3
luaa.c
|
@ -612,7 +612,10 @@ setup_awesome_signals(lua_State *L)
|
|||
|
||||
/* POSIX.1-2001, according to man 7 signal */
|
||||
SETUP_SIGNAL(SIGBUS);
|
||||
/* Some Operating Systems doesn't have SIGPOLL (e.g. FreeBSD) */
|
||||
#ifdef SIGPOLL
|
||||
SETUP_SIGNAL(SIGPOLL);
|
||||
#endif
|
||||
SETUP_SIGNAL(SIGPROF);
|
||||
SETUP_SIGNAL(SIGSYS);
|
||||
SETUP_SIGNAL(SIGTRAP);
|
||||
|
|
Loading…
Reference in New Issue