> http://build-failures.rhaalovely.net//powerpc/2019-02-04/multimedia/mlt,,-main.log
sparc64 is not impacted as Qt5 is marked BROKEN there, but it's a ports-gcc-4.9 issue. Once -std=c++11 provided, it builds on macppc [1]. 'make test' returns one failure, as seen on amd64. I didn't try building x11/kde-applications/kdenlive, it's main consumer, as i'm trying to focus on what is currently known as broken. Any comment? Charlène. [1] http://ix.io/1D3d Index: Makefile =================================================================== RCS file: /cvs/ports/multimedia/mlt/Makefile,v retrieving revision 1.19 diff -u -p -u -p -r1.19 Makefile --- Makefile 8 Mar 2019 20:00:50 -0000 1.19 +++ Makefile 9 Mar 2019 23:39:54 -0000 @@ -6,8 +6,8 @@ VERSION = 6.12.0 DISTNAME = mlt-${VERSION} PKGNAME-main = ${DISTNAME} PKGNAME-gpl2 = mlt-gpl2-${VERSION} -REVISION-gpl2 = 0 -REVISION-main = 0 +REVISION-gpl2 = 1 +REVISION-main = 1 # XXX versions should be kept in sync together SHARED_LIBS = mlt 3.0 @@ -87,3 +87,9 @@ do-test: ${ALL_TEST_FLAGS} clean all check .include <bsd.port.mk> + +# fix error: #error "Qt requires C++11 support" +# XXX this should be retried once moving to ports-gcc>=8 +.if ${CHOSEN_COMPILER} == "ports-gcc" +MAKE_ENV += CXXFLAGS="${CXXFLAGS} -std=c++11" +.endif