e9830ff31f
qt5base: - remove 0003-Do-not-load-plugin-from-the-PWD.patch (taken from upstream [1]) - remove 0004-QLibrary-Unix-do-not-attempt-to-load-a-library-relat.patch (taken from upstream [2]) qt5webengine: - update 3rdparty license hash script to not include '*.pyc' files - update 3rdparty license hash list and chromium-latest.inc file [1] https://code.qt.io/cgit/qt/qtbase.git/commit/?id=bf131e8d2181b3404f5293546ed390999f760404 [2] https://code.qt.io/cgit/qt/qtbase.git/commit/?id=e6f1fde24f77f63fb16b2df239f82a89d2bf05dd Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
689 B
Makefile
22 lines
689 B
Makefile
################################################################################
|
|
#
|
|
# qt5
|
|
#
|
|
################################################################################
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5_VERSION_LATEST),y)
|
|
QT5_VERSION_MAJOR = 5.12
|
|
QT5_VERSION = $(QT5_VERSION_MAJOR).7
|
|
QT5_SOURCE_TARBALL_PREFIX = everywhere-src
|
|
else
|
|
QT5_VERSION_MAJOR = 5.6
|
|
QT5_VERSION = $(QT5_VERSION_MAJOR).3
|
|
QT5_SOURCE_TARBALL_PREFIX = opensource-src
|
|
endif
|
|
QT5_SITE = https://download.qt.io/archive/qt/$(QT5_VERSION_MAJOR)/$(QT5_VERSION)/submodules
|
|
|
|
include $(sort $(wildcard package/qt5/*/*.mk))
|
|
|
|
# Variable for other Qt applications to use
|
|
QT5_QMAKE = $(HOST_DIR)/bin/qmake -spec devices/linux-buildroot-g++
|