diff options
author | Max Kellermann <max@duempel.org> | 2014-03-02 10:21:31 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-03-02 10:21:31 +0100 |
commit | 0102a8665ae23f3e7807f711abbe461e58359f61 (patch) | |
tree | 50cf2e6df2f8bbed68f272bff74a5ca53cc32edf /src | |
parent | d34ae0850cf8ebde4b39e6865f21e50b74fe6c94 (diff) | |
download | mpd-0102a8665ae23f3e7807f711abbe461e58359f61.tar.gz mpd-0102a8665ae23f3e7807f711abbe461e58359f61.tar.xz mpd-0102a8665ae23f3e7807f711abbe461e58359f61.zip |
event/SignalMonitor: fix build failure due to missing signal.h include
Diffstat (limited to '')
-rw-r--r-- | src/event/SignalMonitor.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/event/SignalMonitor.cxx b/src/event/SignalMonitor.cxx index eda52aba1..4f5174377 100644 --- a/src/event/SignalMonitor.cxx +++ b/src/event/SignalMonitor.cxx @@ -43,6 +43,8 @@ #include <pthread.h> #endif +#include <signal.h> + class SignalMonitor final : private SocketMonitor { #ifdef USE_SIGNALFD SignalFD fd; |