summaryrefslogtreecommitdiffstats
path: root/package/qwt
diff options
context:
space:
mode:
authorGwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>2017-05-11 15:46:57 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-05-11 17:52:54 +0200
commit11c619058e8b9de99d4ee227aaf41de1518395f8 (patch)
tree1b7a62d073fa103ffd6ca93f41a6e452a01bd8a8 /package/qwt
parente2bb446ff50c3bd346beca07d5e7f3dc11591a1c (diff)
downloadbuildroot-11c619058e8b9de99d4ee227aaf41de1518395f8.tar.gz
buildroot-11c619058e8b9de99d4ee227aaf41de1518395f8.zip
qwt: fix build when BR2_STATIC_LIBS=y
By default, qwt build a shared library, but when BR2_STATIC_LIBS is set compilation failed with errors like : __uClibc_main.c:(.text+0x164): undefined reference to `__fini_array_end' __uClibc_main.c:(.text+0x168): undefined reference to `__fini_array_start' __uClibc_main.c:(.text+0x16c): undefined reference to `__fini_array_start' This patch disable QwtDll to build a static library when BR2_STATIC_LIBS=y. fix: http://autobuild.buildroot.net/results/739/739406bb8073d1861933872a47802954d9767634/ Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/qwt')
-rw-r--r--package/qwt/qwt.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/package/qwt/qwt.mk b/package/qwt/qwt.mk
index d4e6d52c13..619453bfc9 100644
--- a/package/qwt/qwt.mk
+++ b/package/qwt/qwt.mk
@@ -41,6 +41,12 @@ else
QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtOpenGL.*$$/\# QWT_CONFIG += QwtOpenGL/'
endif
+ifeq ($(BR2_STATIC_LIBS),y)
+QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtDll.*$$/\# QWT_CONFIG += QwtDll/'
+else
+QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtDll.*$$/QWT_CONFIG += QwtDll/'
+endif
+
define QWT_CONFIGURE_CMDS
$(SED) $(QWT_CONFIG) $(@D)/qwtconfig.pri
(cd $(@D); $(TARGET_MAKE_ENV) $(QWT_QMAKE))
OpenPOWER on IntegriCloud