diff options
author | Hoi-Ho Chan <hoiho.chan@gmail.com> | 2010-05-05 22:30:46 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-05-05 22:30:46 +0200 |
commit | 51427e1947ddc07b4ce8ad9dcb04846125170f83 (patch) | |
tree | 1f9bec31da95f2aaf4cf288d9c85562437e6aacf /tests | |
parent | 1de6b97a768f56a1c8b67d2165da67569afebec4 (diff) | |
download | curl-51427e1947ddc07b4ce8ad9dcb04846125170f83.tar.gz |
PolarSSL: initial support added
This is Hoi-Ho Chan's patch with some minor fixes by me. There
are some potential issues in this, but none worse than we can
sort out on the list and over time.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index c8a54f05a..6abca9fce 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -202,6 +202,7 @@ my $has_openssl; # built with a lib using an OpenSSL-like API my $has_gnutls; # built with GnuTLS my $has_nss; # built with NSS my $has_yassl; # built with yassl +my $has_polarssl;# built with polarssl my $ssllib; # name of the lib we use (for human presentation) my $has_crypto; # set if libcurl is built with cryptographic support @@ -1929,6 +1930,11 @@ sub checksystem { $has_openssl=1; $ssllib="yassl"; } + elsif ($libcurl =~ /polarssl/i) { + $has_polarssl=1; + $has_openssl=1; + $ssllib="polarssl"; + } } elsif($_ =~ /^Protocols: (.*)/i) { # these are the protocols compiled in to this libcurl |