aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-05-11 17:20:41 +0000
committerYang Tse <yangsita@gmail.com>2009-05-11 17:20:41 +0000
commit36b397be9f851bb153fe47bba0acf86c0a4eecb9 (patch)
tree06cf6247ce69c7e1114e78060014ef492f0e7142 /tests
parent468019e947c00cd1086c1a82622d797b85beff63 (diff)
Fetch curl's 'CharConv' feature information, used by TPF.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 18e64b724..c7bdcb760 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -184,6 +184,7 @@ my $has_ipv6; # set if libcurl is built with IPv6 support
my $has_libz; # set if libcurl is built with libz support
my $has_getrlimit; # set if system has getrlimit()
my $has_ntlm; # set if libcurl is built with NTLM support
+my $has_charconv;# set if libcurl is built with CharConv support
my $has_openssl; # built with a lib using an OpenSSL-like API
my $has_gnutls; # built with GnuTLS
@@ -1569,6 +1570,10 @@ sub checksystem {
# NTLM enabled
$has_ntlm=1;
}
+ if($feat =~ /CharConv/i) {
+ # CharConv enabled
+ $has_charconv=1;
+ }
}
}
if(!$curl) {