Commit 299ff2b2 authored by Max Kellermann's avatar Max Kellermann

move daemonization code to unix/

parent f8bfea8b
...@@ -157,8 +157,9 @@ src_mpd_SOURCES = \ ...@@ -157,8 +157,9 @@ src_mpd_SOURCES = \
src/Instance.cxx src/Instance.hxx \ src/Instance.cxx src/Instance.hxx \
src/Win32Main.cxx \ src/Win32Main.cxx \
src/GlobalEvents.cxx src/GlobalEvents.hxx \ src/GlobalEvents.cxx src/GlobalEvents.hxx \
src/Daemon.cxx src/Daemon.hxx \ src/unix/SignalHandlers.cxx src/unix/SignalHandlers.hxx \
src/PidFile.hxx \ src/unix/Daemon.cxx src/unix/Daemon.hxx \
src/unix/PidFile.hxx \
src/AudioCompress/compress.c \ src/AudioCompress/compress.c \
src/MixRampInfo.hxx \ src/MixRampInfo.hxx \
src/MusicBuffer.cxx src/MusicBuffer.hxx \ src/MusicBuffer.cxx src/MusicBuffer.hxx \
...@@ -194,7 +195,6 @@ src_mpd_SOURCES = \ ...@@ -194,7 +195,6 @@ src_mpd_SOURCES = \
src/queue/QueueSave.cxx src/queue/QueueSave.hxx \ src/queue/QueueSave.cxx src/queue/QueueSave.hxx \
src/ReplayGainConfig.cxx src/ReplayGainConfig.hxx \ src/ReplayGainConfig.cxx src/ReplayGainConfig.hxx \
src/ReplayGainInfo.cxx src/ReplayGainInfo.hxx \ src/ReplayGainInfo.cxx src/ReplayGainInfo.hxx \
src/SignalHandlers.cxx src/SignalHandlers.hxx \
src/DetachedSong.cxx src/DetachedSong.hxx \ src/DetachedSong.cxx src/DetachedSong.hxx \
src/LightSong.cxx src/LightSong.hxx \ src/LightSong.cxx src/LightSong.hxx \
src/LightDirectory.hxx \ src/LightDirectory.hxx \
......
...@@ -41,7 +41,6 @@ ...@@ -41,7 +41,6 @@
#include "tag/TagConfig.hxx" #include "tag/TagConfig.hxx"
#include "ReplayGainConfig.hxx" #include "ReplayGainConfig.hxx"
#include "Idle.hxx" #include "Idle.hxx"
#include "SignalHandlers.hxx"
#include "Log.hxx" #include "Log.hxx"
#include "LogInit.hxx" #include "LogInit.hxx"
#include "GlobalEvents.hxx" #include "GlobalEvents.hxx"
...@@ -56,7 +55,8 @@ ...@@ -56,7 +55,8 @@
#include "decoder/DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "AudioConfig.hxx" #include "AudioConfig.hxx"
#include "pcm/PcmConvert.hxx" #include "pcm/PcmConvert.hxx"
#include "Daemon.hxx" #include "unix/SignalHandlers.hxx"
#include "unix/Daemon.hxx"
#include "system/FatalError.hxx" #include "system/FatalError.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment