diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-08-16 19:10:36 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-08-16 07:10:36 -0400 |
commit | 8a74e9af96b89ef29b33a19939c11b0312ced690 (patch) | |
tree | d2879931028a729e0ddebeb0c919e15e48854030 /src | |
parent | c8f2aa60d92b12b82e93ef96f39dda830f24cec8 (diff) | |
download | cryptography-8a74e9af96b89ef29b33a19939c11b0312ced690.tar.gz cryptography-8a74e9af96b89ef29b33a19939c11b0312ced690.tar.bz2 cryptography-8a74e9af96b89ef29b33a19939c11b0312ced690.zip |
OPENSSL_no_config is a macro in 1.1.0 (#3091)
Diffstat (limited to 'src')
-rw-r--r-- | src/_cffi_src/openssl/conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/_cffi_src/openssl/conf.py b/src/_cffi_src/openssl/conf.py index ad67cced..ad21476a 100644 --- a/src/_cffi_src/openssl/conf.py +++ b/src/_cffi_src/openssl/conf.py @@ -13,10 +13,11 @@ TYPES = """ FUNCTIONS = """ void OPENSSL_config(const char *); -void OPENSSL_no_config(void); """ MACROS = """ +/* This is a macro in 1.1.0 */ +void OPENSSL_no_config(void); """ CUSTOMIZATIONS = """ |