From a54f2b66f5ade5520aa8cf4fc859b937d3e3130d Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Wed, 27 Mar 2019 16:01:38 +0100 Subject: [PATCH] Fixed flags+version number with new wolfSSL --- src/wolfcrypt/__init__.py | 2 +- src/wolfcrypt/_build_wolfssl.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/wolfcrypt/__init__.py b/src/wolfcrypt/__init__.py index 6aea9e4..a1aa3c3 100644 --- a/src/wolfcrypt/__init__.py +++ b/src/wolfcrypt/__init__.py @@ -24,7 +24,7 @@ __uri__ = "https://github.com/wolfssl/wolfcrypt-py" # When bumping the C library version, reset the POST count to 0 -__wolfssl_version__ = "v4.0.0" +__wolfssl_version__ = "v4.0.0-stable" # We're using implicit post releases [PEP 440] to bump package version # while maintaining the C library version intact for better reference. diff --git a/src/wolfcrypt/_build_wolfssl.py b/src/wolfcrypt/_build_wolfssl.py index 94447f8..c37a0cc 100644 --- a/src/wolfcrypt/_build_wolfssl.py +++ b/src/wolfcrypt/_build_wolfssl.py @@ -144,8 +144,6 @@ def make_flags(prefix): flags.append("--disable-dh") # disabling other configs enabled by default - flags.append("--disable-filesystem") - flags.append("--disable-hashdrbg") flags.append("--disable-oldtls") flags.append("--disable-oldnames") flags.append("--disable-extended-master")