From 2284eea98847bd42d3ddf7dead504baf3d544d98 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 30 Aug 2018 09:40:46 -0400 Subject: Fixes #4426 -- use modern idiom in our bindings docs (#4428) --- docs/development/c-bindings.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/development') diff --git a/docs/development/c-bindings.rst b/docs/development/c-bindings.rst index 8a9bb6de..1b58dab6 100644 --- a/docs/development/c-bindings.rst +++ b/docs/development/c-bindings.rst @@ -191,7 +191,7 @@ version, and it's impractical to create ``#ifdef`` statements for each one. In that case, it may make sense to either check for a particular version. For example, to check for OpenSSL 1.1.0 or newer:: - #if OPENSSL_VERSION_NUMBER >= 0x10100000L + #if CRYPTOGRAPHY_OPENSSL_110_OR_GREATER Sometimes, the version of a library on a particular platform will have features that you thought it wouldn't, based on its version. -- cgit v1.2.3