diff options
author | danfe <danfe@FreeBSD.org> | 2015-09-07 19:57:18 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2015-09-07 19:57:18 +0800 |
commit | cbc07b9b46f52e347981152dfcd7e4f787d054a1 (patch) | |
tree | 849b2ac884ee9eae177bc8e91ef52b2a7ce75419 /multimedia | |
parent | e09805bfdf6e9baef7d5620dc6580dc199ab8c57 (diff) | |
download | freebsd-ports-gnome-cbc07b9b46f52e347981152dfcd7e4f787d054a1.tar.gz freebsd-ports-gnome-cbc07b9b46f52e347981152dfcd7e4f787d054a1.tar.zst freebsd-ports-gnome-cbc07b9b46f52e347981152dfcd7e4f787d054a1.zip |
Base GCC 4.2.1 on PowerPC fails with "internal compiler error: in do_SUBST,
at combine.c:502" error, thus request a modern compiler to fix the build.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/mjpegtools/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/multimedia/mjpegtools/Makefile b/multimedia/mjpegtools/Makefile index e0b585d21391..4bd09788e717 100644 --- a/multimedia/mjpegtools/Makefile +++ b/multimedia/mjpegtools/Makefile @@ -44,14 +44,10 @@ SDL_CONFIGURE_OFF= --without-libsdl --without-sdlgfx .include <bsd.port.options.mk> -.if ${ARCH} == "i386" +.if ${ARCH} == i386 || ${ARCH} == powerpc USES+= compiler:c++11-lang .endif -.if ${ARCH} == "powerpc" && ${OSVERSION} > 900000 -BROKEN= Does not build on powerpc-9 -.endif - post-patch: @${REINPLACE_CMD} \ -e 's| \*-\*-linux\*)| *-*-*)|' \ |