8000 Bump macOS build recommendations to OpenSSL v3.0 by erlend-aasland · Pull Request #1112 · python/devguide · GitHub
[go: up one dir, main page]

Skip to content

Bump macOS build recommendations to OpenSSL v3.0 #1112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
gh-1111: Bump macOS build recommendations to OpenSSL v3.0
  • Loading branch information
erlend-aasland committed Jun 8, 2023
commit e6fd8be69a3cbae3356d7a079211cff79a85622f
4 changes: 2 additions & 2 deletions getting-started/setup-building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -417,14 +417,14 @@ for the header and library files to your ``configure`` command.

For example, with **Homebrew**, install the dependencies::

$ brew install pkg-config openssl@1.1 xz gdbm tcl-tk
$ brew install pkg-config openssl@3.0 xz gdbm tcl-tk

Then, for Python 3.11 and newer, run ``configure``::

$ GDBM_CFLAGS="-I$(brew --prefix gdbm)/include" \
GDBM_LIBS="-L$(brew --prefix gdbm)/lib -lgdbm" \
./configure --with-pydebug \
--with-openssl="$(brew --prefix openssl@1.1)"
--with-openssl="$(brew --prefix openssl@3.0)"

Or, for Python 3.7 through 3.10::

Expand Down
0