mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
configure: add --embed for python3-config (python 3.8)
Fixes: https://github.com/alsa-project/alsa-lib/issues/33 Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
c7efaef195
commit
1654f38a29
1 changed files with 4 additions and 1 deletions
|
|
@ -423,7 +423,10 @@ if test "$build_python" = "yes" -a "$build_mixer_pymodules" = "yes"; then
|
|||
pythonlibs0=
|
||||
pythoninc0=
|
||||
if test "$build_python2" != "yes"; then
|
||||
pythonlibs0=$(python3-config --libs)
|
||||
pythonlibs0=$(python3-config --libs --embed 2> /dev/null)
|
||||
if test -z "$pythonlibs0"; then
|
||||
pythonlibs0=$(python3-config --libs)
|
||||
fi
|
||||
pythoninc0=$(python3-config --includes)
|
||||
fi
|
||||
if test -z "$pythonlibs0"; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue