configure.ac: do not enable alisp code by default

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2017-11-27 21:43:22 +01:00
parent fab28ba1b1
commit 32ceab2100
2 changed files with 11 additions and 2 deletions

View file

@ -4,6 +4,7 @@ set -e
bit32=
modules=
alisp=
if [ $# -ne 0 ]; then
endloop=
while [ -z "$endloop" ]; do
@ -16,6 +17,10 @@ if [ $# -ne 0 ]; then
modules=yes
echo "Forced mixer modules build..."
shift ;;
alisp)
alisp=yes
echo "Forced alisp code build..."
shift ;;
*)
endloop=yes
;;
@ -51,6 +56,10 @@ if [ "$modules" = "yes" ]; then
args="$args --enable-mixer-pymodules"
fi
if [ "$alisp" = "yes" ]; then
args="$args --enable-alisp"
fi
touch ltconfig
libtoolize --force --copy --automake
aclocal $ACLOCAL_FLAGS