fix(ci): provide MinGW autotools pkg-config macros

- Install the MSYS pkgconf package for Aria2 source provisioning.\n- Expose MSYS and MinGW aclocal directories before autoreconf.\n- Keep release provisioning aligned with the CI dependency contract.
This commit is contained in:
NimBold
2026-09-06 16:24:26 +03:30
parent 752c86c89b
commit 9ac3dc27a3
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ jobs:
with:
msystem: MINGW64
install: >-
base-devel autoconf automake libtool gettext-devel
base-devel autoconf automake libtool gettext-devel pkgconf
mingw-w64-x86_64-gcc mingw-w64-x86_64-pkgconf
mingw-w64-x86_64-openssl mingw-w64-x86_64-libssh2
mingw-w64-x86_64-c-ares mingw-w64-x86_64-expat
+1 -1
View File
@@ -110,7 +110,7 @@ jobs:
with:
msystem: MINGW64
install: >-
base-devel autoconf automake libtool gettext-devel
base-devel autoconf automake libtool gettext-devel pkgconf
mingw-w64-x86_64-gcc mingw-w64-x86_64-pkgconf
mingw-w64-x86_64-openssl mingw-w64-x86_64-libssh2
mingw-w64-x86_64-c-ares mingw-w64-x86_64-expat
+1
View File
@@ -7,6 +7,7 @@ if command -v cygpath >/dev/null 2>&1; then
source_root="$(cygpath -u "$source_root")"
patch_file="$(cygpath -u "$patch_file")"
export PATH="/mingw64/bin:/usr/bin:$PATH"
export ACLOCAL_PATH="/mingw64/share/aclocal:/usr/share/aclocal${ACLOCAL_PATH:+:$ACLOCAL_PATH}"
export PKG_CONFIG_PATH=/mingw64/lib/pkgconfig
fi
cd "$source_root"