Skip to content

Commit

Permalink
VncClient: Add version check to allow building against OpenSSL versio…
Browse files Browse the repository at this point in the history
…ns older than 1.1.1a
  • Loading branch information
basyskom-mleutelt committed Jun 11, 2024
1 parent 379cf6a commit 27395ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/VncClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ Q_LOGGING_CATEGORY( logFb, "vnceglfs.fb", QtCriticalMsg )
// export QT_LOGGING_RULES="vnceglfs.rfb.debug=true"

#include <openssl/evp.h>
#include <openssl/evperr.h>
#if ( OPENSSL_VERSION_NUMBER >= 0x1010100aL )
#include <openssl/evperr.h>
#endif

#if ( OPENSSL_VERSION_NUMBER >= 0x30000000L )
#define VNC_SSL_PROVIDER
Expand Down

0 comments on commit 27395ef

Please sign in to comment.