QA Notice: Package has poor programming practices which may compile but will almost certainly crash on 64bit architectures
On a gentoo system you may get the error
QA Notice: Package has poor programming practices which may compile but will almost certainly crash on 64bit architectures
during emerge. This is usually a wanted behaviour since one does not want to have broken packages installed, but sometimes you may want to decide yourself or you need the program and can live with crashes that may occur under certain circumstances. As far as I know portage does not give us an easy method to override this.
You may change this behaviour by changing line 477 in /usr/lib/portage/bin/misc-functions.sh to i.e.
if [[ ${abort} == “disabled” ]] ; then
After emerging the brocken package you usually want to change the line back to
if [[ ${abort} == “yes” ]] ; then
to prevent having broken packages on your system without knowing about it.
Hoping this information is of some help.
Jürgen