sngrep: fix error if gnutls and openssl are both enabled
[buildroot-gz.git] / package / perl-gd / 0001-getoptions.patch
blob74f055bead61cafef99997204957cb322afb22d1
1 fix option handling in Makefile.PL
3 the call to GetOptions() must be unique.
5 Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
6 see https://github.com/lstein/Perl-GD/pull/6
8 Index: b/Makefile.PL
9 ===================================================================
10 --- a/Makefile.PL
11 +++ b/Makefile.PL
12 @@ -24,7 +24,15 @@
13 my ($options,$lib_gd_path,$lib_ft_path,$lib_png_path,$lib_jpeg_path,$lib_xpm_path,$lib_zlib_path,$force);
15 use Getopt::Long;
16 -GetOptions("ignore_missing_gd" => \$force);
17 +my $result = GetOptions("options=s" => \$options,
18 + "lib_gd_path=s" => \$lib_gd_path,
19 + "lib_ft_path=s" => \$lib_ft_path,
20 + "lib_png_path=s" => \$lib_png_path,
21 + "lib_jpeg_path=s" => \$lib_jpeg_path,
22 + "lib_xpm_path=s" => \$lib_xpm_path,
23 + "lib_zlib_path=s" => \$lib_zlib_path,
24 + "ignore_missing_gd" => \$force,
25 + );
27 unless (try_to_autoconfigure(\$options,\$lib_gd_path,\@INC,\@LIBPATH,\@LIBS) || $force) {
28 die <<END;
29 @@ -47,14 +55,6 @@
30 #############################################################################################
31 # Build options passed in to script to support reproducible builds via Makefiles
32 #############################################################################################
33 -my $result = GetOptions("options=s" => \$options,
34 - "lib_gd_path=s" => \$lib_gd_path,
35 - "lib_ft_path=s" => \$lib_ft_path,
36 - "lib_png_path=s" => \$lib_png_path,
37 - "lib_jpeg_path=s" => \$lib_jpeg_path,
38 - "lib_xpm_path=s" => \$lib_xpm_path,
39 - "lib_zlib_path=s" => \$lib_zlib_path,
40 - );
41 unless ($result) {
42 print STDERR <<END;
43 Usage: perl Makefile.PL [options]