diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2012-09-20 07:59:20 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2012-09-20 09:30:23 +0000 |
commit | d1152ece442b20c6412425f0dceca1b6f9699fa8 (patch) | |
tree | 029b6ed5dd844142c6a09bb45436279146cde18b /main/heimdal/heimdal-1.5-use-perl-Getopt_Std.patch | |
parent | 5d769d1b8474783879c2bb80a3035c17a344c490 (diff) | |
download | aports-d1152ece442b20c6412425f0dceca1b6f9699fa8.tar.bz2 aports-d1152ece442b20c6412425f0dceca1b6f9699fa8.tar.xz |
main/heimdal: upgrade to 1.5.2
Diffstat (limited to 'main/heimdal/heimdal-1.5-use-perl-Getopt_Std.patch')
-rw-r--r-- | main/heimdal/heimdal-1.5-use-perl-Getopt_Std.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/main/heimdal/heimdal-1.5-use-perl-Getopt_Std.patch b/main/heimdal/heimdal-1.5-use-perl-Getopt_Std.patch new file mode 100644 index 0000000000..4f89ed2090 --- /dev/null +++ b/main/heimdal/heimdal-1.5-use-perl-Getopt_Std.patch @@ -0,0 +1,22 @@ +--- cf/make-proto.pl ++++ cf/make-proto.pl +@@ -1,8 +1,8 @@ + # Make prototypes from .c files + # $Id$ + +-##use Getopt::Std; +-require 'getopts.pl'; ++use Getopt::Std; ++##require 'getopts.pl'; + + my $comment = 0; + my $if_0 = 0; +@@ -13,7 +13,7 @@ + my $private_func_re = "^_"; + my %depfunction = (); + +-Getopts('x:m:o:p:dqE:R:P:') || die "foo"; ++getopts('x:m:o:p:dqE:R:P:') || die "foo"; + + if($opt_d) { + $debug = 1; |