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:
Jaroslav Kysela 2020-03-04 11:27:12 +01:00
parent c7efaef195
commit 1654f38a29

View file

@ -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