diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2015-11-21 17:25:56 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2015-11-21 17:25:56 +0000 |
commit | 09e628a79ad84ede4ce2efcc2ec5b707ec119240 (patch) | |
tree | befc05f1ed3f40453d99e09d07ced8af4833635d /graphics/freeimage | |
parent | - fix build with custom CNEWS_PORT (diff) |
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.
Notes
Notes:
svn path=/head/; revision=402169
Diffstat (limited to 'graphics/freeimage')
-rw-r--r-- | graphics/freeimage/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/freeimage/Makefile b/graphics/freeimage/Makefile index e4fa4963f4fc..378084f043e3 100644 --- a/graphics/freeimage/Makefile +++ b/graphics/freeimage/Makefile @@ -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 |