Build the _ssl module

Bug: 110170704
Test: cd external/python/cpython2; mma
Change-Id: If8e4b0b4c46a7d610abe7803a1fc5e3a6ba4b7a1
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index d0ce913..0e0dacd 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -591,7 +591,9 @@
     Py_INCREF(sslctx);
 
     /* Make sure the SSL error state is initialized */
+#ifndef OPENSSL_IS_BORINGSSL
     (void) ERR_get_state();
+#endif
     ERR_clear_error();
 
     PySSL_BEGIN_ALLOW_THREADS