summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2015-05-05 17:06:35 +0200
committerPeter Korsgaard <peter@korsgaard.com>2015-05-05 17:08:46 +0200
commit078c1c4416648eea4a3d1f116e10c8ad6071b3d1 (patch)
tree766798ebbe1f6c9712fff00ad775812ce2f02201
parented8c73a47404f61a955d2fc26896b986d353b9dc (diff)
downloadbuildroot-078c1c4416648eea4a3d1f116e10c8ad6071b3d1.tar.gz
buildroot-078c1c4416648eea4a3d1f116e10c8ad6071b3d1.zip
Revert "qt: add QT_COORD_TYPE to double option"
This reverts commit 7619aba496208102e098e24454371b9513ec2f90. This change causes a number of build issues with poppler / pinentry / python-pyqt and Qt itself on various architectures, so lets revert it for now and rework it for the 2015.08 cycle. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--package/qt/Config.in10
-rw-r--r--package/qt/qt.mk5
2 files changed, 0 insertions, 15 deletions
diff --git a/package/qt/Config.in b/package/qt/Config.in
index 83fdeec812..43f5a0fc7c 100644
--- a/package/qt/Config.in
+++ b/package/qt/Config.in
@@ -120,16 +120,6 @@ config BR2_PACKAGE_QT_CONFIG_FILE
This option allows to set the path of such a configuration
file, which Buildroot will give to Qt at compile time.
-config BR2_PACKAGE_QT_QT_COORD_TYPE_DOUBLE
- bool "QT_COORD_TYPE to double"
- help
- Set QT_COORD_TYPE to double. On ARM-based platforms, qreal
- is a typedef for float for performance reasons, but for
- QT_COORD_TYPE, some people may want to use a double type
- anyway for precision.
-
- If unsure say n.
-
config BR2_PACKAGE_QT_QT3SUPPORT
bool "Compatibility with Qt3"
depends on BR2_PACKAGE_QT_GUI_MODULE
diff --git a/package/qt/qt.mk b/package/qt/qt.mk
index 919137b2a2..d1615ae0bf 100644
--- a/package/qt/qt.mk
+++ b/package/qt/qt.mk
@@ -46,11 +46,6 @@ QT_CFLAGS += -marm
QT_CXXFLAGS += -marm
endif
-ifeq ($(BR2_PACKAGE_QT_QT_COORD_TYPE_DOUBLE),y)
-QT_CFLAGS += -DQT_COORD_TYPE=double
-QT_CXXFLAGS += -DQT_COORD_TYPE=double
-endif
-
ifeq ($(BR2_PACKAGE_QT_QT3SUPPORT),y)
QT_CONFIGURE_OPTS += -qt3support
else
OpenPOWER on IntegriCloud