diff options
author | Max Kellermann <max@musicpd.org> | 2018-11-19 12:49:45 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-11-19 16:33:49 +0100 |
commit | ce49d99c2f3265f2975b2cff583684bf191bbd93 (patch) | |
tree | 98fa09c94aa5d170fd3f553ac107ea2f0aa82bf4 /src/input | |
parent | 2e450bbf959e7b72894c5037a2d46523556c8b72 (diff) |
check.h: remove obsolete header
Since we switched from autotools to Meson in commit
94592c14062d5afc9482d11baa401648082022c0, we don't need to include
`config.h` early to properly enable large file support. Meson passes
the required macros on the compiler command line instead of defining
them in `config.h`.
This means we can include `config.h` at any time, whenever we want to
check its macros, and there are no ordering constraints.
Diffstat (limited to 'src/input')
60 files changed, 3 insertions, 64 deletions
diff --git a/src/input/AsyncInputStream.cxx b/src/input/AsyncInputStream.cxx index e8a598555..63c2c472f 100644 --- a/src/input/AsyncInputStream.cxx +++ b/src/input/AsyncInputStream.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "AsyncInputStream.hxx" #include "CondHandler.hxx" #include "tag/Tag.hxx" diff --git a/src/input/BufferedInputStream.cxx b/src/input/BufferedInputStream.cxx index 1aa5fa09c..98cd5293c 100644 --- a/src/input/BufferedInputStream.cxx +++ b/src/input/BufferedInputStream.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "BufferedInputStream.hxx" #include "thread/Cond.hxx" #include "thread/Name.hxx" diff --git a/src/input/BufferedInputStream.hxx b/src/input/BufferedInputStream.hxx index 2bed6b408..a04c9e9ae 100644 --- a/src/input/BufferedInputStream.hxx +++ b/src/input/BufferedInputStream.hxx @@ -20,7 +20,6 @@ #ifndef MPD_BUFFERED_INPUT_STREAM_BUFFER_HXX #define MPD_BUFFERED_INPUT_STREAM_BUFFER_HXX -#include "check.h" #include "InputStream.hxx" #include "Ptr.hxx" #include "Handler.hxx" diff --git a/src/input/CondHandler.hxx b/src/input/CondHandler.hxx index 70538d25d..3468ea68b 100644 --- a/src/input/CondHandler.hxx +++ b/src/input/CondHandler.hxx @@ -20,7 +20,6 @@ #ifndef MPD_COND_INPUT_STREAM_HANDLER_HXX #define MPD_COND_INPUT_STREAM_HANDLER_HXX -#include "check.h" #include "Handler.hxx" #include "thread/Cond.hxx" diff --git a/src/input/Error.cxx b/src/input/Error.cxx index b3f0e7e65..29194a74f 100644 --- a/src/input/Error.cxx +++ b/src/input/Error.cxx @@ -17,9 +17,9 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "Error.hxx" #include "system/Error.hxx" +#include "config.h" #ifdef ENABLE_CURL #include "lib/curl/Error.hxx" diff --git a/src/input/Error.hxx b/src/input/Error.hxx index 04ea27ab8..6fc2fc5d5 100644 --- a/src/input/Error.hxx +++ b/src/input/Error.hxx @@ -20,7 +20,6 @@ #ifndef INPUT_ERROR_HXX #define INPUT_ERROR_HXX -#include "check.h" #include "util/Compiler.h" #include <exception> diff --git a/src/input/Handler.hxx b/src/input/Handler.hxx index 533e51518..b27b996da 100644 --- a/src/input/Handler.hxx +++ b/src/input/Handler.hxx @@ -20,8 +20,6 @@ #ifndef MPD_INPUT_STREAM_HANDLER_HXX #define MPD_INPUT_STREAM_HANDLER_HXX -#include "check.h" - /** * An interface which gets receives events from an #InputStream. Its * methods will be called from within an arbitrary thread and must not diff --git a/src/input/IcyInputStream.cxx b/src/input/IcyInputStream.cxx index 801a014c2..df87b7785 100644 --- a/src/input/IcyInputStream.cxx +++ b/src/input/IcyInputStream.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "IcyInputStream.hxx" #include "IcyMetaDataParser.hxx" #include "tag/Tag.hxx" diff --git a/src/input/Init.cxx b/src/input/Init.cxx index 6e628a475..3b714bf5c 100644 --- a/src/input/Init.cxx +++ b/src/input/Init.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "Init.hxx" #include "Registry.hxx" #include "InputPlugin.hxx" diff --git a/src/input/InputStream.cxx b/src/input/InputStream.cxx index 7e2c39ebc..b6433c5ae 100644 --- a/src/input/InputStream.cxx +++ b/src/input/InputStream.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "InputStream.hxx" #include "Handler.hxx" #include "tag/Tag.hxx" diff --git a/src/input/InputStream.hxx b/src/input/InputStream.hxx index 5e13d111d..4d012e91a 100644 --- a/src/input/InputStream.hxx +++ b/src/input/InputStream.hxx @@ -20,7 +20,6 @@ #ifndef MPD_INPUT_STREAM_HXX #define MPD_INPUT_STREAM_HXX -#include "check.h" #include "Offset.hxx" #include "Ptr.hxx" #include "thread/Mutex.hxx" diff --git a/src/input/LocalOpen.cxx b/src/input/LocalOpen.cxx index 26b02769c..2271d51fb 100644 --- a/src/input/LocalOpen.cxx +++ b/src/input/LocalOpen.cxx @@ -17,10 +17,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "LocalOpen.hxx" #include "InputStream.hxx" #include "plugins/FileInputPlugin.hxx" +#include "config.h" #ifdef ENABLE_ARCHIVE #include "plugins/ArchiveInputPlugin.hxx" diff --git a/src/input/LocalOpen.hxx b/src/input/LocalOpen.hxx index 25c85f379..0b58f443f 100644 --- a/src/input/LocalOpen.hxx +++ b/src/input/LocalOpen.hxx @@ -20,7 +20,6 @@ #ifndef MPD_INPUT_LOCAL_OPEN_HXX #define MPD_INPUT_LOCAL_OPEN_HXX -#include "check.h" #include "Ptr.hxx" class Path; diff --git a/src/input/MaybeBufferedInputStream.cxx b/src/input/MaybeBufferedInputStream.cxx index dc9b801a3..1f46a819f 100644 --- a/src/input/MaybeBufferedInputStream.cxx +++ b/src/input/MaybeBufferedInputStream.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "MaybeBufferedInputStream.hxx" #include "BufferedInputStream.hxx" diff --git a/src/input/MaybeBufferedInputStream.hxx b/src/input/MaybeBufferedInputStream.hxx index 8e774729c..faf6eda5a 100644 --- a/src/input/MaybeBufferedInputStream.hxx +++ b/src/input/MaybeBufferedInputStream.hxx @@ -20,7 +20,6 @@ #ifndef MPD_MAYBE_BUFFERED_INPUT_STREAM_BUFFER_HXX #define MPD_MAYBE_BUFFERED_INPUT_STREAM_BUFFER_HXX -#include "check.h" #include "ProxyInputStream.hxx" /** diff --git a/src/input/Offset.hxx b/src/input/Offset.hxx index adb2cf3d2..beab0e227 100644 --- a/src/input/Offset.hxx +++ b/src/input/Offset.hxx @@ -20,8 +20,6 @@ #ifndef MPD_OFFSET_HXX #define MPD_OFFSET_HXX -#include "check.h" - #include <stdint.h> /** diff --git a/src/input/Open.cxx b/src/input/Open.cxx index bbeb47bb7..1c948f8f3 100644 --- a/src/input/Open.cxx +++ b/src/input/Open.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "InputStream.hxx" #include "Registry.hxx" #include "InputPlugin.hxx" diff --git a/src/input/ProxyInputStream.cxx b/src/input/ProxyInputStream.cxx index 8217ef962..0d9d808b8 100644 --- a/src/input/ProxyInputStream.cxx +++ b/src/input/ProxyInputStream.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "ProxyInputStream.hxx" #include "tag/Tag.hxx" diff --git a/src/input/Reader.cxx b/src/input/Reader.cxx index d6836a33c..346bd7ed6 100644 --- a/src/input/Reader.cxx +++ b/src/input/Reader.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "Reader.hxx" #include "InputStream.hxx" diff --git a/src/input/Reader.hxx b/src/input/Reader.hxx index 5b1f7b682..9573e0e15 100644 --- a/src/input/Reader.hxx +++ b/src/input/Reader.hxx @@ -20,7 +20,6 @@ #ifndef MPD_INPUT_READER_HXX #define MPD_INPUT_READER_HXX -#include "check.h" #include "fs/io/Reader.hxx" #include "util/Compiler.h" diff --git a/src/input/Registry.cxx b/src/input/Registry.cxx index 463fd7cf0..15749b418 100644 --- a/src/input/Registry.cxx +++ b/src/input/Registry.cxx @@ -17,12 +17,12 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "Registry.hxx" #include "InputPlugin.hxx" #include "util/Macros.hxx" #include "plugins/TidalInputPlugin.hxx" #include "plugins/QobuzInputPlugin.hxx" +#include "config.h" #ifdef ENABLE_ALSA #include "plugins/AlsaInputPlugin.hxx" diff --git a/src/input/Registry.hxx b/src/input/Registry.hxx index 7d907ba69..18921c0dc 100644 --- a/src/input/Registry.hxx +++ b/src/input/Registry.hxx @@ -20,7 +20,6 @@ #ifndef MPD_INPUT_REGISTRY_HXX #define MPD_INPUT_REGISTRY_HXX -#include "check.h" #include "util/Compiler.h" /** diff --git a/src/input/RewindInputStream.cxx b/src/input/RewindInputStream.cxx index b2bd1d606..98f2d1967 100644 --- a/src/input/RewindInputStream.cxx +++ b/src/input/RewindInputStream.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "RewindInputStream.hxx" #include "ProxyInputStream.hxx" diff --git a/src/input/RewindInputStream.hxx b/src/input/RewindInputStream.hxx index ce7293ff6..397e1e032 100644 --- a/src/input/RewindInputStream.hxx +++ b/src/input/RewindInputStream.hxx @@ -27,7 +27,6 @@ #ifndef MPD_REWIND_INPUT_STREAM_HXX #define MPD_REWIND_INPUT_STREAM_HXX -#include "check.h" #include "Ptr.hxx" InputStreamPtr diff --git a/src/input/ScanTags.cxx b/src/input/ScanTags.cxx index df890b470..43f0670ea 100644 --- a/src/input/ScanTags.cxx +++ b/src/input/ScanTags.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "ScanTags.hxx" #include "RemoteTagScanner.hxx" #include "InputPlugin.hxx" diff --git a/src/input/ScanTags.hxx b/src/input/ScanTags.hxx index c7f1fe3d4..086adca1c 100644 --- a/src/input/ScanTags.hxx +++ b/src/input/ScanTags.hxx @@ -20,8 +20,6 @@ #ifndef MPD_INPUT_SCAN_TAGS_HXX #define MPD_INPUT_SCAN_TAGS_HXX -#include "check.h" - #include <memory> class RemoteTagScanner; diff --git a/src/input/TextInputStream.cxx b/src/input/TextInputStream.cxx index c3c6aa30c..98f3f96a4 100644 --- a/src/input/TextInputStream.cxx +++ b/src/input/TextInputStream.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "TextInputStream.hxx" #include "InputStream.hxx" #include "util/TextFile.hxx" diff --git a/src/input/ThreadInputStream.cxx b/src/input/ThreadInputStream.cxx index 4d6f07878..aa38640c6 100644 --- a/src/input/ThreadInputStream.cxx +++ b/src/input/ThreadInputStream.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "ThreadInputStream.hxx" #include "CondHandler.hxx" #include "thread/Name.hxx" diff --git a/src/input/ThreadInputStream.hxx b/src/input/ThreadInputStream.hxx index 6c648fa7d..14b849238 100644 --- a/src/input/ThreadInputStream.hxx +++ b/src/input/ThreadInputStream.hxx @@ -20,7 +20,6 @@ #ifndef MPD_THREAD_INPUT_STREAM_HXX #define MPD_THREAD_INPUT_STREAM_HXX -#include "check.h" #include "InputStream.hxx" #include "thread/Thread.hxx" #include "thread/Cond.hxx" diff --git a/src/input/plugins/AlsaInputPlugin.cxx b/src/input/plugins/AlsaInputPlugin.cxx index 29578ebc8..4cdfdbbaf 100644 --- a/src/input/plugins/AlsaInputPlugin.cxx +++ b/src/input/plugins/AlsaInputPlugin.cxx @@ -24,7 +24,6 @@ * http://alsamodular.sourceforge.net/alsa_programming_howto.html */ -#include "config.h" #include "AlsaInputPlugin.hxx" #include "lib/alsa/NonBlock.hxx" #include "../InputPlugin.hxx" diff --git a/src/input/plugins/ArchiveInputPlugin.cxx b/src/input/plugins/ArchiveInputPlugin.cxx index ba4948640..b7f12f74b 100644 --- a/src/input/plugins/ArchiveInputPlugin.cxx +++ b/src/input/plugins/ArchiveInputPlugin.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "ArchiveInputPlugin.hxx" #include "archive/ArchiveDomain.hxx" #include "archive/ArchiveLookup.hxx" diff --git a/src/input/plugins/CurlInputPlugin.cxx b/src/input/plugins/CurlInputPlugin.cxx index b4144e919..74d28fde0 100644 --- a/src/input/plugins/CurlInputPlugin.cxx +++ b/src/input/plugins/CurlInputPlugin.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "CurlInputPlugin.hxx" #include "lib/curl/Error.hxx" #include "lib/curl/Easy.hxx" diff --git a/src/input/plugins/FfmpegInputPlugin.cxx b/src/input/plugins/FfmpegInputPlugin.cxx index 66ea5572a..09597e774 100644 --- a/src/input/plugins/FfmpegInputPlugin.cxx +++ b/src/input/plugins/FfmpegInputPlugin.cxx @@ -20,7 +20,6 @@ /* necessary because libavutil/common.h uses UINT64_C */ #define __STDC_CONSTANT_MACROS -#include "config.h" #include "FfmpegInputPlugin.hxx" #include "lib/ffmpeg/Init.hxx" #include "lib/ffmpeg/Domain.hxx" diff --git a/src/input/plugins/FileInputPlugin.cxx b/src/input/plugins/FileInputPlugin.cxx index 6ff01ce39..989d3de74 100644 --- a/src/input/plugins/FileInputPlugin.cxx +++ b/src/input/plugins/FileInputPlugin.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" /* must be first for large file support */ #include "FileInputPlugin.hxx" #include "../InputStream.hxx" #include "../InputPlugin.hxx" diff --git a/src/input/plugins/MmsInputPlugin.cxx b/src/input/plugins/MmsInputPlugin.cxx index 17cd016e6..0d7de8f88 100644 --- a/src/input/plugins/MmsInputPlugin.cxx +++ b/src/input/plugins/MmsInputPlugin.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "MmsInputPlugin.hxx" #include "input/ThreadInputStream.hxx" #include "input/InputPlugin.hxx" diff --git a/src/input/plugins/NfsInputPlugin.cxx b/src/input/plugins/NfsInputPlugin.cxx index c1c1f3264..8281c003d 100644 --- a/src/input/plugins/NfsInputPlugin.cxx +++ b/src/input/plugins/NfsInputPlugin.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "NfsInputPlugin.hxx" #include "../AsyncInputStream.hxx" #include "../InputPlugin.hxx" diff --git a/src/input/plugins/QobuzClient.cxx b/src/input/plugins/QobuzClient.cxx index 05bc666ba..5adcee5aa 100644 --- a/src/input/plugins/QobuzClient.cxx +++ b/src/input/plugins/QobuzClient.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "QobuzClient.hxx" #include "lib/gcrypt/MD5.hxx" #include "util/ConstBuffer.hxx" diff --git a/src/input/plugins/QobuzClient.hxx b/src/input/plugins/QobuzClient.hxx index 4edcc2c5d..9bc3ab4d5 100644 --- a/src/input/plugins/QobuzClient.hxx +++ b/src/input/plugins/QobuzClient.hxx @@ -20,7 +20,6 @@ #ifndef QOBUZ_CLIENT_HXX #define QOBUZ_CLIENT_HXX -#include "check.h" #include "QobuzSession.hxx" #include "QobuzLoginRequest.hxx" #include "lib/curl/Init.hxx" diff --git a/src/input/plugins/QobuzErrorParser.cxx b/src/input/plugins/QobuzErrorParser.cxx index fb7cce509..69993b8b5 100644 --- a/src/input/plugins/QobuzErrorParser.cxx +++ b/src/input/plugins/QobuzErrorParser.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "QobuzErrorParser.hxx" #include "lib/yajl/Callbacks.hxx" #include "util/ConstBuffer.hxx" diff --git a/src/input/plugins/QobuzErrorParser.hxx b/src/input/plugins/QobuzErrorParser.hxx index 35e3d8e7d..26dbd5529 100644 --- a/src/input/plugins/QobuzErrorParser.hxx +++ b/src/input/plugins/QobuzErrorParser.hxx @@ -20,7 +20,6 @@ #ifndef QOBUZ_ERROR_PARSER_HXX #define QOBUZ_ERROR_PARSER_HXX -#include "check.h" #include "lib/yajl/ResponseParser.hxx" #include <string> diff --git a/src/input/plugins/QobuzInputPlugin.cxx b/src/input/plugins/QobuzInputPlugin.cxx index d0717b345..31f60cb24 100644 --- a/src/input/plugins/QobuzInputPlugin.cxx +++ b/src/input/plugins/QobuzInputPlugin.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "QobuzInputPlugin.hxx" #include "QobuzClient.hxx" #include "QobuzTrackRequest.hxx" diff --git a/src/input/plugins/QobuzLoginRequest.cxx b/src/input/plugins/QobuzLoginRequest.cxx index 877e70b0c..b1f55515a 100644 --- a/src/input/plugins/QobuzLoginRequest.cxx +++ b/src/input/plugins/QobuzLoginRequest.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "QobuzLoginRequest.hxx" #include "QobuzErrorParser.hxx" #include "QobuzSession.hxx" diff --git a/src/input/plugins/QobuzLoginRequest.hxx b/src/input/plugins/QobuzLoginRequest.hxx index cfc0ae2ef..d2e56fa31 100644 --- a/src/input/plugins/QobuzLoginRequest.hxx +++ b/src/input/plugins/QobuzLoginRequest.hxx @@ -20,7 +20,6 @@ #ifndef QOBUZ_LOGIN_REQUEST_HXX #define QOBUZ_LOGIN_REQUEST_HXX -#include "check.h" #include "lib/curl/Delegate.hxx" #include "lib/curl/Request.hxx" diff --git a/src/input/plugins/QobuzTagScanner.cxx b/src/input/plugins/QobuzTagScanner.cxx index ce01829b4..9d045d062 100644 --- a/src/input/plugins/QobuzTagScanner.cxx +++ b/src/input/plugins/QobuzTagScanner.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "QobuzTagScanner.hxx" #include "QobuzErrorParser.hxx" #include "QobuzClient.hxx" diff --git a/src/input/plugins/QobuzTagScanner.hxx b/src/input/plugins/QobuzTagScanner.hxx index eae715da1..2fc3afdd1 100644 --- a/src/input/plugins/QobuzTagScanner.hxx +++ b/src/input/plugins/QobuzTagScanner.hxx @@ -20,7 +20,6 @@ #ifndef QOBUZ_TAG_SCANNER #define QOBUZ_TAG_SCANNER -#include "check.h" #include "lib/curl/Delegate.hxx" #include "lib/curl/Request.hxx" #include "input/RemoteTagScanner.hxx" diff --git a/src/input/plugins/QobuzTrackRequest.cxx b/src/input/plugins/QobuzTrackRequest.cxx index 3c83297d2..1667125cb 100644 --- a/src/input/plugins/QobuzTrackRequest.cxx +++ b/src/input/plugins/QobuzTrackRequest.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "QobuzTrackRequest.hxx" #include "QobuzErrorParser.hxx" #include "QobuzClient.hxx" diff --git a/src/input/plugins/QobuzTrackRequest.hxx b/src/input/plugins/QobuzTrackRequest.hxx index 642f638c8..2f4a22fe3 100644 --- a/src/input/plugins/QobuzTrackRequest.hxx +++ b/src/input/plugins/QobuzTrackRequest.hxx @@ -20,7 +20,6 @@ #ifndef QOBUZ_TRACK_REQUEST_HXX #define QOBUZ_TRACK_REQUEST_HXX -#include "check.h" #include "lib/curl/Delegate.hxx" #include "lib/curl/Slist.hxx" #include "lib/curl/Request.hxx" diff --git a/src/input/plugins/SmbclientInputPlugin.cxx b/src/input/plugins/SmbclientInputPlugin.cxx index 42db9e084..4469dbab5 100644 --- a/src/input/plugins/SmbclientInputPlugin.cxx +++ b/src/input/plugins/SmbclientInputPlugin.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "SmbclientInputPlugin.hxx" #include "lib/smbclient/Init.hxx" #include "lib/smbclient/Mutex.hxx" diff --git a/src/input/plugins/TidalError.hxx b/src/input/plugins/TidalError.hxx index 5c7d80886..eba4c9bec 100644 --- a/src/input/plugins/TidalError.hxx +++ b/src/input/plugins/TidalError.hxx @@ -20,8 +20,6 @@ #ifndef TIDAL_ERROR_HXX #define TIDAL_ERROR_HXX -#include "check.h" - #include <stdexcept> /** diff --git a/src/input/plugins/TidalErrorParser.cxx b/src/input/plugins/TidalErrorParser.cxx index 0608d619d..9ef101844 100644 --- a/src/input/plugins/TidalErrorParser.cxx +++ b/src/input/plugins/TidalErrorParser.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "TidalErrorParser.hxx" #include "TidalError.hxx" #include "lib/yajl/Callbacks.hxx" diff --git a/src/input/plugins/TidalErrorParser.hxx b/src/input/plugins/TidalErrorParser.hxx index 9c59e5359..7a7fa9169 100644 --- a/src/input/plugins/TidalErrorParser.hxx +++ b/src/input/plugins/TidalErrorParser.hxx @@ -20,7 +20,6 @@ #ifndef TIDAL_ERROR_PARSER_HXX #define TIDAL_ERROR_PARSER_HXX -#include "check.h" #include "lib/yajl/ResponseParser.hxx" #include <string> diff --git a/src/input/plugins/TidalInputPlugin.cxx b/src/input/plugins/TidalInputPlugin.cxx index a94e94af0..95025954b 100644 --- a/src/input/plugins/TidalInputPlugin.cxx +++ b/src/input/plugins/TidalInputPlugin.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "TidalInputPlugin.hxx" #include "TidalSessionManager.hxx" #include "TidalTrackRequest.hxx" diff --git a/src/input/plugins/TidalLoginRequest.cxx b/src/input/plugins/TidalLoginRequest.cxx index 515b0edb3..de93c1440 100644 --- a/src/input/plugins/TidalLoginRequest.cxx +++ b/src/input/plugins/TidalLoginRequest.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "TidalLoginRequest.hxx" #include "TidalErrorParser.hxx" #include "lib/curl/Form.hxx" diff --git a/src/input/plugins/TidalLoginRequest.hxx b/src/input/plugins/TidalLoginRequest.hxx index 022cf2dcf..3bedec576 100644 --- a/src/input/plugins/TidalLoginRequest.hxx +++ b/src/input/plugins/TidalLoginRequest.hxx @@ -20,7 +20,6 @@ #ifndef TIDAL_LOGIN_REQUEST_HXX #define TIDAL_LOGIN_REQUEST_HXX -#include "check.h" #include "lib/curl/Delegate.hxx" #include "lib/curl/Slist.hxx" #include "lib/curl/Request.hxx" diff --git a/src/input/plugins/TidalSessionManager.cxx b/src/input/plugins/TidalSessionManager.cxx index a5a49c8a8..48c4719d5 100644 --- a/src/input/plugins/TidalSessionManager.cxx +++ b/src/input/plugins/TidalSessionManager.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "TidalSessionManager.hxx" #include "lib/curl/Global.hxx" #include "util/Domain.hxx" diff --git a/src/input/plugins/TidalSessionManager.hxx b/src/input/plugins/TidalSessionManager.hxx index 25f6702a8..f5b4c9299 100644 --- a/src/input/plugins/TidalSessionManager.hxx +++ b/src/input/plugins/TidalSessionManager.hxx @@ -20,7 +20,6 @@ #ifndef TIDAL_SESSION_MANAGER_HXX #define TIDAL_SESSION_MANAGER_HXX -#include "check.h" #include "TidalLoginRequest.hxx" #include "lib/curl/Init.hxx" #include "thread/Mutex.hxx" diff --git a/src/input/plugins/TidalTagScanner.cxx b/src/input/plugins/TidalTagScanner.cxx index ce4340cc3..b0860729d 100644 --- a/src/input/plugins/TidalTagScanner.cxx +++ b/src/input/plugins/TidalTagScanner.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "TidalTagScanner.hxx" #include "TidalErrorParser.hxx" #include "lib/yajl/Callbacks.hxx" diff --git a/src/input/plugins/TidalTagScanner.hxx b/src/input/plugins/TidalTagScanner.hxx index eb7aa3234..7a6d7304e 100644 --- a/src/input/plugins/TidalTagScanner.hxx +++ b/src/input/plugins/TidalTagScanner.hxx @@ -20,7 +20,6 @@ #ifndef TIDAL_TAG_SCANNER_HXX #define TIDAL_TAG_SCANNER_HXX -#include "check.h" #include "lib/curl/Delegate.hxx" #include "lib/curl/Slist.hxx" #include "lib/curl/Request.hxx" diff --git a/src/input/plugins/TidalTrackRequest.cxx b/src/input/plugins/TidalTrackRequest.cxx index 5a54bddd5..97547fb06 100644 --- a/src/input/plugins/TidalTrackRequest.cxx +++ b/src/input/plugins/TidalTrackRequest.cxx @@ -17,7 +17,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "config.h" #include "TidalTrackRequest.hxx" #include "TidalErrorParser.hxx" #include "lib/yajl/Callbacks.hxx" diff --git a/src/input/plugins/TidalTrackRequest.hxx b/src/input/plugins/TidalTrackRequest.hxx index fbd7bd780..382a334c0 100644 --- a/src/input/plugins/TidalTrackRequest.hxx +++ b/src/input/plugins/TidalTrackRequest.hxx @@ -20,7 +20,6 @@ #ifndef TIDAL_TRACK_REQUEST_HXX #define TIDAL_TRACK_REQUEST_HXX -#include "check.h" #include "lib/curl/Delegate.hxx" #include "lib/curl/Slist.hxx" #include "lib/curl/Request.hxx" |