diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2015-09-07 19:57:18 +0800 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2015-09-07 19:57:18 +0800 |
commit | 9dd50511986195a2fd80bdacbf507b13fd291bee (patch) | |
tree | 849b2ac884ee9eae177bc8e91ef52b2a7ce75419 /multimedia | |
parent | 877dd33328c7fa2ecdb5df06314692557f881931 (diff) | |
download | freebsd-ports-gnome-9dd50511986195a2fd80bdacbf507b13fd291bee.tar.gz freebsd-ports-gnome-9dd50511986195a2fd80bdacbf507b13fd291bee.tar.zst freebsd-ports-gnome-9dd50511986195a2fd80bdacbf507b13fd291bee.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\*)| *-*-*)|' \ |