From 4427dfe6fa0e054c3204fb5f9ad5298d9b0c5be0 Mon Sep 17 00:00:00 2001 From: izumiberat Date: Thu, 9 Jun 2022 22:27:28 +0200 Subject: [PATCH 1/3] Updating brew install command to avoid warning I am using Mac OS Catalina 10.15.7. To avoid getting the following warning : $ configure: WARNING: pkg-config is missing. Some dependencies may not be detected correctly. $ brew install pkg-config needs to be run. --- setup.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.rst b/setup.rst index 385429a63b..a775f30ec2 100644 --- a/setup.rst +++ b/setup.rst @@ -385,7 +385,7 @@ for the header and library files to your ``configure`` command. For example, with **Homebrew**:: - $ brew install openssl xz gdbm + $ brew install pkg-config openssl xz gdbm and ``configure`` Python versions >= 3.7:: From 0c8cea46a891db644361b7897360f7b13a703f7a Mon Sep 17 00:00:00 2001 From: izumiberat Date: Thu, 9 Jun 2022 23:25:32 +0200 Subject: [PATCH 2/3] Allowing build of additional modules I was getting the following message: $ The necessary bits to build these optional modules were not found: _hashlib _ssl Updating the command line with: $ brew install openssl@1.1 resolved the issue. --- setup.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.rst b/setup.rst index a775f30ec2..dcdb6a22c6 100644 --- a/setup.rst +++ b/setup.rst @@ -385,7 +385,7 @@ for the header and library files to your ``configure`` command. For example, with **Homebrew**:: - $ brew install pkg-config openssl xz gdbm + $ brew install pkg-config openssl@1.1 xz gdbm and ``configure`` Python versions >= 3.7:: From a8ec09c8705fb0278efbdb2bc6769e6062256682 Mon Sep 17 00:00:00 2001 From: izumiberat Date: Fri, 10 Jun 2022 11:08:45 +0200 Subject: [PATCH 3/3] making this PR only about removing warning --- setup.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.rst b/setup.rst index dcdb6a22c6..a775f30ec2 100644 --- a/setup.rst +++ b/setup.rst @@ -385,7 +385,7 @@ for the header and library files to your ``configure`` command. For example, with **Homebrew**:: - $ brew install pkg-config openssl@1.1 xz gdbm + $ brew install pkg-config openssl xz gdbm and ``configure`` Python versions >= 3.7::