~ubuntu-branches/ubuntu/trusty/curl/trusty-proposed

« back to all changes in this revision

Viewing changes to .pc/01_runtests_gdb.patch/tests/runtests.pl

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2013-12-20 09:13:22 UTC
  • mfrom: (3.4.44 sid)
  • Revision ID: package-import@ubuntu.com-20131220091322-lqk9xf5wba7vsyfh
Tags: 7.34.0-1ubuntu1
* Resynchronize on Debian, remaining changes
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from binary package Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.
* Dropped undocumented Build-Depends change to automake1.9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
my $has_getrlimit;  # set if system has getrlimit()
211
211
my $has_ntlm;    # set if libcurl is built with NTLM support
212
212
my $has_ntlm_wb; # set if libcurl is built with NTLM delegation to winbind
 
213
my $has_sspi;    # set if libcurl is built with SSPI support
213
214
my $has_charconv;# set if libcurl is built with CharConv support
214
215
my $has_tls_srp; # set if libcurl is built with TLS-SRP support
215
216
my $has_metalink;# set if curl is built with Metalink support
220
221
my $has_yassl;    # built with yassl
221
222
my $has_polarssl; # built with polarssl
222
223
my $has_axtls;    # built with axTLS
223
 
my $has_winssl;   # built with WinSSL (Schannel/SSPI)
 
224
my $has_winssl;   # built with WinSSL    (Secure Channel aka Schannel)
224
225
my $has_darwinssl;# build with DarwinSSL (Secure Transport)
225
226
 
226
227
my $has_shared = "unknown";  # built shared
2406
2407
                # NTLM delegation to winbind daemon ntlm_auth helper enabled
2407
2408
                $has_ntlm_wb=1;
2408
2409
            }
 
2410
            if($feat =~ /SSPI/i) {
 
2411
                # SSPI enabled
 
2412
                $has_sspi=1;
 
2413
            }
2409
2414
            if($feat =~ /CharConv/i) {
2410
2415
                # CharConv enabled
2411
2416
                $has_charconv=1;
2835
2840
                next;
2836
2841
            }
2837
2842
        }
 
2843
        elsif($f eq "SSPI") {
 
2844
            if($has_sspi) {
 
2845
                next;
 
2846
            }
 
2847
        }
2838
2848
        elsif($f eq "getrlimit") {
2839
2849
            if($has_getrlimit) {
2840
2850
                next;