summaryrefslogtreecommitdiffstats
path: root/tools/configure/configure_pch.h
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-02-08 10:21:28 +0100
committerQt by Nokia <qt-info@nokia.com>2012-02-09 22:12:30 +0100
commit0678a7db8e8eb6997b0acb106dd4347ef8c76fbe (patch)
tree04c03a4d18003214807514deae11e982d339d45a /tools/configure/configure_pch.h
parentaf93c70de72f6bcea948b43e8f7bf50dad8face3 (diff)
remove bizarre magic from precompiled header
it doesn't serve any puropse (any more?) and it breaks the mingw build. Change-Id: I02a5e7502586e7e9f5956991498ff602eff66e81 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'tools/configure/configure_pch.h')
-rw-r--r--tools/configure/configure_pch.h25
1 files changed, 1 insertions, 24 deletions
diff --git a/tools/configure/configure_pch.h b/tools/configure/configure_pch.h
index 6f601c7c29..0831364fe1 100644
--- a/tools/configure/configure_pch.h
+++ b/tools/configure/configure_pch.h
@@ -39,34 +39,11 @@
**
****************************************************************************/
-#if (defined(_WIN32) || defined(__NT__))
-# define QT_UNDEF_MACROS_IN_PCH
-# define _WINSCARD_H_
-# define _POSIX_ /* Make sure PATH_MAX et al. are defined */
-# include <limits.h>
-# undef _POSIX_ /* Don't polute */
-
- /* Make sure IP v6 is defined first of all, before windows.h */
-# include <winsock2.h>
-# include <stdlib.h>
-#endif
-
-#if defined __cplusplus
+#include <qplatformdefs.h>
#include <qglobal.h>
#include <qlist.h>
#include <qvariant.h> // All moc genereated code has this include
-#include <qplatformdefs.h>
#include <qregexp.h>
#include <qstring.h>
#include <qstringlist.h>
#include <qtextcodec.h>
-
-#include <limits.h>
-#include <stdlib.h>
-#endif
-
-#if defined(QT_UNDEF_MACROS_IN_PCH)
-# undef max /* These are defined in windef.h, but */
-# undef min /* we don't want them when building Qt */
-# undef _WINSCARD_H_
-#endif