summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qglobal_p.h
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2016-10-11 18:09:07 +0200
committerOswald Buddenhagen <oswald.buddenhagen@qt.io>2016-10-18 05:59:14 +0000
commit7c1d640c0c6970342693ce04a60d9b1c84948b1e (patch)
tree8636f483490f2ff2c29cf885c5acf303d5f3358a /src/corelib/global/qglobal_p.h
parent14fed674ae54bec03006bef0430a1e72a5cabc9d (diff)
stop exporting the library versions
all users of this functionality have been removed, and not emitting the version info saves quite some noise from the generated files. the reason why the users have been removed is that it was unreliable in the first place: if a dependency is found without pkg-config, no version information would be available. the extraction of the version via pkg-config itself is kept in place, as configure tests could be potentially optimized by utilizing it. this reverts much of commit 48b4e0bf6f. Change-Id: I01917f3b2a56b747d7cc54955141d20d23d0990a Reviewed-by: Jake Petroules <jake.petroules@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/corelib/global/qglobal_p.h')
-rw-r--r--src/corelib/global/qglobal_p.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/corelib/global/qglobal_p.h b/src/corelib/global/qglobal_p.h
index c329357f46..b8f9e5fbf7 100644
--- a/src/corelib/global/qglobal_p.h
+++ b/src/corelib/global/qglobal_p.h
@@ -53,10 +53,5 @@
#include <QtCore/private/qtcore-config_p.h>
#endif
-#define QT_LIBRARY_VERSION(lib) QT_LIBRARY_VERSION_##lib
-#define QT_LIBRARY_VERSION_MAJOR(lib) (QT_LIBRARY_VERSION_##lib >> 16)
-#define QT_LIBRARY_VERSION_MINOR(lib) ((QT_LIBRARY_VERSION_##lib >> 8) & 0xff)
-#define QT_LIBRARY_VERSION_PATCH(lib) (QT_LIBRARY_VERSION_##lib & 0xff)
-
#endif // QGLOBAL_P_H