From 7a33e4d8dcd06d818cf7fd5a51492c915e33dc00 Mon Sep 17 00:00:00 2001 From: Piraty Date: Fri, 8 Jun 2018 15:18:53 +0200 Subject: [PATCH] texstudio: update to 2.12.14. --- srcpkgs/texstudio/patches/12-aarch64-backtrace.patch | 12 ------------ srcpkgs/texstudio/template | 8 ++++++-- 2 files changed, 6 insertions(+), 14 deletions(-) delete mode 100644 srcpkgs/texstudio/patches/12-aarch64-backtrace.patch diff --git a/srcpkgs/texstudio/patches/12-aarch64-backtrace.patch b/srcpkgs/texstudio/patches/12-aarch64-backtrace.patch deleted file mode 100644 index 72c99ec0393..00000000000 --- a/srcpkgs/texstudio/patches/12-aarch64-backtrace.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- src/debughelper.cpp -+++ src/debughelper.cpp -@@ -8,6 +8,9 @@ - #ifndef __GLIBC__ - #define NO_CRASH_HANDLER - #endif -+#ifdef __aarch64__ -+#define NO_CRASH_HANDLER -+#endif - - #ifndef NO_CRASH_HANDLER - #if (defined(x86_64) || defined(__x86_64__)) diff --git a/srcpkgs/texstudio/template b/srcpkgs/texstudio/template index 09dc4e6a832..85626e6fcb0 100644 --- a/srcpkgs/texstudio/template +++ b/srcpkgs/texstudio/template @@ -1,6 +1,6 @@ # Template file for 'texstudio' pkgname=texstudio -version=2.12.12 +version=2.12.14 revision=1 build_style=qmake configure_args="$(vopt_if phonon PHONON=true) @@ -14,7 +14,7 @@ maintainer="Piraty " license="GPL-2.0-or-later" homepage="https://texstudio.org/" distfiles="https://github.com/texstudio-org/texstudio/archive/${version}.tar.gz" -checksum=5978daa806c616f9a1eea231bb613f0bc1037d7d2435ee5ca6b14fe88a2caa8c +checksum=61df71f368bbf21f865645534f63840fd48dbd2996d6d0188aa26d3b647fede0 build_options="phonon poppler" desc_option_phonon="build with phonon support" @@ -24,3 +24,7 @@ build_options_default="phonon poppler" if [ -n "$CROSS_BUILD" ]; then hostmakedepends+=" ${makedepends}" fi + +case "$XBPS_TARGET_MACHINE" in + aarch64*) configure_args+=" NO_CRASH_HANDLER=true" ;; +esac