Date: Sat, 21 Nov 2015 17:25:56 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402169 - head/graphics/freeimage Message-ID: <201511211725.tALHPuuU007890@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Sat Nov 21 17:25:56 2015 New Revision: 402169 URL: https://svnweb.freebsd.org/changeset/ports/402169 Log: Unbreak the build on PowerPC by using modern compiler (GCC). The problem was the same as fixed recently in r401989 since FreeImage bundles its own copy of OpenEXR. Modified: head/graphics/freeimage/Makefile Modified: head/graphics/freeimage/Makefile ============================================================================== --- head/graphics/freeimage/Makefile Sat Nov 21 17:23:43 2015 (r402168) +++ head/graphics/freeimage/Makefile Sat Nov 21 17:25:56 2015 (r402169) @@ -36,7 +36,7 @@ PLIST_FILES= include/FreeImage.h \ .include <bsd.port.options.mk> -.if ${ARCH} == amd64 +.if ${ARCH} == amd64 || ${ARCH} == powerpc USES+= compiler:c++0x .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511211725.tALHPuuU007890>