[pypy-commit] pypy default: Merged in missing_openssl_include (pull request #332)

fijal noreply at buildbot.pypy.org
Mon Sep 7 11:54:17 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r79499:3d4dfa75634c
Date: 2015-09-07 11:54 +0200
http://bitbucket.org/pypy/pypy/changeset/3d4dfa75634c/

Log:	Merged in missing_openssl_include (pull request #332)

	Missing OpenSSL header.

diff --git a/rpython/rlib/ropenssl.py b/rpython/rlib/ropenssl.py
--- a/rpython/rlib/ropenssl.py
+++ b/rpython/rlib/ropenssl.py
@@ -29,7 +29,8 @@
     'openssl/rand.h',
     'openssl/evp.h',
     'openssl/ossl_typ.h',
-    'openssl/x509v3.h']
+    'openssl/x509v3.h',
+    'openssl/comp.h']
 
 eci = ExternalCompilationInfo(
     libraries = libraries,


More information about the pypy-commit mailing list