simplify/fix QT_BOOTSTRAPPED-related #ifdefs
don't test for building specific tools when we actually only want to know whether we are bootstrapping. so far, this was only redundant; with the upcoming change of not bootstrapping unnecessarily it would be outright broken. Change-Id: I7600d8ebb14a4194640c50035e35a04263f2ccce Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>bb10
parent
bd7ca33889
commit
096e32d814
|
|
@ -57,7 +57,7 @@
|
|||
# define __IMAGECAPTURE__
|
||||
#endif
|
||||
|
||||
#if defined(QT_BUILD_QMAKE) || defined(QT_BOOTSTRAPPED)
|
||||
#if defined(QT_BOOTSTRAPPED)
|
||||
#include <ApplicationServices/ApplicationServices.h>
|
||||
#else
|
||||
#include <CoreFoundation/CoreFoundation.h>
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#ifndef QBASICATOMIC_H
|
||||
#define QBASICATOMIC_H
|
||||
|
||||
#if defined(QT_MOC) || defined(QT_BUILD_QMAKE) || defined(QT_RCC) || defined(QT_UIC) || defined(QT_BOOTSTRAPPED)
|
||||
#if defined(QT_BOOTSTRAPPED)
|
||||
# include <QtCore/qatomic_bootstrap.h>
|
||||
|
||||
// Compiler dependent implementation
|
||||
|
|
|
|||
Loading…
Reference in New Issue