BUILD: ssl: set SSL_SOCK_NUM_KEYTYPES with openssl < 1.0.2

Last patch unfortunately broke build with openssl older than 1.0.2.
Let's just define a single key type in this case.
diff --git a/src/ssl_sock.c b/src/ssl_sock.c
index 31af6f9..5200069 100644
--- a/src/ssl_sock.c
+++ b/src/ssl_sock.c
@@ -168,6 +168,8 @@
 	"rsa"
 };
 #define SSL_SOCK_NUM_KEYTYPES 3
+#else
+#define SSL_SOCK_NUM_KEYTYPES 1
 #endif
 
 #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)