Index: /trunk/src/VBox/Runtime/common/crypto/ssl-openssl.cpp
===================================================================
--- /trunk/src/VBox/Runtime/common/crypto/ssl-openssl.cpp	(revision 74722)
+++ /trunk/src/VBox/Runtime/common/crypto/ssl-openssl.cpp	(revision 74723)
@@ -111,4 +111,9 @@
                 /* Help with above aim. */
 # if OPENSSL_VERSION_NUMBER >= 0x10100000
+#  ifndef SSL_CTX_get_min_proto_version
+/* Some older OpenSSL 1.1.0 releases lack the getters, officially they were
+ * added with 1.1.1 but someone cherry picked them, just maybe too late. */
+#   define SSL_CTX_get_min_proto_version(ctx) (0)
+#  endif
                 if (SSL_CTX_get_min_proto_version(pThis->pCtx) < TLS1_VERSION)
                     SSL_CTX_set_min_proto_version(pThis->pCtx, TLS1_VERSION);
