mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-11 19:49:02 +08:00
2f56fdad4b
* [libpq] Install msys2 autoconf-archive * Install msys2 zic tool * Fix zstd patching * Always build as if cross compiling * Enable feature client for non-windows * Cleanup (WIP) * Cleanup (WIP) * Update portfile.cmake * WIP * WIP * WIP * WIP * [libxslt] Fix pc files * WIP * WIP: Test libpq[all] * WIP * Update to 15.3 * Move patches * Revert "WIP: Test libpq[all]" * Fix install * Skip import libs for plugins * Full CI
26 lines
824 B
Diff
26 lines
824 B
Diff
diff --git a/configure.ac b/configure.ac
|
|
index a35395e..3c1b3e2 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -1176,7 +1176,19 @@ fi
|
|
|
|
if test "$with_python" = yes; then
|
|
PGAC_PATH_PYTHON
|
|
- PGAC_CHECK_PYTHON_EMBED_SETUP
|
|
+ python_majorversion=3
|
|
+ python_version=3.10
|
|
+ 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
|