diff options
author | Max Kellermann <max@duempel.org> | 2013-09-05 08:47:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-05 08:47:10 +0200 |
commit | 26d92c80ed1c1cca8b3cb1c9793c09a330c25623 (patch) | |
tree | 67be2e2ac9bc7601e8428053d868048f50212695 /src/pcm | |
parent | 9605e24655dbb0d67b34e0be7aa71e621f3ae415 (diff) | |
download | mpd-26d92c80ed1c1cca8b3cb1c9793c09a330c25623.tar.gz mpd-26d92c80ed1c1cca8b3cb1c9793c09a330c25623.tar.xz mpd-26d92c80ed1c1cca8b3cb1c9793c09a330c25623.zip |
conf.h: remove obsolete header
Use only ConfigData.hxx in plugin sources to reduce header
dependencies.
Diffstat (limited to 'src/pcm')
-rw-r--r-- | src/pcm/PcmResample.cxx | 3 | ||||
-rw-r--r-- | src/pcm/PcmResampleLibsamplerate.cxx | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pcm/PcmResample.cxx b/src/pcm/PcmResample.cxx index 9ade8cf5b..e2ce095d1 100644 --- a/src/pcm/PcmResample.cxx +++ b/src/pcm/PcmResample.cxx @@ -21,7 +21,8 @@ #include "PcmResampleInternal.hxx" #ifdef HAVE_LIBSAMPLERATE -#include "conf.h" +#include "ConfigGlobal.hxx" +#include "ConfigOption.hxx" #endif #include <string.h> diff --git a/src/pcm/PcmResampleLibsamplerate.cxx b/src/pcm/PcmResampleLibsamplerate.cxx index 6710c2070..1ab9b1953 100644 --- a/src/pcm/PcmResampleLibsamplerate.cxx +++ b/src/pcm/PcmResampleLibsamplerate.cxx @@ -19,7 +19,6 @@ #include "config.h" #include "PcmResampleInternal.hxx" -#include "conf.h" #include "util/Error.hxx" #include "util/Domain.hxx" |