OSDN Git Service

configure: add --embed for python3-config (python 3.8)
authorJaroslav Kysela <perex@perex.cz>
Wed, 4 Mar 2020 10:27:12 +0000 (11:27 +0100)
committerJaroslav Kysela <perex@perex.cz>
Wed, 4 Mar 2020 10:28:53 +0000 (11:28 +0100)
Fixes: https://github.com/alsa-project/alsa-lib/issues/33

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
configure.ac

index 0f9fb01..4b5ab66 100644 (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