aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-04-22 21:28:01 +0200
committerAnton Khirnov <anton@khirnov.net>2013-11-04 11:02:13 +0100
commit3756812cbc334d41421a33e54f7fa3ea6e46808c (patch)
treeb21e9566d00c88b9daf1b1308a360735a272e5f2
parent76caa0a6e1ad8d2dc27eb34f2b106f2e61d3acd6 (diff)
check.h: remove silly #error
-rw-r--r--src/check.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/check.h b/src/check.h
index 6baef90d..34ee2e39 100644
--- a/src/check.h
+++ b/src/check.h
@@ -20,23 +20,6 @@
#ifndef MPD_CHECK_H
#define MPD_CHECK_H
-/*
- * All sources must include config.h on the first line to ensure that
- * Large File Support is configured properly. This header checks
- * whether this has happened.
- *
- * Usage: include this header before you use any of the above types.
- * It will stop the compiler if something went wrong.
- *
- * This is Linux/glibc specific, and only enabled in the debug build,
- * so bugs in this headers don't affect users with production builds.
- *
- */
-
-#ifndef MPD_CONFIG_H
-#error config.h missing
-#endif
-
#if defined(__linux__) && !defined(NDEBUG) && defined(ENABLE_LARGEFILE) && \
defined(_FEATURES_H) && defined(__i386__) && \
!defined(__USE_FILE_OFFSET64)