diff options
author | Max Kellermann <max@duempel.org> | 2014-01-24 00:14:54 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-24 00:14:54 +0100 |
commit | 6b70f5e49097c334c461994bb855709977bd8dae (patch) | |
tree | 739b8a1b6ba02a95729d7743bb79290abda74934 | |
parent | 4aa6d39fd8dfbb822db2f156ba371c1a5000f35c (diff) | |
download | mpd-6b70f5e49097c334c461994bb855709977bd8dae.tar.gz mpd-6b70f5e49097c334c461994bb855709977bd8dae.tar.xz mpd-6b70f5e49097c334c461994bb855709977bd8dae.zip |
Zeroconf*: move to zeroconf/
-rw-r--r-- | Makefile.am | 12 | ||||
-rw-r--r-- | src/Main.cxx | 2 | ||||
-rw-r--r-- | src/zeroconf/AvahiPoll.cxx (renamed from src/AvahiPoll.cxx) | 0 | ||||
-rw-r--r-- | src/zeroconf/AvahiPoll.hxx (renamed from src/AvahiPoll.hxx) | 0 | ||||
-rw-r--r-- | src/zeroconf/ZeroconfAvahi.cxx (renamed from src/ZeroconfAvahi.cxx) | 0 | ||||
-rw-r--r-- | src/zeroconf/ZeroconfAvahi.hxx (renamed from src/ZeroconfAvahi.hxx) | 0 | ||||
-rw-r--r-- | src/zeroconf/ZeroconfBonjour.cxx (renamed from src/ZeroconfBonjour.cxx) | 0 | ||||
-rw-r--r-- | src/zeroconf/ZeroconfBonjour.hxx (renamed from src/ZeroconfBonjour.hxx) | 0 | ||||
-rw-r--r-- | src/zeroconf/ZeroconfGlue.cxx (renamed from src/ZeroconfGlue.cxx) | 0 | ||||
-rw-r--r-- | src/zeroconf/ZeroconfGlue.hxx (renamed from src/ZeroconfGlue.hxx) | 0 | ||||
-rw-r--r-- | src/zeroconf/ZeroconfInternal.hxx (renamed from src/ZeroconfInternal.hxx) | 0 | ||||
-rw-r--r-- | test/run_avahi.cxx | 2 |
12 files changed, 8 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am index dbc720a82..22486443d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -807,17 +807,17 @@ endif if HAVE_ZEROCONF src_mpd_SOURCES += \ - src/ZeroconfInternal.hxx \ - src/ZeroconfGlue.cxx src/ZeroconfGlue.hxx + src/zeroconf/ZeroconfInternal.hxx \ + src/zeroconf/ZeroconfGlue.cxx src/zeroconf/ZeroconfGlue.hxx if HAVE_AVAHI src_mpd_SOURCES += \ - src/AvahiPoll.cxx src/AvahiPoll.hxx \ - src/ZeroconfAvahi.cxx src/ZeroconfAvahi.hxx + src/zeroconf/AvahiPoll.cxx src/zeroconf/AvahiPoll.hxx \ + src/zeroconf/ZeroconfAvahi.cxx src/zeroconf/ZeroconfAvahi.hxx endif if HAVE_BONJOUR -src_mpd_SOURCES += src/ZeroconfBonjour.cxx src/ZeroconfBonjour.hxx +src_mpd_SOURCES += src/zeroconf/ZeroconfBonjour.cxx src/zeroconf/ZeroconfBonjour.hxx endif endif @@ -1486,7 +1486,7 @@ test_software_volume_LDADD = \ test_run_avahi_SOURCES = \ src/Log.cxx src/LogBackend.cxx \ - src/ZeroconfAvahi.cxx src/AvahiPoll.cxx \ + src/zeroconf/ZeroconfAvahi.cxx src/zeroconf/AvahiPoll.cxx \ test/ShutdownHandler.cxx test/ShutdownHandler.hxx \ test/run_avahi.cxx test_run_avahi_CPPFLAGS = $(AM_CPPFLAGS) \ diff --git a/src/Main.cxx b/src/Main.cxx index 28afd12cf..8f6780661 100644 --- a/src/Main.cxx +++ b/src/Main.cxx @@ -52,7 +52,7 @@ #include "fs/Config.hxx" #include "fs/StandardDirectory.hxx" #include "playlist/PlaylistRegistry.hxx" -#include "ZeroconfGlue.hxx" +#include "zeroconf/ZeroconfGlue.hxx" #include "decoder/DecoderList.hxx" #include "AudioConfig.hxx" #include "pcm/PcmConvert.hxx" diff --git a/src/AvahiPoll.cxx b/src/zeroconf/AvahiPoll.cxx index 20d5d74e6..20d5d74e6 100644 --- a/src/AvahiPoll.cxx +++ b/src/zeroconf/AvahiPoll.cxx diff --git a/src/AvahiPoll.hxx b/src/zeroconf/AvahiPoll.hxx index e194d3370..e194d3370 100644 --- a/src/AvahiPoll.hxx +++ b/src/zeroconf/AvahiPoll.hxx diff --git a/src/ZeroconfAvahi.cxx b/src/zeroconf/ZeroconfAvahi.cxx index 8cd09cbed..8cd09cbed 100644 --- a/src/ZeroconfAvahi.cxx +++ b/src/zeroconf/ZeroconfAvahi.cxx diff --git a/src/ZeroconfAvahi.hxx b/src/zeroconf/ZeroconfAvahi.hxx index 09a199f55..09a199f55 100644 --- a/src/ZeroconfAvahi.hxx +++ b/src/zeroconf/ZeroconfAvahi.hxx diff --git a/src/ZeroconfBonjour.cxx b/src/zeroconf/ZeroconfBonjour.cxx index 5b5de1247..5b5de1247 100644 --- a/src/ZeroconfBonjour.cxx +++ b/src/zeroconf/ZeroconfBonjour.cxx diff --git a/src/ZeroconfBonjour.hxx b/src/zeroconf/ZeroconfBonjour.hxx index cff52815e..cff52815e 100644 --- a/src/ZeroconfBonjour.hxx +++ b/src/zeroconf/ZeroconfBonjour.hxx diff --git a/src/ZeroconfGlue.cxx b/src/zeroconf/ZeroconfGlue.cxx index 05bb3c17c..05bb3c17c 100644 --- a/src/ZeroconfGlue.cxx +++ b/src/zeroconf/ZeroconfGlue.cxx diff --git a/src/ZeroconfGlue.hxx b/src/zeroconf/ZeroconfGlue.hxx index 5d2f29642..5d2f29642 100644 --- a/src/ZeroconfGlue.hxx +++ b/src/zeroconf/ZeroconfGlue.hxx diff --git a/src/ZeroconfInternal.hxx b/src/zeroconf/ZeroconfInternal.hxx index 4d47d260a..4d47d260a 100644 --- a/src/ZeroconfInternal.hxx +++ b/src/zeroconf/ZeroconfInternal.hxx diff --git a/test/run_avahi.cxx b/test/run_avahi.cxx index b44980bc6..d1c153cfd 100644 --- a/test/run_avahi.cxx +++ b/test/run_avahi.cxx @@ -20,7 +20,7 @@ #include "config.h" #include "event/Loop.hxx" #include "ShutdownHandler.hxx" -#include "ZeroconfAvahi.hxx" +#include "zeroconf/ZeroconfAvahi.hxx" #include <stdlib.h> |