yangtse: curl-www/auto _table3.html, 1.1, 1.2 explainopts.t, 1.5, 1.6 summarize.pl, 1.63, 1.64

[email protected] Sat, 23 Jan 2010 17:00:31 +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-serv25896

Modified Files:
	_table3.html explainopts.t summarize.pl 
Log Message:

Use (A)resDNS and T(H)readedDNS to disambiguate among AsynchDNS feature.


Index: explainopts.t
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/explainopts.t,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- explainopts.t	10 Jun 2009 21:56:35 -0000	1.5
+++ explainopts.t	23 Jan 2010 17:00:29 -0000	1.6
@@ -1,6 +1,7 @@
 <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>A</b>)synch, (<b>Z</b>)lib, (<b>G</b>)SS, lib(<b>I</b>)dn, SS(<b>P</b>)I,
+(<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>)
 
 <p> Text <span class='buildserverprob'>looking like this</span> is for servers

Index: _table3.html
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/_table3.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- _table3.html	23 Feb 2004 15:27:20 -0000	1.1
+++ _table3.html	23 Jan 2010 17:00:29 -0000	1.2
@@ -18,7 +18,7 @@
 SUBTITLE(Autobuild Table)
 <p>
  Options = (<b>K</b>)rb4, IPv(<b>6</b>), (<b>D</b>)ebug, (<b>S</b>)SL,
- (<b>A</b>)synch, (<b>Z</b>)lib (<b>G</b>)SS
+ (<b>A</b>)resDNS, (T<b>H</b>)readedDNS, (<b>Z</b>)lib (<b>G</b>)SS
 
 #include "table3.t"
 #include "_footer.html"

Index: summarize.pl
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/summarize.pl,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- summarize.pl	19 Jan 2010 20:11:49 -0000	1.63
+++ summarize.pl	23 Jan 2010 17:00:29 -0000	1.64
@@ -324,11 +324,11 @@
 
     $showdebug=($debug?"D":"-").($trackmem?"M":"-");
     $https=($openssl)?"S":($gnutls?"T":($nss?"N":($ssl?"?":"-")));
-    $asynch=$ares?"A":"-";
+    my $showres=($asynch)?($ares?"A":"H"):"-";
     $sspi=$sspi?"P":"-";
     my $ssh=$libssh2?"2":"-";
 
-    my $o = "$krb4$ipv6$showdebug$https$asynch$zlib$gss$idn$sspi$ssh";
+    my $o = "$krb4$ipv6$showdebug$https$showres$zlib$gss$idn$sspi$ssh";
 
     if(!$desc) {
         $desc = $os;
@@ -373,6 +373,7 @@
     $ssl=0;
     $cvsfail=0;
     $nospaceleft=0;
+    $asynch=0;
     $ares=0;
     $sspi=0;
     $buildid="";
@@ -520,7 +521,11 @@
                     $ssl=0;
                 }
             }
+            elsif($line =~ ^supported_features(.*)AsynchDNS/) {
+                $asynch = 1;
+            }
             elsif($line =~ /^\#define USE_ARES 1/) {
+                $asynch = 1;
                 $ares = 1;
             }
             elsif($line =~ /^\#define USE_WINDOWS_SSPI 1/) {