Lines Matching +full:- +full:- +full:force +full:- +full:yes
3 set -e
9 if [ $# -ne 0 ]; then
11 while [ -z "$endloop" ]; do
14 bits32=yes
15 echo "Forced 32-bit library build..."
18 modules=yes
22 alisp=yes
26 python2=yes
30 lto="-flto -flto-partition=none"
34 endloop=yes
39 if [ $# -ne 0 -a -z "$bit32" ]; then
41 elif [ -r /etc/asound/library_args ]; then
43 if [ -z "$bit32" ]; then
44 test -r /etc/asound/library64_args && \
51 if [ -z "$bit32" ]; then
52 test -d /usr/lib64 && libdir="/usr/lib64"
53 test -f /lib64/libasound.so.2 && libdir="/lib64"
54 test -d /usr/lib64 && libdir2="/usr/lib64"
56 test -f /lib/libasound.so.2 && libdir="/lib"
58 args="--disable-aload --prefix=$prefix --libdir=$libdir"
59 args="$args --with-plugindir=$libdir2/alsa-lib"
60 args="$args --with-pkgconfdir=$libdir2/pkgconfig"
63 if [ "$modules" = "yes" ]; then
64 args="$args --enable-mixer-modules"
65 args="$args --enable-mixer-pymods"
68 if [ "$alisp" = "yes" ]; then
69 args="$args --enable-alisp"
72 if [ "$python2" = "yes" ]; then
73 args="$args --enable-python2"
77 libtoolize --force --copy --automake
80 automake --foreign --copy --add-missing
83 export CFLAGS="-O2 -Wall -W -Wunused-const-variable=0 -pipe -g $lto"
84 if [ -n "$lto" ]; then
85 export AR="gcc-ar"
86 export RANLIB="gcc-ranlib"
92 if [ -z "$GITCOMPILE_NO_MAKE" ]; then