Attempt to unbreak on ARM architectures by assuming they are little-endian.

This commit is contained in:
Alexey Dokuchaev 2018-03-22 05:51:58 +00:00
parent 5a2a5d32b9
commit 1eb4bddc4c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=465258
2 changed files with 1 additions and 4 deletions

View file

@ -14,9 +14,6 @@ COMMENT= Utility for capturing audio streams from programs with OSS output
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
NOT_FOR_ARCHS= aarch64 armv6 armv7
NOT_FOR_ARCHS_REASON= fails to build: error: Cannot determine endian-ness of processor
BUILD_DEPENDS= sox:audio/sox
RUN_DEPENDS= sox:audio/sox

View file

@ -31,7 +31,7 @@
case "$target_cpu" in
- alpha* | i?86 )
+ alpha* | i?86 | ia64* | amd64* )
+ alpha* | i?86 | ia64* | amd64* | aarch64 | arm*)
ac_cv_cpu_endian_ness="little"
;;