~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to lib/mk-ca-bundle.pl

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mfrom: (1.1.12 upstream)
  • mto: (3.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-8xjr3o2sgce5s4bg
Tags: 7.19.4-1
* New upstream release
* Fix "newer bdb version" <explain what you changed and why> 
  (Closes: #517277)
* resolve libtool version confusion, thanks to 
  Stefanos Harhalakis <v13@v13.gr>
* add new dependency on libgcrypt11-dev due to newly arising binary symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
# * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20
20
# * KIND, either express or implied.
21
21
# *
22
 
# * $Id: mk-ca-bundle.pl,v 1.10 2008-02-15 00:41:54 gknauf Exp $
 
22
# * $Id: mk-ca-bundle.pl,v 1.14 2008-08-23 21:31:09 gknauf Exp $
23
23
# ***************************************************************************
24
24
# This Perl script creates a fresh ca-bundle.crt file for use with libcurl. 
25
25
# It downloads certdata.txt from Mozilla's source tree (see URL below),
37
37
use strict;
38
38
use vars qw($opt_b $opt_h $opt_i $opt_l $opt_n $opt_q $opt_t $opt_u $opt_v);  
39
39
 
40
 
my $url = 'http://lxr.mozilla.org/seamonkey/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1';
 
40
my $url = 'http://mxr.mozilla.org/seamonkey/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1';
41
41
# If the OpenSSL commandline is not in search path you can configure it here!
42
42
my $openssl = 'openssl';
43
43
 
44
 
my $version = $1 if ('$Revision: 1.10 $' =~ /\s(\d+\.\d+)\s/);
 
44
my $version = $1 if ('$Revision: 1.14 $' =~ /\s(\d+\.\d+)\s/);
45
45
 
46
46
getopts('bhilnqtuv');
47
47