Skip to content

Commit

Permalink
fixup! fix OpenSSL version 3.4.0 dependencies: assume that -pre versi…
Browse files Browse the repository at this point in the history
…on has new CMP features
  • Loading branch information
DDvO committed Dec 16, 2024
1 parent a15241d commit df9f724
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/genericCMPClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ extern "C" {

# include <openssl/opensslv.h>

#define OPENSSL_3_2_FEATURES (OPENSSL_VERSION_NUMBER > 0x30200000L || defined(USE_LIBCMP))
#define OPENSSL_3_3_FEATURES (OPENSSL_VERSION_NUMBER > 0x30300000L || defined(USE_LIBCMP))
#define OPENSSL_3_2_FEATURES (OPENSSL_VERSION_NUMBER >= 0x30200000L || defined(USE_LIBCMP))
#define OPENSSL_3_3_FEATURES (OPENSSL_VERSION_NUMBER >= 0x30300000L || defined(USE_LIBCMP))
#define OPENSSL_3_4_FEATURES (OPENSSL_VERSION_NUMBER >= 0x30400000L || defined(USE_LIBCMP))

# if OPENSSL_VERSION_NUMBER < 0x30000000L || defined(USE_LIBCMP)
Expand Down

0 comments on commit df9f724

Please sign in to comment.