[Lunar-commits] <moonbase> libmad: disabled static libs, fixed OPTS bug ...
Christian Krause
wookietreiber at lunar-linux.org
Thu May 19 23:32:03 CEST 2011
commit 097dd9f57a678197a920b1c5b4a711c3617b1236
Author: Christian Krause <wookietreiber at lunar-linux.org>
Date: Thu May 19 23:32:03 2011 +0200
libmad: disabled static libs, fixed OPTS bug ...
... OPTS did not append before, just overwrite
---
audio/libmad/BUILD | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/audio/libmad/BUILD b/audio/libmad/BUILD
index f8811ed..b0156dd 100644
--- a/audio/libmad/BUILD
+++ b/audio/libmad/BUILD
@@ -1,21 +1,21 @@
(
- OPTS+=" --disable-debugging --enable-accuracy" &&
+ OPTS+=" --disable-debugging --enable-accuracy --disable-static" &&
if [ `arch` == "x86_64" ] ; then
- OPTS="--enable-fpm=64bit"
+ OPTS+=" --enable-fpm=64bit"
else
- OPTS="--enable-fpm=intel"
+ OPTS+=" --enable-fpm=intel"
fi &&
patch_it $SOURCE2 1 &&
- #GCC 4.3 doesn't have -fforce-mem
+ # GCC since 4.3 doesn't have -fforce-mem
sedit 's:-fforce-mem::g' configure.ac &&
libtoolize --force --copy &&
aclocal &&
- touch NEWS &&
+ touch NEWS &&
touch AUTHORS &&
touch ChangeLog &&
automake --add-missing &&
More information about the Lunar-commits
mailing list