1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

audio/a2jmidid: disable lto on powerpc64 to fix runtime and on riscv64 to fix build

This commit is contained in:
Piotr Kubaj 2022-02-22 02:20:18 +00:00
parent d66021047c
commit b1c548e8c3

View File

@ -2,6 +2,7 @@
PORTNAME= a2jmidid
PORTVERSION= 9
PORTREVISION= 1
CATEGORIES= audio
MAINTAINER= hselasky@FreeBSD.org
@ -27,4 +28,10 @@ DBUS_MESON_OFF= "-Ddisable-dbus=true"
DEBUG_CFLAGS= "-DDEBUG"
.include <bsd.port.options.mk>
.if ${ARCH} == powerpc64 || ${ARCH} == riscv64
MESON_ARGS+= -Db_lto=false
.endif
.include <bsd.port.mk>