summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorAlexandru Ardelean <ardeleanalex@gmail.com>2018-09-17 11:53:31 (GMT)
committerChristian Heimes <christian@python.org>2018-09-17 11:53:31 (GMT)
commitb3a271fc0ce3e13e427be8914decfc205a220ca8 (patch)
tree6a64447779f5f7251d9c5d0f8a39949d40002208 /Misc/NEWS.d
parente0e5065daef36dafe10a46eaa8b7800274d73062 (diff)
downloadcpython-b3a271fc0ce3e13e427be8914decfc205a220ca8.zip
cpython-b3a271fc0ce3e13e427be8914decfc205a220ca8.tar.gz
cpython-b3a271fc0ce3e13e427be8914decfc205a220ca8.tar.bz2
bpo-34710: fix SSL module build (GH-9347)
Include ``openssl/dh.h`` header file to fix implicit function declaration of ``DH_free()``. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Build/2018-09-17-13-56-12.bpo-34710.ARqIAK.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2018-09-17-13-56-12.bpo-34710.ARqIAK.rst b/Misc/NEWS.d/next/Build/2018-09-17-13-56-12.bpo-34710.ARqIAK.rst
new file mode 100644
index 0000000..b06289d
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2018-09-17-13-56-12.bpo-34710.ARqIAK.rst
@@ -0,0 +1 @@
+Fixed SSL module build with OpenSSL & pedantic CFLAGS.