Hello
I have arch installed on my dockstar
When I tried xmms, I obtained this error:
xmms: /usr/lib/xmms/Input/libmpg123.so: undefined symbol: mpg123_synth_1to1_mmx
In fact the PKGBUILD is incorrect, and will try to optimize the build using x86 MMX instructions
Here is a diff for the PKGBUILD :
--- orig/xmms/PKGBUILD 2012-01-15 06:04:46.000000000 +0100
+++ xmms/PKGBUILD 2012-01-16 00:07:52.931889001 +0100
@@ -50,10 +50,10 @@
patch -p1 < ../xmms-1.2.10-fonts.patch
patch -p1 < ../xmms-1.2.11-CVE-2007-0653.0654.patch
- if [ "$CARCH" == "x86_64" ]; then
- SIMDOPT="--disable-simd"
- else
+ if [ "$CARCH" == "i686" ]; then
SIMDOPT="--enable-simd"
+ else
+ SIMDOPT="--disable-simd"
fi
./configure --prefix=/usr --mandir=/usr/share/man $SIMDOPT
make
I have reported the bug in arch bugtracker as well:
https://bugs.archlinux.org/task/27953