diff options
author | dsainty <dsainty@pkgsrc.org> | 2015-04-27 10:26:19 +0000 |
---|---|---|
committer | dsainty <dsainty@pkgsrc.org> | 2015-04-27 10:26:19 +0000 |
commit | 70a24b8da4d1158d0ae4d5035456399a91eb8216 (patch) | |
tree | 2328d35fe6ecbd88625eba8011b6eba29f67c4d9 /graphics | |
parent | 3bd9ca61233f758f4cd3b696e11e87b7f82262f8 (diff) | |
download | pkgsrc-70a24b8da4d1158d0ae4d5035456399a91eb8216.tar.gz |
Bump GCC_REQD to 4.5.2 for internal compiler error.
display/nr-filter-slot.cpp: In constructor 'Inkscape::Filters::FilterSlot::FilterSlot(Inkscape::DrawingItem*, Inkscape::DrawingContext*, Inkscape::DrawingContext&, const Inkscape::Filters::FilterUnits&)':
display/nr-filter-slot.cpp:38: internal compiler error: in add_phi_arg, at tree-phinodes.c:391
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.4/README.Bugs> for instructions.
make[3]: *** [display/nr-filter-slot.o] Error 1
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45709
ICE is present in 4.3 and 4.4.4. It is meant to be fixed in gcc 4.4.5
but apparently not the "gcc version 4.4.5" that comes with some versions
of Ubuntu, because it's actually gcc 4.4.4 with Ubuntu's custom(ary)
sprinkling of poor judgement.
ICE is fixed in GCC 4.5.2 or any version of 4.6 and on, so that's a safe
minimum requirement.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/inkscape/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile index 0aa88796363..8ee9058af99 100644 --- a/graphics/inkscape/Makefile +++ b/graphics/inkscape/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.116 2015/04/25 14:23:14 tnn Exp $ +# $NetBSD: Makefile,v 1.117 2015/04/27 10:26:19 dsainty Exp $ DISTNAME= inkscape-0.91 PKGREVISION= 3 @@ -20,7 +20,7 @@ DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml EXTRACT_USING= bsdtar -GCC_REQD+= 3.0 +GCC_REQD+= 4.5.2 USE_LANGUAGES= c c++ USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes |