chore(main/quick-lint-js): remove unnecessary patch

Upstream fixed the build error for A32 builds. Remove our patch working around
the build failure.

Testing:

    $ ./build-package.sh -a arm quick-lint-js

(I did not try running the installed package. I do not have an A32 Termux
install.)
This commit is contained in:
Matthew "strager" Glazar 2023-03-29 21:37:19 -07:00 committed by Leonid Pliushch
parent aecfeb2d5e
commit 665ae2b8b0
2 changed files with 1 additions and 12 deletions

View File

@ -3,6 +3,7 @@ TERMUX_PKG_DESCRIPTION="Finds bugs in JavaScript programs"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="2.12.0"
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=git+https://github.com/quick-lint/quick-lint-js
TERMUX_PKG_GIT_BRANCH=$TERMUX_PKG_VERSION
TERMUX_PKG_DEPENDS="libc++"

View File

@ -1,12 +0,0 @@
diff -uNr quick-lint-js/src/quick-lint-js/port/have.h quick-lint-js.mod/src/quick-lint-js/port/have.h
--- quick-lint-js/src/quick-lint-js/port/have.h 2022-07-26 10:45:47.584150790 +0800
+++ quick-lint-js.mod/src/quick-lint-js/port/have.h 2022-07-26 10:47:14.734150757 +0800
@@ -285,7 +285,7 @@
#endif
#if !defined(QLJS_HAVE_ARM_NEON)
-#if defined(__ARM_NEON)
+#if defined(__ARM_NEON) && defined(__aarch64__)
#define QLJS_HAVE_ARM_NEON 1
#else
#define QLJS_HAVE_ARM_NEON 0