svn commit: r402169 - head/graphics/freeimage

Alexey Dokuchaev danfe at FreeBSD.org
Sat Nov 21 17:25:57 UTC 2015


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
 


More information about the svn-ports-all mailing list