pidgin/pidgin

I guess there are NSS versions that support the SSL_VersionRange stuff, but not TLS 1.2 - I thought they came in at the same time.
--- a/libpurple/plugins/ssl/nss-prefs.c Thu Nov 06 10:45:12 2014 +0100
+++ b/libpurple/plugins/ssl/nss-prefs.c Fri Nov 07 12:16:35 2014 -0500
@@ -337,9 +337,11 @@
case SSL_LIBRARY_VERSION_TLS_1_1:
ver = g_strdup(_("TLS 1.1"));
break;
+#ifdef SSL_LIBRARY_VERSION_TLS_1_2
case SSL_LIBRARY_VERSION_TLS_1_2:
ver = g_strdup(_("TLS 1.2"));
break;
+#endif
#ifdef SSL_LIBRARY_VERSION_TLS_1_3
case SSL_LIBRARY_VERSION_TLS_1_3:
ver = g_strdup(_("TLS 1.3"));