From 51427e1947ddc07b4ce8ad9dcb04846125170f83 Mon Sep 17 00:00:00 2001 From: Hoi-Ho Chan Date: Wed, 5 May 2010 22:30:46 +0200 Subject: 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. --- tests/runtests.pl | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests') 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 -- cgit v1.2.1