bpo-45350: Rerun autoreconf with the pkg-config macros (GH-28708)

This commit is contained in:
Pablo Galindo Salgado 2021-10-04 00:46:52 +01:00 committed by GitHub
parent 60b9e040c9
commit a25dcaefb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 484 additions and 5 deletions

View file

@ -85,7 +85,9 @@ jobs:
- name: Check limited ABI symbols
run: make check-limited-abi
- name: Check Autoconf version 2.69
run: grep "Generated by GNU Autoconf 2.69" configure
run: |
grep "Generated by GNU Autoconf 2.69" configure
grep "PKG_PROG_PKG_CONFIG" aclocal.m4
build_win32:
name: 'Windows (x86)'
@ -126,8 +128,12 @@ jobs:
PYTHONSTRICTEXTENSIONBUILD: 1
steps:
- uses: actions/checkout@v2
- name: Prepare homebrew environment variables
run: |
echo "LDFLAGS=-L$(brew --prefix tcl-tk)/lib" >> $GITHUB_ENV
echo "PKG_CONFIG_PATH=$(brew --prefix openssl@1.1)/lib/pkgconfig:$(brew --prefix tcl-tk)/lib/pkgconfig" >> $GITHUB_ENV
- name: Configure CPython
run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev
run: ./configure --with-pydebug --prefix=/opt/python-dev
- name: Build CPython
run: make -j4
- name: Display build info