modules: smixer_python - add support for python3

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2018-03-27 14:50:36 +02:00
parent b6c760868f
commit 345843fc24
3 changed files with 241 additions and 122 deletions

View file

@ -21,6 +21,10 @@ if [ $# -ne 0 ]; then
alisp=yes
echo "Forced alisp code build..."
shift ;;
python2)
python2=yes
echo "Forced python2 interpreter build..."
shift ;;
*)
endloop=yes
;;
@ -53,13 +57,17 @@ fi
if [ "$modules" = "yes" ]; then
args="$args --enable-mixer-modules"
args="$args --enable-mixer-pymodules"
args="$args --enable-mixer-pymods"
fi
if [ "$alisp" = "yes" ]; then
args="$args --enable-alisp"
fi
if [ "$python2" = "yes" ]; then
args="$args --enable-python2"
fi
touch ltconfig
libtoolize --force --copy --automake
aclocal $ACLOCAL_FLAGS