24 lines
912 B
Diff
24 lines
912 B
Diff
From 49c4354cf120b833700f473cb18537f6d3973eb3 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9?=
|
|
<alexey.pawlow@gmail.com>
|
|
Date: Thu, 17 Jun 2021 18:52:29 +0530
|
|
Subject: [PATCH 044/N] pkg config windows must link ext with python lib
|
|
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 87e8fc6..6843218 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -6284,7 +6284,7 @@ AC_MSG_RESULT([$LDVERSION])
|
|
|
|
# On Android and Cygwin the shared libraries must be linked with libpython.
|
|
AC_SUBST([LIBPYTHON])
|
|
-if test "$PY_ENABLE_SHARED" = "1" && ( test -n "$ANDROID_API_LEVEL" || test "$MACHDEP" = "cygwin"); then
|
|
+if test "$PY_ENABLE_SHARED" = "1" && ( test -n "$ANDROID_API_LEVEL" || test "$MACHDEP" = "cygwin" || test "$MACHDEP" = "win32"); then
|
|
LIBPYTHON="-lpython${VERSION}${ABIFLAGS}"
|
|
else
|
|
LIBPYTHON=''
|