mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
bpo-45350: Rerun autoreconf with the pkg-config macros (GH-28708)
This commit is contained in:
parent
60b9e040c9
commit
a25dcaefb7
3 changed files with 484 additions and 5 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue