Hi ports --
The latest aarch64 bulk build report says that graphics/openimageio
doesn't build. See [0].
This is because -Werror is set. Attached is a patch that disables -Werror.
I can't actually test if this fixes things completely for arm64 (my
RPi3B+ died... any suggestions on what to replace it with?) but -Werror
is the source of the problem reported in the logs, and we should remove
-Werror anyway.
OK?
~Brian
[0]
http://build-failures.rhaalovely.net/aarch64/2019-08-01/graphics/openimageio.log
Index: Makefile
===================================================================
RCS file: /cvs/ports/graphics/openimageio/Makefile,v
retrieving revision 1.35
diff -u -p -r1.35 Makefile
--- Makefile 12 Jul 2019 20:47:04 -0000 1.35
+++ Makefile 6 Aug 2019 21:15:02 -0000
@@ -53,7 +53,8 @@ LIB_DEPENDS = devel/boost \
graphics/libraw
CONFIGURE_ARGS += -DUSE_OPENCV=OFF \
- -DCMAKE_INSTALL_MANDIR="man/man1"
+ -DCMAKE_INSTALL_MANDIR="man/man1" \
+ -DSTOP_ON_WARNING=OFF
CXXFLAGS += -pthread
.if ${MACHINE_ARCH} == "i386"