diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2022-01-13 13:07:48 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2022-01-13 13:08:46 +0000 |
commit | 5bd3f9f51c8e382c1a2a4fdd8557763e68c78e85 (patch) | |
tree | 178d549f074f9399fd1f98a79c2eaa3b074e6105 | |
parent | 098e13fd945c9671a8324e659376c164c02b019a (diff) | |
download | ports-5bd3f9f51c8e382c1a2a4fdd8557763e68c78e85.tar.gz ports-5bd3f9f51c8e382c1a2a4fdd8557763e68c78e85.zip |
audio/wavplay: allow on aarch64
Confirmed to work correctly;
Also simplify ONLY_FOR_ARCHS_REASON as the problems may not only
be related to endianess.
PR: 261061
Submitted by: ronald-lists@klop.ws
-rw-r--r-- | audio/wavplay/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/wavplay/Makefile b/audio/wavplay/Makefile index d16999356e4d..a0adc47cb5bd 100644 --- a/audio/wavplay/Makefile +++ b/audio/wavplay/Makefile @@ -12,8 +12,8 @@ COMMENT= Wav player and recorder LICENSE= GPLv2 # only LICENSE_FILE= ${WRKSRC}/COPYING -ONLY_FOR_ARCHS= amd64 armv6 armv7 i386 -ONLY_FOR_ARCHS_REASON= does not play sound correctly due to endian issues +ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 +ONLY_FOR_ARCHS_REASON= does not play sound correctly CFLAGS+= -D_WANT_SEMUN |