mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
modules: smixer_python - add support for python3
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
b6c760868f
commit
345843fc24
3 changed files with 241 additions and 122 deletions
10
gitcompile
10
gitcompile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue