aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libpq/unix/python.patch
blob: 7d8f58d4af1970de96f0346dd6290573836065e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
diff --git a/configure.ac b/configure.ac
index 7f97248992..33b6c84fc4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -891,7 +891,9 @@ AC_SUBST(with_perl)
 # Optionally build Python modules (PL/Python)
 #
 AC_MSG_CHECKING([whether to build Python modules])
-PGAC_ARG_BOOL(with, python, no, [build Python modules (PL/Python)])
+PGAC_ARG_OPTARG(with, python, [PYTHON_VERSION], [build Python modules (PL/Python)],
+                [],
+                [python_version=$withval])
 AC_MSG_RESULT([$with_python])
 AC_SUBST(with_python)
 
@@ -1214,7 +1216,18 @@ fi
 
 if test "$with_python" = yes; then
   PGAC_PATH_PYTHON
-  PGAC_CHECK_PYTHON_EMBED_SETUP
+  python_majorversion=3
+  PKG_CHECK_MODULES(PYTHON_EMBED, python-${python_version}-embed)
+  python_includespec="${PYTHON_EMBED_CFLAGS}"
+  python_libdir=[$(echo " ${PYTHON_EMBED_LIBS}" | sed -e 's/\( -L[^ ]*\).*/\1/' -e 's/^.* -L//')]
+  python_libspec="${PYTHON_EMBED_LIBS}"
+  python_additional_libs=""
+  AC_SUBST(python_majorversion)
+  AC_SUBST(python_version)
+  AC_SUBST(python_includespec)
+  AC_SUBST(python_libdir)
+  AC_SUBST(python_libspec)
+  AC_SUBST(python_additional_libs)
 fi
 
 if test x"$cross_compiling" = x"yes" && test -z "$with_system_tzdata"; then