1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-14 12:26:41 +00:00
termux-packages/packages/boinc/disable-whetneon.patch
Jia Yuan Lo 95d0149704 boinc: update to 7.16.11 (#5795)
* boinc: update to 7.16.11

* boinc: update patches for 7.16.11

* boinc: disable switcher

termux/termux-packages#5668

* boinc: add oobe improvement patches

* boinc: simplify disable-whetneon.patch

termux/termux-packages#5795
The old patch is getting hard to maintain because someone think it is a good
idea to support non-NEON Android devices in 2020.
The new patch simplify things by only disable 32bit ARM host detection so that
whetneon and whetvfp will not be built which can make the client too complex.

Apply this patch and please dont use "-DANDROID" and "--host arm-linux*"

* boinc: fix 32bit compatibility on 64bit Termux

Remove blocking request 32bit executables and fix it instead.
Add patch that unset LD_PRELOAD environment variable before running 32bit
BOINC executables.
This is applicable for 64bit Android devices running BOINC on Termux.
No manual unset from user is needed.

* boinc: simplify disable-whetneon.patch v2
2020-09-13 22:20:12 +05:30

13 lines
732 B
Diff

diff -uNr boinc-client_release-7.16-7.16.11/configure.ac boinc-client_release-7.16-7.16.11.mod/configure.ac
--- boinc-client_release-7.16-7.16.11/configure.ac 2020-08-30 16:04:59.000000000 +0800
+++ boinc-client_release-7.16-7.16.11.mod/configure.ac 2020-09-13 16:36:05.730000000 +0800
@@ -1051,7 +1051,7 @@
AM_CONDITIONAL(OS_WIN32_MINGW, [echo $host_os | grep '^mingw' > /dev/null])
dnl or OS2
AM_CONDITIONAL(OS_OS2, [echo $host_os | grep '^os2' > /dev/null])
-AM_CONDITIONAL(OS_ARM_LINUX, [echo $host_alias | grep '^arm-linux' > /dev/null])
+AM_CONDITIONAL(OS_ARM_LINUX, [echo $host_alias | grep '^arm-linux-skip' > /dev/null])
dnl Whether to build fcgi components
AM_CONDITIONAL(ENABLE_FCGI,[test "${enable_fcgi}" = yes])