package: ace severity: important version: 6.0.3-2 (6.0.3-3 is also affected)
unfortunately it seems that the internal compiler error mentioned in bug 644826 hits armhf (a port which afaict was in it's infancy at the time I filed the original bug report) as well as armel. Sorry I didn't catch this and provide an updated patch before you uploaded it. A patch which widens the scope of the workaround to all arm ports is attatched.
P.S ace 6.0.3-3 failed on the armel buildd with what appears to be a doxygen error. I do not know what is behind that issue (it's not one i've ever seen in my tests here) and if it was a fluke or not.
diff -ur ace-6.0.3/debian/control ace-6.0.3.new/debian/control --- ace-6.0.3/debian/control 2011-12-28 12:22:09.000000000 +0000 +++ ace-6.0.3.new/debian/control 2011-12-29 01:26:24.000000000 +0000 @@ -4,7 +4,7 @@ Maintainer: Debian ACE+TAO maintainers <pkg-ace-de...@lists.alioth.debian.org> Uploaders: Thomas Girard <thomas.g.gir...@free.fr>, Pau Garcia i Quiles <pgqui...@elpauer.org>, Marek Brudka <mbru...@aster.pl> DM-Upload-Allowed: yes -Build-Depends: debhelper (>= 8.9.0), libssl-dev (>= 0.9.7d), libxt-dev (>= 4.3.0), libfltk1.1-dev (>= 1.1.4), libqt4-dev (>= 4.4~rc1-4), tk-dev (>= 8.5), libfox-1.6-dev, zlib1g-dev, libzzip-dev, liblzo2-dev, docbook-to-man, bzip2, libbz2-dev, doxygen, graphviz, g++-4.4 [armel] +Build-Depends: debhelper (>= 8.9.0), libssl-dev (>= 0.9.7d), libxt-dev (>= 4.3.0), libfltk1.1-dev (>= 1.1.4), libqt4-dev (>= 4.4~rc1-4), tk-dev (>= 8.5), libfox-1.6-dev, zlib1g-dev, libzzip-dev, liblzo2-dev, docbook-to-man, bzip2, libbz2-dev, doxygen, graphviz, g++-4.4 [arm armel armhf] Standards-Version: 3.9.2 Vcs-Git: git://anonscm.debian.org/pkg-ace/pkg-ace.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ace/pkg-ace.git;a=summary diff -ur ace-6.0.3/debian/rules ace-6.0.3.new/debian/rules --- ace-6.0.3/debian/rules 2011-12-27 15:48:04.000000000 +0000 +++ ace-6.0.3.new/debian/rules 2011-12-29 01:27:27.000000000 +0000 @@ -6,9 +6,9 @@ # Copyright (C) 2004 Raphael Bossek <boss...@debian.org> # Copyright © 2005-2011 Thomas Girard <thomas.g.gir...@free.fr> -DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB_BUILD_ARCH_CPU := $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) -ifeq ($(DEB_BUILD_ARCH),armel) +ifeq ($(DEB_BUILD_ARCH_CPU),arm) FIXUP := CXX=g++-4.4 endif