forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge dashpay#810: [Depends] Fix archs (fixes s390x and ppc64el build…
…s on snap) 2fdc74b update qt.mk with arch fix (see previous commit) (cevap) b22610c add QT patch for s390x, mips, powerpc and sparc (cevap) 1a756e0 Fix qt for m68k and alpha (cevap) f52a72e Fix openssl for m68k and alpha (cevap) e12b449 Fix boost for m68k and alpha (cevap) 32f2684 Fix openssl for sparc64 (cevap) 5de083f Fix qt for sparc64 (cevap) f1e537e Fix boost for sparc64 (cevap) 188d0ea Fix qt for powerpc/ppc64el (cevap) c590d07 Fix openssl for powerpc/ppc64el (cevap) def4374 Fix qt for s390x (cevap) ed61951 Fix openssl for s390x (cevap) d1489c8 Fix boost for s390x (cevap) Tree-SHA512: 90add202dde7c3252bdc92974936fa50daf66a34e29cfbbee3222771ea89d061466e39300d3449b5e8b43fd1d8b8828b694ad83624c959c7cc331463a7aef7f8
- Loading branch information
Showing
4 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
depends/patches/qt/fix_s390x_powerpc_mips_mipsel_architectures.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
diff --git a/qtbase/src/3rdparty/double-conversion/include/double-conversion/utils.h b/qtbase/src/3rdparty/double-conversion/include/double-conversion/utils.h | ||
index 93729fae..398988c8 100644 | ||
--- a/qtbase/src/3rdparty/double-conversion/include/double-conversion/utils.h | ||
+++ b/qtbase/src/3rdparty/double-conversion/include/double-conversion/utils.h | ||
@@ -60,9 +60,9 @@ | ||
#if defined(_M_X64) || defined(__x86_64__) || \ | ||
defined(__ARMEL__) || defined(__avr32__) || _M_ARM_FP || \ | ||
defined(__hppa__) || defined(__ia64__) || \ | ||
- defined(__mips__) || \ | ||
- defined(__powerpc__) || defined(__ppc__) || defined(__ppc64__) || \ | ||
- defined(__sparc__) || defined(__sparc) || defined(__s390__) || \ | ||
+ defined(__mips__) || defined(__mipsel__) || defined(__i386__) || \ | ||
+ defined(__powerpc__) || defined(__ppc__) || defined(__ppc64__) || defined(__powerpc64__) || defined(__powerpc64el__) || defined(__ppc64el__) || \ | ||
+ defined(__sparc__) || defined(__sparc) || defined(__s390__) || defined(__s390x__) || \ | ||
defined(__SH4__) || defined(__alpha__) || \ | ||
defined(_MIPS_ARCH_MIPS32R2) || \ | ||
defined(__AARCH64EL__) || defined(__aarch64__) || \ |