mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
configure.ac: do not enable alisp code by default
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
fab28ba1b1
commit
32ceab2100
2 changed files with 11 additions and 2 deletions
|
|
@ -394,8 +394,8 @@ AC_ARG_ENABLE(topology,
|
||||||
AS_HELP_STRING([--disable-topology], [disable the DSP topology component]),
|
AS_HELP_STRING([--disable-topology], [disable the DSP topology component]),
|
||||||
[build_topology="$enableval"], [build_topology="yes"])
|
[build_topology="$enableval"], [build_topology="yes"])
|
||||||
AC_ARG_ENABLE(alisp,
|
AC_ARG_ENABLE(alisp,
|
||||||
AS_HELP_STRING([--disable-alisp], [disable the alisp component]),
|
AS_HELP_STRING([--enable-alisp], [enable the alisp component]),
|
||||||
[build_alisp="$enableval"], [build_alisp="yes"])
|
[build_alisp="$enableval"], [build_alisp="no"])
|
||||||
test "$softfloat" = "yes" && build_alisp="no"
|
test "$softfloat" = "yes" && build_alisp="no"
|
||||||
AC_ARG_ENABLE(old-symbols,
|
AC_ARG_ENABLE(old-symbols,
|
||||||
AS_HELP_STRING([--disable-old-symbols], [disable old obsoleted symbols]),
|
AS_HELP_STRING([--disable-old-symbols], [disable old obsoleted symbols]),
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ set -e
|
||||||
|
|
||||||
bit32=
|
bit32=
|
||||||
modules=
|
modules=
|
||||||
|
alisp=
|
||||||
if [ $# -ne 0 ]; then
|
if [ $# -ne 0 ]; then
|
||||||
endloop=
|
endloop=
|
||||||
while [ -z "$endloop" ]; do
|
while [ -z "$endloop" ]; do
|
||||||
|
|
@ -16,6 +17,10 @@ if [ $# -ne 0 ]; then
|
||||||
modules=yes
|
modules=yes
|
||||||
echo "Forced mixer modules build..."
|
echo "Forced mixer modules build..."
|
||||||
shift ;;
|
shift ;;
|
||||||
|
alisp)
|
||||||
|
alisp=yes
|
||||||
|
echo "Forced alisp code build..."
|
||||||
|
shift ;;
|
||||||
*)
|
*)
|
||||||
endloop=yes
|
endloop=yes
|
||||||
;;
|
;;
|
||||||
|
|
@ -51,6 +56,10 @@ if [ "$modules" = "yes" ]; then
|
||||||
args="$args --enable-mixer-pymodules"
|
args="$args --enable-mixer-pymodules"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$alisp" = "yes" ]; then
|
||||||
|
args="$args --enable-alisp"
|
||||||
|
fi
|
||||||
|
|
||||||
touch ltconfig
|
touch ltconfig
|
||||||
libtoolize --force --copy --automake
|
libtoolize --force --copy --automake
|
||||||
aclocal $ACLOCAL_FLAGS
|
aclocal $ACLOCAL_FLAGS
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue