mirror of
https://github.com/openwrt/video.git
synced 2026-04-15 19:02:15 +00:00
Crosscompile and package Qt5 (base) and setup an environment to easily crosscompile and package other qmake based projects. Please see the comments within the Makefiles (Makefile / qmake.mk) for current limitations and known issues. Packaged from the "base" submodule herewith are: - qt5base-concurrent - qt5base-core - qt5base-gui - qt5base-network - qt5base-printSupport - qt5base-sql - qt5base-test - qt5base-widgets - qt5base-xml - qt5base-plugin-bearer-generic - qt5base-plugin-input-evdevkeyboard - qt5base-plugin-input-evdevmouse - qt5base-plugin-input-evdevtablet - qt5base-plugin-input-evdevtouch - qt5base-plugin-imageformats-gif - qt5base-plugin-imageformats-ico - qt5base-plugin-imageformats-jpeg - qt5base-plugin-platforms-linuxfb - qt5base-plugin-platforms-minimal - qt5base-plugin-platforms-offscreen - qt5base-plugin-sqldrivers-sqlite - qt5base-examples
12 lines
608 B
Diff
12 lines
608 B
Diff
--- qtbase-opensource-src-5.4.1.orig/src/corelib/kernel/qcrashhandler.cpp 2015-05-27 21:29:18.327561992 +0200
|
|
+++ qtbase-opensource-src-5.4.1/src/corelib/kernel/qcrashhandler.cpp 2015-05-27 21:34:18.543553856 +0200
|
|
@@ -62,7 +62,7 @@
|
|
|
|
QtCrashHandler QSegfaultHandler::callback = 0;
|
|
|
|
-#if defined(__GLIBC__) && (__GLIBC__ >= 2) && !defined(__UCLIBC__) && !defined(QT_LINUXBASE)
|
|
+#if defined(__GLIBC__) && (__GLIBC__ >= 2) && (!defined(__UCLIBC__) || (defined(__UCLIBC__) && defined(UCLIBC_HAS_BACKTRACE))) && !defined(QT_LINUXBASE)
|
|
QT_BEGIN_INCLUDE_NAMESPACE
|
|
# include "qstring.h"
|
|
# include <execinfo.h>
|