updated mpg123 to 1.17.0

This commit is contained in:
fysx
2014-01-28 00:30:52 +01:00
parent 35f95a0c58
commit 4b6c1b51c9
533 changed files with 40135 additions and 11448 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh
if test -e Makefile; then
make clean
fi
options="$@"
echo "using options: $options"
CFLAGS="-march=i686" ./configure --disable-modules --with-cpu=x86_dither $options &&
cd src/libmpg123 &&
make &&
cp .libs/libmpg123-0.dll ../../ &&
cp .libs/libmpg123-0.dll.def ../../libmpg123-0.def
cd ../../ &&
echo "Now run that lib tool... perhaps you want to strip, too.
Hints:
strip --strip-unneeded libmpg123-0.dll
lib /machine:i386 /def:libmpg123-0.def" ||
echo You got some trouble.