Skip to content
Snippets Groups Projects
Commit 265c4c3d authored by Piotr Kubaj's avatar Piotr Kubaj
Browse files

multimedia/libdv: fix build on !x86

Disable asm on everything but amd64 / i386:
libdv/meson.build:62:2: ERROR: Problem encountered: Assembly optimizations were requested, but are not available with this architecture/compiler.
parent 9c5ef725
No related branches found
No related tags found
No related merge requests found
......@@ -26,4 +26,10 @@ LDFLAGS_i386= -Wl,-znotext
MESON_ARGS= -Dtools=enabled
.include <bsd.port.options.mk>
.if ${ARCH} != amd64 && ${ARCH} != i386
MESON_ARGS+= -Dasm=disabled
.endif
.include <bsd.port.mk>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment