diff options
author | Konstantin Ritt <ritt.ks@gmail.com> | 2012-04-18 03:45:53 +0300 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-04-19 01:57:58 +0200 |
commit | 9a7f7b5d34b44088df4f8e7a16a2a5c75bb52ecf (patch) | |
tree | 984d59936ad79ee3115e56b64049d9990582f27a | |
parent | ee166bbce0b65abbc407dceeaefd1c7eb247febb (diff) | |
download | qtbase-9a7f7b5d34b44088df4f8e7a16a2a5c75bb52ecf.tar.gz |
qdbusxml2cpp: fix build on Windows
bootstrapped process defines QT_NO_LIBRARY but QT_NO_LIBRARY
is not supported on Windows
Change-Id: I353a8690832e292522ed6c39a7e0ca19b0980e01
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-rw-r--r-- | src/dbus/qdbus_symbols.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dbus/qdbus_symbols.cpp b/src/dbus/qdbus_symbols.cpp index 9e3bd5c5d6..cbf7dfc033 100644 --- a/src/dbus/qdbus_symbols.cpp +++ b/src/dbus/qdbus_symbols.cpp @@ -40,7 +40,9 @@ ****************************************************************************/ #include <QtCore/qglobal.h> +#ifndef QT_BOOTSTRAPPED #include <QtCore/qlibrary.h> +#endif #include <QtCore/qmutex.h> #include <private/qmutexpool_p.h> |