Commit 04d5588f authored by Max Kellermann's avatar Max Kellermann

zeroconf/Zeroconf*: drop prefix from file names

parent 40d06162
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#include "fs/AllocatedPath.hxx" #include "fs/AllocatedPath.hxx"
#include "fs/Config.hxx" #include "fs/Config.hxx"
#include "playlist/PlaylistRegistry.hxx" #include "playlist/PlaylistRegistry.hxx"
#include "zeroconf/ZeroconfGlue.hxx" #include "zeroconf/Glue.hxx"
#include "decoder/DecoderList.hxx" #include "decoder/DecoderList.hxx"
#include "pcm/AudioParser.hxx" #include "pcm/AudioParser.hxx"
#include "pcm/Convert.hxx" #include "pcm/Convert.hxx"
......
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include "ZeroconfBonjour.hxx" #include "Bonjour.hxx"
#include "ZeroconfInternal.hxx" #include "Internal.hxx"
#include "event/SocketEvent.hxx" #include "event/SocketEvent.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
#include "Log.hxx" #include "Log.hxx"
......
...@@ -17,9 +17,9 @@ ...@@ -17,9 +17,9 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include "ZeroconfGlue.hxx" #include "Glue.hxx"
#include "ZeroconfAvahi.hxx" #include "avahi/Init.hxx"
#include "ZeroconfBonjour.hxx" #include "Bonjour.hxx"
#include "config/Data.hxx" #include "config/Data.hxx"
#include "config/Option.hxx" #include "config/Option.hxx"
#include "Listen.hxx" #include "Listen.hxx"
......
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#ifndef ZEROCONF_INTERNAL_H #ifndef ZEROCONF_INTERNAL_HXX
#define ZEROCONF_INTERNAL_H #define ZEROCONF_INTERNAL_HXX
/* The dns-sd service type qualifier to publish */ /* The dns-sd service type qualifier to publish */
#define SERVICE_TYPE "_mpd._tcp" #define SERVICE_TYPE "_mpd._tcp"
......
...@@ -17,13 +17,13 @@ ...@@ -17,13 +17,13 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include "ZeroconfAvahi.hxx" #include "Init.hxx"
#include "avahi/Client.hxx" #include "../Internal.hxx"
#include "avahi/ConnectionListener.hxx" #include "Client.hxx"
#include "avahi/ErrorHandler.hxx" #include "ConnectionListener.hxx"
#include "avahi/Publisher.hxx" #include "ErrorHandler.hxx"
#include "avahi/Service.hxx" #include "Publisher.hxx"
#include "ZeroconfInternal.hxx" #include "Service.hxx"
#include "util/RuntimeError.hxx" #include "util/RuntimeError.hxx"
#include "Log.hxx" #include "Log.hxx"
......
...@@ -6,6 +6,7 @@ endif ...@@ -6,6 +6,7 @@ endif
avahi = static_library( avahi = static_library(
'avahi', 'avahi',
'Init.cxx',
'Client.cxx', 'Client.cxx',
'Error.cxx', 'Error.cxx',
'Poll.cxx', 'Poll.cxx',
......
...@@ -35,8 +35,8 @@ if zeroconf_option == 'bonjour' ...@@ -35,8 +35,8 @@ if zeroconf_option == 'bonjour'
zeroconf = static_library( zeroconf = static_library(
'zeroconf_bonjour', 'zeroconf_bonjour',
'ZeroconfGlue.cxx', 'Glue.cxx',
'ZeroconfBonjour.cxx', 'Bonjour.cxx',
include_directories: inc, include_directories: inc,
) )
...@@ -56,8 +56,7 @@ else ...@@ -56,8 +56,7 @@ else
zeroconf = static_library( zeroconf = static_library(
'zeroconf_bonjour', 'zeroconf_bonjour',
'ZeroconfGlue.cxx', 'Glue.cxx',
'ZeroconfAvahi.cxx',
include_directories: inc, include_directories: inc,
dependencies: [ dependencies: [
avahi_dep, avahi_dep,
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "event/Loop.hxx" #include "event/Loop.hxx"
#include "ShutdownHandler.hxx" #include "ShutdownHandler.hxx"
#include "zeroconf/ZeroconfAvahi.hxx" #include "zeroconf/avahi/Init.hxx"
#include <stdlib.h> #include <stdlib.h>
......
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