summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qglobal.h
diff options
context:
space:
mode:
authorAndreas Holzammer <andreas.holzammer@kdab.com>2013-10-30 12:52:40 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-04 11:42:01 +0100
commit7b2ae0db664a5f3fe9982a409e7e493245dde8ba (patch)
treef7b8bd8ad824bb6d4f0f779d807ccec35b41b9e1 /src/corelib/global/qglobal.h
parent9927c1a2bbb372d0e557c58062e4ecda7a644aa1 (diff)
Better check for host builds for fails on QT_POINTER_SIZE
Change-Id: I9949565617cb62e34dd4db93acc4162b24c99ff9 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'src/corelib/global/qglobal.h')
-rw-r--r--src/corelib/global/qglobal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/global/qglobal.h b/src/corelib/global/qglobal.h
index 5bb675728a..ea6639be1b 100644
--- a/src/corelib/global/qglobal.h
+++ b/src/corelib/global/qglobal.h
@@ -197,7 +197,7 @@ typedef quint64 qulonglong;
# define QT_POINTER_SIZE 4
# elif defined(Q_OS_ANDROID)
# define QT_POINTER_SIZE 4 // ### Add auto-detection to Windows configure
-# elif !defined(QT_BUILD_MOC) && !defined(QT_BUILD_QMAKE) && !defined(QT_BUILD_CONFIGURE)
+# elif !defined(QT_BOOTSTRAPPED)
# error could not determine QT_POINTER_SIZE
# endif
#endif