diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-11-27 12:54:50 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-11-27 12:54:50 +0000 |
commit | 44e33c70cbe1b41d6690c95ae496c68df2407a0d (patch) | |
tree | de1263f0a6d4db0828d069946707da41ff13c6b6 | |
parent | 1a425451d2e3058259d8f3134932c4f287632c15 (diff) |
audio/mous: fix build on non-x86
The problem is not present only on i386, but also on other architectures.
-rw-r--r-- | audio/mous/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/mous/Makefile b/audio/mous/Makefile index ee0a11b0d40c..5ee9fbb84ecc 100644 --- a/audio/mous/Makefile +++ b/audio/mous/Makefile @@ -94,7 +94,7 @@ WAVPACK_LIB_DEPENDS= libwavpack.so:audio/wavpack .include <bsd.port.options.mk> -.if ${ARCH} == i386 +.if ${ARCH} != amd64 # error: always_inline function '_mm_load_si128' requires target feature # 'mmx', but would be inlined into function 'AdaptSSE' that is compiled # without support for 'mmx' |