bagder: curl-www/auto explainopts.t,1.7,1.8 summarize.pl,1.67,1.68
[email protected] Wed, 22 Dec 2010 12:45:34 +0000
| Newsgroups | gmane.comp.web.curl.www.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/curl/curl-www/auto
In directory giant.haxx.se:/var/tmp/cvs-serv17769
Modified Files:
explainopts.t summarize.pl
Log Message:
axTLS and PolarSSL awareness added
Index: explainopts.t
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/explainopts.t,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- explainopts.t 23 Jan 2010 17:35:20 -0000 1.7
+++ explainopts.t 22 Dec 2010 12:45:32 -0000 1.8
@@ -1,5 +1,5 @@
<p> Options = (<b>K</b>)rb4, IPv(<b>6</b>), (<b>D</b>)ebug, Track
-(<b>M</b>)emory, Open(<b>S</b>)SL, Gnu(<b>T</b>)LS, (<b>N</b>)SS,
+(<b>M</b>)emory, Open(<b>S</b>)SL, Gnu(<b>T</b>)LS, (<b>N</b>)SS, a(<b>X</b>)TLS, P(<b>O</b>)larSSL,
(<b>A</b>)resDNS, T(<b>H</b>)readedDNS,
(<b>Z</b>)lib, (<b>G</b>)SS, lib(<b>I</b>)dn, SS(<b>P</b>)I,
libssh(<b>2</b>)
Index: summarize.pl
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/summarize.pl,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- summarize.pl 22 Mar 2010 13:42:40 -0000 1.67
+++ summarize.pl 22 Dec 2010 12:45:32 -0000 1.68
@@ -327,7 +327,7 @@
undef %serverfail;
$showdebug=($debug?"D":"-").($trackmem?"M":"-");
- $https=($openssl)?"S":($gnutls?"T":($nss?"N":($ssl?"?":"-")));
+ $https=($openssl)?"S":($gnutls?"T":($nss?"N":($polarssl?"O":($axtls?"X":"-")"-")"-"));
my $showres=($asynch)?($ares?"A":"H"):"-";
$sspi=$sspi?"P":"-";
my $ssh=$libssh2?"2":"-";
@@ -524,6 +524,12 @@
elsif($line =~ /^\#define USE_GNUTLS 1/) {
$gnutls = 1;
}
+ elsif($line =~ /^\#define USE_AXTLS 1/) {
+ $axtls = 1;
+ }
+ elsif($line =~ /^\#define USE_POLARSSL 1/) {
+ $polarssl = 1;
+ }
elsif($line =~ /^\#define USE_NSS 1/) {
$nss = 1;
}