openimageio: mark BROKEN-powerpc

It fails the same way i386 does. While here, remove the use of
`-latomic' for powerpc, it's not needed anymore since the arch
moved to clang.

OK pascal@ (maintainer)
This commit is contained in:
cwen 2020-04-18 13:53:58 +00:00
parent d168f677d8
commit 359386bcf1

View File

@ -1,6 +1,7 @@
# $OpenBSD: Makefile,v 1.39 2020/03/20 16:44:24 naddy Exp $
# $OpenBSD: Makefile,v 1.40 2020/04/18 13:53:58 cwen Exp $
BROKEN-i386 = clang segfault compiling imagebufalgo_pixelmath.cpp
BROKEN-powerpc = clang segfault compiling imagebufalgo_pixelmath.cpp
COMMENT = library for reading and writing images
@ -61,7 +62,7 @@ CXXFLAGS += -march=i686
WRKDIST = ${WRKDIR}/oiio-Release-$V
# Fix undefined reference to __atomic_*
.if ${MACHINE_ARCH:Mpowerpc} || ${MACHINE_ARCH:Mhppa}
.if ${MACHINE_ARCH:Mhppa}
CONFIGURE_ENV += LDFLAGS="${LDFLAGS} -latomic"
WANTLIB += atomic
.endif