Fix warning with TLS 1.2 without RSA or ECDSA
diff --git a/library/ssl_cli.c b/library/ssl_cli.c
index fda9ebf..9903954 100644
--- a/library/ssl_cli.c
+++ b/library/ssl_cli.c
@@ -148,8 +148,10 @@
                                                 size_t *olen )
 {
     unsigned char *p = buf;
-    unsigned char *sig_alg_list = buf + 6;
     size_t sig_alg_len = 0;
+#if defined(POLARSSL_RSA_C) || defined(POLARSSL_ECDSA_C)
+    unsigned char *sig_alg_list = buf + 6;
+#endif
 
     *olen = 0;