Home | Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo!
Not eligible to see or edit group visibility for this bug.
View Bug Activity | Format For Printing | XML | Clone This Bug
windowmaker-0.92 fails with some assembler/mmx related error that can be seen in bug #97872. This one-liner fixes the problem by disabling MMX on amd64: --- windowmaker-0.92.0.ebuild 2005-07-05 08:46:33.000000000 +0900 +++ windowmaker-0.92.0.ebuild 2005-07-05 15:13:06.000000000 +0900 @@ -104,6 +104,10 @@ fi; done; + # amd64 and mmx don't play nice together (yet) + use amd64 && sed -i -e 's!.*ASM_X86.*!!' "${S}/src/config.h" + + cd ${S} emake -j1 || die "windowmaker: make has failed"
Might as well change it to delete the lines, as that's what I actually meant when I first wrote this (I'm not a sed guru) --- windowmaker-0.92.0.ebuild 2005-07-05 08:46:33.000000000 +0900 +++ windowmaker-0.92.0.ebuild 2005-07-05 15:13:06.000000000 +0900 @@ -104,6 +104,10 @@ fi; done; + # amd64 and mmx don't play nice together (yet) + use amd64 && sed -i -e '/ASM_X86/ d' "${S}/src/config.h" + + cd ${S} emake -j1 || die "windowmaker: make has failed
fixes in portage -- thanks for the patch!