Skip to content

Commit

Permalink
Merge pull request #257 from murraystevenson/pythonOpenSSL11
Browse files Browse the repository at this point in the history
Python : Fix linking against openssl11
  • Loading branch information
johnhaddon authored Feb 19, 2024
2 parents dd7afc6 + d13c745 commit 97414d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Changes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
8.0.0 alpha x (relative to 8.0.0 alpha 7)
-------------


- Python : Fixed python binary unnecessarily linking against libssl in gcc9 builds.

8.0.0 alpha 7 (relative to 8.0.0 alpha 6)
-------------
Expand Down
14 changes: 1 addition & 13 deletions Python/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

"commands" : [

"{environmentCommand} ./configure --prefix={buildDir} {libraryType} --enable-unicode=ucs4 --with-ensurepip=install --with-system-ffi",
"./configure --prefix={buildDir} {libraryType} --enable-unicode=ucs4 --with-ensurepip=install --with-system-ffi",
"make -j {jobs}",
"make install",

Expand All @@ -50,7 +50,6 @@
"variables" : {

"libraryType" : "--enable-shared",
"environmentCommand" : "",

},

Expand All @@ -60,17 +59,6 @@

],

"platform:linux" : {

"variables" : {

# Needed to build Python with OpenSSL 1.1.1 support on Centos 7
"environmentCommand" : "CPPFLAGS=\"$(pkg-config --cflags openssl11)\" LDFLAGS=\"$(pkg-config --libs openssl11)\""

}

},

"platform:macos" : {


Expand Down

0 comments on commit 97414d1

Please sign in to comment.