Commit | Line | Data |
---|---|---|
ea9e6c3f | 1 | #!perl -w |
714cf158 | 2 | use strict; |
02d1d628 AMH |
3 | use ExtUtils::MakeMaker; |
4 | use Cwd; | |
5 | use Config; | |
07ea6c21 | 6 | use File::Spec; |
37959076 | 7 | use Getopt::Long; |
867acf5b | 8 | use vars qw(%Recommends); |
92bda632 | 9 | use ExtUtils::Manifest qw(maniread); |
714cf158 | 10 | use vars qw(%formats $VERBOSE $INCPATH $LIBPATH $NOLOG $DEBUG_MALLOC $MANUAL $CFLAGS $LFLAGS $DFLAGS); |
02d1d628 | 11 | |
02d1d628 AMH |
12 | # |
13 | # IM_INCPATH colon seperated list of paths to extra include paths | |
14 | # IM_LIBPATH colon seperated list of paths to extra library paths | |
15 | # | |
16 | # IM_VERBOSE turns on verbose mode for the library finding and such | |
17 | # IM_MANUAL to manually select which libraries are used and which not | |
18 | # IM_ENABLE to programmatically select which libraries are used | |
19 | # and which are not | |
20 | # IM_NOLOG if true logging will not be compiled into the module | |
21 | # IM_DEBUG_MALLOC if true malloc debbuging will be compiled into the module | |
22 | # do not use IM_DEBUG_MALLOC in production - this slows | |
23 | # everything down by alot | |
24 | # IM_CFLAGS Extra flags to pass to the compiler | |
25 | # IM_LFLAGS Extra flags to pass to the linker | |
26 | # IM_DFLAGS Extra flags to pass to the preprocessor | |
f4dbac50 | 27 | # IM_SUPPRESS_PROMPT Suppress the prompt asking about gif support |
02d1d628 | 28 | |
855c5808 TC |
29 | getenv(); # get environment variables |
30 | ||
714cf158 TC |
31 | my $lext=$Config{'so'}; # Get extensions of libraries |
32 | my $aext=$Config{'_a'}; | |
33 | ||
34 | my $help; # display help if set | |
35 | my @enable; # list of drivers to enable | |
36 | my @disable; # or list of drivers to disable | |
37 | my @incpaths; # places to look for headers | |
38 | my @libpaths; # places to look for libraries | |
714cf158 | 39 | my $noexif; # non-zero to disable EXIF parsing of JPEGs |
1660561c | 40 | my $no_gif_set_version; # disable calling EGifSetGifVersion |
1ef586b1 | 41 | my $coverage; # build for coverage testing |
37959076 TC |
42 | GetOptions("help" => \$help, |
43 | "enable=s" => \@enable, | |
44 | "disable=s" => \@disable, | |
45 | "incpath=s", \@incpaths, | |
46 | "libpath=s" => \@libpaths, | |
274cd32b | 47 | "verbose|v" => \$VERBOSE, |
f7450478 | 48 | "nolog" => \$NOLOG, |
1660561c | 49 | "noexif" => \$noexif, |
1ef586b1 TC |
50 | "nogifsetversion" => \$no_gif_set_version, |
51 | 'coverage' => \$coverage); | |
855c5808 TC |
52 | |
53 | if ($VERBOSE) { | |
54 | print "Verbose mode\n"; | |
55 | require Data::Dumper; | |
56 | import Data::Dumper qw(Dumper); | |
57 | } | |
37959076 TC |
58 | |
59 | if ($help) { | |
60 | usage(); | |
61 | } | |
62 | ||
f7450478 TC |
63 | my @defines; |
64 | ||
274cd32b TC |
65 | if ($NOLOG) { print "Logging not compiled into module\n"; } |
66 | else { | |
67 | push @defines, [ IMAGER_LOG => 1, "Logging system" ]; | |
68 | } | |
69 | ||
70 | if ($DEBUG_MALLOC) { | |
71 | push @defines, [ IMAGER_DEBUG_MALLOC => 1, "Use Imager's DEBUG malloc()" ]; | |
72 | print "Malloc debugging enabled\n"; | |
73 | } | |
74 | ||
37959076 TC |
75 | if (@enable && @disable) { |
76 | print STDERR "Only --enable or --disable can be used, not both, try --help\n"; | |
77 | exit 1; | |
78 | } | |
02d1d628 | 79 | |
714cf158 TC |
80 | my %definc; |
81 | my %deflib; | |
82 | my @incs; # all the places to look for headers | |
83 | my @libs; # all the places to look for libraries | |
84 | ||
02d1d628 AMH |
85 | init(); # initialize global data |
86 | pathcheck(); # Check if directories exist | |
87 | ||
37959076 TC |
88 | if (exists $ENV{IM_ENABLE}) { |
89 | my %en = map { $_, 1 } split ' ', $ENV{IM_ENABLE}; | |
90 | for my $key (keys %formats) { | |
91 | delete $formats{$key} unless $en{$key}; | |
92 | } | |
93 | } | |
94 | if (@enable) { | |
95 | my %en = map { $_ => 1 } map { split /,/ } @enable; | |
96 | for my $key (keys %formats) { | |
97 | delete $formats{$key} unless $en{$key}; | |
98 | } | |
99 | } | |
100 | elsif (@disable) { | |
101 | delete @formats{map { split /,/ } @disable}; | |
102 | } | |
103 | ||
02d1d628 AMH |
104 | # Pick what libraries are used |
105 | if ($MANUAL) { | |
106 | manual(); | |
107 | } else { | |
108 | automatic(); | |
02d1d628 AMH |
109 | } |
110 | ||
111 | # Make sure there isn't a clash between the gif libraries. | |
112 | gifcheck(); | |
113 | ||
07ea6c21 | 114 | my $lib_cflags = ''; |
a8395b42 | 115 | my $lib_lflags = ''; |
80c15fc7 TC |
116 | my $F_LIBS = ''; |
117 | my $F_OBJECT = ''; | |
714cf158 | 118 | for my $frmkey (sort { $formats{$a}{order} <=> $formats{$b}{order} } keys %formats) { |
e11d297f TC |
119 | my $frm = $formats{$frmkey}; |
120 | push @defines, [ $frm->{def}, 1, "$frmkey available" ]; | |
02d1d628 | 121 | $F_OBJECT .= ' ' .$frm->{objfiles}; |
714cf158 TC |
122 | if ($frm->{cflags}) { |
123 | $lib_cflags .= ' ' .$frm->{cflags}; | |
124 | ++$definc{$_} for map { /^-I(.*)$/ ? ($1) : () } | |
125 | grep /^-I./, split ' ', $frm->{cflags}; | |
126 | } | |
a8395b42 TC |
127 | if ($frm->{lflags}) { |
128 | $lib_lflags .= ' ' . $frm->{lflags}; | |
129 | } | |
130 | else { | |
131 | $F_LIBS .= ' ' .$frm->{libfiles}; | |
132 | } | |
133 | ||
02d1d628 | 134 | } |
714cf158 | 135 | |
f7450478 TC |
136 | unless ($noexif) { |
137 | print "EXIF support enabled\n"; | |
138 | push @defines, [ 'IMEXIF_ENABLE', 1, "Enable experimental EXIF support" ]; | |
139 | $F_OBJECT .= ' imexif.o'; | |
140 | } | |
02d1d628 | 141 | |
714cf158 TC |
142 | my $F_INC = join ' ', map "-I$_", map / / ? qq{"$_"} : $_, |
143 | grep !$definc{$_}, @incs; | |
144 | $F_LIBS = join(' ',map "-L$_", map / / ? qq{"$_"} : $_, | |
145 | grep !$deflib{$_}++, @libs) . $F_LIBS; | |
02d1d628 | 146 | |
714cf158 TC |
147 | my $OSLIBS = ''; |
148 | my $OSDEF = "-DOS_$^O"; | |
02d1d628 AMH |
149 | |
150 | if ($^O eq 'hpux') { $OSLIBS .= ' -ldld'; } | |
151 | if (defined $Config{'d_dlsymun'}) { $OSDEF .= ' -DDLSYMUN'; } | |
152 | ||
714cf158 TC |
153 | my @objs = qw(Imager.o draw.o polygon.o image.o io.o iolayer.o |
154 | log.o gaussian.o conv.o pnm.o raw.o feat.o font.o | |
155 | filters.o dynaload.o stackmach.o datatypes.o | |
156 | regmach.o trans2.o quant.o error.o convert.o | |
157 | map.o tags.o palimg.o maskimg.o img16.o rotate.o | |
d5477d3d | 158 | bmp.o tga.o color.o fills.o imgdouble.o limits.o hlines.o |
9b1ec2b8 | 159 | imext.o scale.o rubthru.o render.o paste.o compose.o); |
92bda632 TC |
160 | |
161 | $Recommends{Imager} = | |
162 | { 'Parse::RecDescent' => 0 }; | |
02d1d628 | 163 | |
714cf158 TC |
164 | my %opts=( |
165 | 'NAME' => 'Imager', | |
166 | 'VERSION_FROM' => 'Imager.pm', | |
a8395b42 | 167 | 'LIBS' => "$LFLAGS -lm $lib_lflags $OSLIBS $F_LIBS", |
714cf158 TC |
168 | 'DEFINE' => "$OSDEF $CFLAGS", |
169 | 'INC' => "$lib_cflags $DFLAGS $F_INC", | |
170 | 'OBJECT' => join(' ', @objs, $F_OBJECT), | |
9b1ec2b8 | 171 | clean => { FILES=>'testout meta.tmp rubthru.c scale.c conv.c filters.c gaussian.c render.c rubthru.c' }, |
714cf158 | 172 | PM => gen_PM(), |
867acf5b | 173 | PREREQ_PM => { 'Test::More' => 0.47 }, |
714cf158 | 174 | ); |
02d1d628 | 175 | |
1ef586b1 TC |
176 | if ($coverage) { |
177 | if ($Config{gccversion}) { | |
178 | push @ARGV, 'OPTIMIZE=-ftest-coverage -fprofile-arcs'; | |
179 | #$opts{dynamic_lib} = { OTHERLDFLAGS => '-ftest-coverage -fprofile-arcs' }; | |
180 | } | |
181 | else { | |
182 | die "Don't know the coverage C flags for your compiler\n"; | |
183 | } | |
184 | } | |
185 | ||
c52cbef2 TC |
186 | # eval to prevent warnings about versions with _ in them |
187 | my $MM_ver = eval $ExtUtils::MakeMaker::VERSION; | |
188 | if ($MM_ver > 6.06) { | |
29316bdb | 189 | $opts{AUTHOR} = 'Tony Cook <tony@imager.perl.org>, Arnar M. Hrafnkelsson'; |
ca508100 TC |
190 | $opts{ABSTRACT} = 'Perl extension for Generating 24 bit Images'; |
191 | } | |
c52cbef2 | 192 | if ($MM_ver > 6.10) { |
135d30e3 TC |
193 | $opts{NO_META} = 1; |
194 | } | |
ca508100 | 195 | |
e11d297f TC |
196 | make_imconfig(\@defines); |
197 | ||
02d1d628 AMH |
198 | if ($VERBOSE) { print Dumper(\%opts); } |
199 | mkdir('testout',0777); # since we cannot include it in the archive. | |
135d30e3 TC |
200 | |
201 | make_metafile(\%opts); | |
202 | ||
02d1d628 | 203 | WriteMakefile(%opts); |
4dce694d | 204 | |
02d1d628 AMH |
205 | exit; |
206 | ||
207 | ||
208 | sub MY::postamble { | |
5a7e62b6 TC |
209 | my $self = shift; |
210 | my $perl = $self->{PERLRUN} ? '$(PERLRUN)' : '$(PERL)'; | |
fe415ad2 TC |
211 | my $mani = maniread; |
212 | ||
213 | my @ims = grep /\.im$/, keys %$mani; | |
02d1d628 | 214 | ' |
faa9b3e7 | 215 | dyntest.$(MYEXTLIB) : dynfilt/Makefile |
02d1d628 AMH |
216 | cd dynfilt && $(MAKE) $(PASTHRU) |
217 | ||
218 | lib/Imager/Regops.pm : regmach.h regops.perl | |
219 | $(PERL) regops.perl regmach.h lib/Imager/Regops.pm | |
e11d297f | 220 | |
92bda632 | 221 | imconfig.h : Makefile.PL |
e11d297f TC |
222 | $(ECHO) "imconfig.h out-of-date with respect to $?" |
223 | $(PERLRUN) Makefile.PL | |
224 | $(ECHO) "==> Your Makefile has been rebuilt - re-run your make command <==" | |
5a7e62b6 | 225 | '.qq! |
a7811258 | 226 | lib/Imager/APIRef.pod : \$(C_FILES) apidocs.perl |
2a69ed21 | 227 | $perl apidocs.perl lib/Imager/APIRef.pod |
92bda632 | 228 | |
fe415ad2 TC |
229 | !.join('', map _im_rule($perl, $_), @ims) |
230 | ||
231 | } | |
232 | ||
233 | sub _im_rule { | |
234 | my ($perl, $im) = @_; | |
235 | ||
236 | (my $c = $im) =~ s/\.im$/.c/; | |
237 | return <<MAKE; | |
238 | ||
9b1ec2b8 TC |
239 | $c: $im lib/Imager/Preprocess.pm |
240 | $perl -Ilib -MImager::Preprocess -epreprocess $im $c | |
fe415ad2 TC |
241 | |
242 | MAKE | |
02d1d628 | 243 | |
55932d2a TC |
244 | } |
245 | ||
02d1d628 AMH |
246 | # manual configuration of helper libraries |
247 | ||
248 | sub manual { | |
249 | print <<EOF; | |
250 | ||
251 | Please answer the following questions about | |
252 | which formats are avaliable on your computer | |
253 | ||
254 | press <return> to continue | |
255 | EOF | |
256 | ||
257 | <STDIN>; # eat one return | |
258 | ||
2646b26c | 259 | for my $frm(sort { $formats{$b}{order} <=> $formats{$a}{order} } keys %formats) { |
02d1d628 AMH |
260 | SWX: |
261 | if ($formats{$frm}{docs}) { print "\n",$formats{$frm}{docs},"\n\n"; } | |
262 | print "Enable $frm support: "; | |
714cf158 | 263 | my $gz = <STDIN>; |
02d1d628 AMH |
264 | chomp($gz); |
265 | if ($gz =~ m/^(y|yes|n|no)/i) { | |
266 | $gz=substr(lc($gz),0,1); | |
267 | if ($gz eq 'n') { | |
268 | delete $formats{$frm}; | |
269 | } | |
270 | } else { goto SWX; } | |
271 | } | |
272 | } | |
273 | ||
274 | ||
275 | # automatic configuration of helper libraries | |
276 | ||
277 | sub automatic { | |
714cf158 TC |
278 | print "Automatic probing:\n" if $VERBOSE; |
279 | for my $frm (sort { $formats{$a}{order} <=> $formats{$b}{order} } keys %formats) { | |
02d1d628 AMH |
280 | delete $formats{$frm} if !checkformat($frm); |
281 | } | |
282 | } | |
283 | ||
284 | ||
285 | sub gifcheck { | |
5f5fe73e | 286 | if ($formats{'gif'} and $formats{'ungif'}) { |
02d1d628 AMH |
287 | print "ungif and gif can not coexist - removing ungif support\n"; |
288 | delete $formats{'ungif'}; | |
289 | } | |
5f5fe73e | 290 | |
09fd3468 AMH |
291 | for my $frm (qw(gif ungif)) { |
292 | checkformat($frm) if ($MANUAL and $formats{$frm}); | |
293 | } | |
294 | ||
02d1d628 AMH |
295 | my @dirs; |
296 | for my $frm (grep $formats{$_}, qw(gif ungif)) { | |
297 | push(@dirs, @{$formats{$frm}{incdir}}) if $formats{$frm}{incdir}; | |
298 | } | |
299 | my $minor = 0; | |
300 | my $major = 0; | |
301 | FILES: for my $dir (@dirs) { | |
302 | my $h = "$dir/gif_lib.h"; | |
303 | open H, "< $h" or next; | |
304 | while (<H>) { | |
305 | if (/GIF_LIB_VERSION\s+"\s*version\s*(\d+)\.(\d+)/i) { | |
306 | $major = $1; | |
307 | $minor = $2; | |
308 | close H; | |
309 | last FILES; | |
310 | } | |
311 | } | |
312 | close H; | |
313 | } | |
314 | ||
315 | # we need the version in a #ifdefable form | |
4dce694d | 316 | |
714cf158 TC |
317 | push @defines, [ IM_GIFMAJOR => $major, "Parsed giflib version" ]; |
318 | push @defines, [ IM_GIFMINOR => $minor ]; | |
1660561c TC |
319 | push @defines, [ IM_NO_SET_GIF_VERSION => 1, "Disable EGifSetGifVersion" ] |
320 | if $no_gif_set_version; | |
02d1d628 AMH |
321 | } |
322 | ||
323 | ||
c6e870ae TC |
324 | sub grep_directory { |
325 | my($path, $chk)=@_; | |
02d1d628 AMH |
326 | |
327 | # print "checking path $path\n"; | |
328 | if ( !opendir(DH,$path) ) { | |
329 | warn "Cannot open dir $path: $!\n"; | |
330 | return; | |
331 | } | |
332 | my @l=grep { $chk->($_) } readdir(DH); | |
333 | # print @l; | |
334 | close(DH); | |
335 | return map $path, @l; | |
336 | } | |
337 | ||
338 | ||
339 | sub checkformat { | |
340 | my $frm=shift; | |
714cf158 TC |
341 | |
342 | print " checkformat($frm)\n" if $VERBOSE; | |
37959076 | 343 | |
c6e870ae TC |
344 | my $probe_array = $formats{$frm}{'code'}; |
345 | if ($probe_array) { | |
714cf158 | 346 | print " Calling probe function\n" if $VERBOSE; |
c6e870ae TC |
347 | if (ref $probe_array ne 'ARRAY') { |
348 | $probe_array = [ $probe_array ]; | |
349 | } | |
350 | for my $func (@$probe_array) { | |
351 | return 1 if $func->($formats{$frm}, $frm); | |
352 | } | |
07ea6c21 TC |
353 | } |
354 | ||
c6e870ae TC |
355 | my $lib_check=$formats{$frm}{'libcheck'}; |
356 | my $inc_check=$formats{$frm}{'inccheck'}; | |
02d1d628 | 357 | |
c6e870ae TC |
358 | if ($lib_check) { |
359 | my @l; | |
360 | for my $lp (@libs) { | |
361 | push(@l, grep_directory($lp,$lib_check)); | |
362 | } | |
363 | ||
364 | my @i; | |
365 | for my $ip (@incs) { | |
366 | push(@i, $ip) if $inc_check->($ip,$frm); | |
367 | } | |
368 | ||
369 | printf("%10s: includes %s - libraries %s\n",$frm,(@i?'found':'not found'),(@l?'found':'not found')); | |
370 | $formats{$frm}{incdir} = \@i; | |
371 | $formats{$frm}{libdir} = \@l; | |
372 | return 1 if scalar(@i && @l); | |
02d1d628 | 373 | } |
c6e870ae TC |
374 | else { |
375 | printf("%10s: not available\n", $frm); | |
02d1d628 AMH |
376 | } |
377 | ||
c6e870ae | 378 | return 0; |
02d1d628 AMH |
379 | } |
380 | ||
381 | ||
02d1d628 AMH |
382 | sub pathcheck { |
383 | if ($VERBOSE) { | |
384 | print "pathcheck\n"; | |
385 | print " Include paths:\n"; | |
386 | for (@incs) { print $_,"\n"; } | |
387 | } | |
3a6bb91b | 388 | @incs=grep { -d $_ && -r _ && -x _ or ( print(" $_ doesnt exist or is unaccessible - removed.\n"),0) } @incs; |
02d1d628 AMH |
389 | |
390 | if ($VERBOSE) { | |
391 | print "\nLibrary paths:\n"; | |
855c5808 | 392 | for (@libs) { print $_,"\n"; } |
02d1d628 | 393 | } |
3a6bb91b | 394 | @libs=grep { -d $_ && -r _ && -x _ or ( print(" $_ doesnt exist or is unaccessible - removed.\n"),0) } @libs; |
02d1d628 AMH |
395 | print "\ndone.\n"; |
396 | } | |
397 | ||
398 | ||
399 | # Format data initialization | |
400 | ||
401 | # format definition is: | |
402 | # defines needed | |
403 | # default include path | |
404 | # files needed for include (boolean perl code) | |
405 | # default lib path | |
406 | # libs needed | |
407 | # files needed for link (boolean perl code) | |
408 | # object files needed for the format | |
409 | ||
410 | ||
411 | sub init { | |
412 | ||
714cf158 TC |
413 | my @definc = qw(/usr/include); |
414 | @definc{@definc}=(1) x @definc; | |
d8e0c3ba TC |
415 | @incs= |
416 | ( | |
417 | split(/\Q$Config{path_sep}/, $INCPATH), | |
418 | map _tilde_expand($_), map { split /\Q$Config{path_sep}/ } @incpaths | |
419 | ); | |
2646b26c | 420 | if ($Config{locincpth}) { |
6552acfe | 421 | push @incs, grep -d, split ' ', $Config{locincpth}; |
2646b26c | 422 | } |
88a763e2 TC |
423 | if ($^O =~ /win32/i && $Config{cc} =~ /\bcl\b/i) { |
424 | push(@incs, split /;/, $ENV{INCLUDE}) if exists $ENV{INCLUDE}; | |
2646b26c | 425 | } |
16cf4610 TC |
426 | if ($Config{incpath}) { |
427 | push @incs, grep -d, split /\Q$Config{path_sep}/, $Config{incpath}; | |
428 | } | |
6552acfe | 429 | push @incs, grep -d, |
2646b26c TC |
430 | qw(/sw/include |
431 | /usr/include/freetype2 | |
432 | /usr/local/include/freetype2 | |
433 | /usr/local/include/freetype1/freetype | |
37959076 | 434 | /usr/include /usr/local/include /usr/include/freetype |
2646b26c | 435 | /usr/local/include/freetype); |
714cf158 TC |
436 | if ($Config{ccflags}) { |
437 | my @hidden = map { /^-I(.*)$/ ? ($1) : () } split ' ', $Config{ccflags}; | |
438 | push @incs, @hidden; | |
439 | @definc{@hidden} = (1) x @hidden; | |
440 | } | |
2646b26c | 441 | |
37959076 | 442 | @libs= ( split(/\Q$Config{path_sep}/,$LIBPATH), |
d8e0c3ba | 443 | map _tilde_expand($_), map { split /\Q$Config{path_sep}/} @libpaths ); |
2646b26c | 444 | if ($Config{loclibpth}) { |
6552acfe | 445 | push @libs, grep -d, split ' ', $Config{loclibpth}; |
2646b26c | 446 | } |
714cf158 | 447 | |
6552acfe | 448 | push @libs, grep -d, qw(/sw/lib), split(/ /, $Config{'libpth'}); |
714cf158 | 449 | push @libs, grep -d, split / /, $Config{libspath} if $Config{libspath}; |
2646b26c | 450 | if ($^O =~ /win32/i && $Config{cc} =~ /\bcl\b/i) { |
88a763e2 TC |
451 | push(@libs, split /;/, $ENV{LIB}) if exists $ENV{LIB}; |
452 | } | |
faa9b3e7 TC |
453 | if ($^O eq 'cygwin') { |
454 | push(@libs, '/usr/lib/w32api') if -d '/usr/lib/w32api'; | |
274cd32b | 455 | push(@incs, '/usr/include/w32api') if -d '/usr/include/w32api'; |
faa9b3e7 | 456 | } |
714cf158 TC |
457 | if ($Config{ldflags}) { |
458 | # some builds of perl put -Ldir into ldflags without putting it in | |
459 | # loclibpth, let's extract them | |
460 | my @hidden = grep -d, map { /^-L(.*)$/ ? ($1) : () } | |
461 | split ' ', $Config{ldflags}; | |
462 | push @libs, @hidden; | |
463 | # don't mark them as seen - EU::MM will remove any libraries | |
464 | # it can't find and it doesn't look for -L in ldflags | |
465 | #@deflib{@hidden} = @hidden; | |
466 | } | |
ed28c9cc | 467 | push @libs, grep -d, qw(/usr/local/lib); |
2646b26c | 468 | |
02d1d628 AMH |
469 | $formats{'jpeg'}={ |
470 | order=>'21', | |
471 | def=>'HAVE_LIBJPEG', | |
f8e9bc07 | 472 | inccheck=>sub { -e catfile($_[0], 'jpeglib.h') }, |
50ee6f9c | 473 | libcheck=>sub { $_[0] eq "libjpeg$aext" or $_ eq "libjpeg.$lext" }, |
02d1d628 AMH |
474 | libfiles=>'-ljpeg', |
475 | objfiles=>'jpeg.o', | |
476 | docs=>q{ | |
477 | In order to use jpeg with this module you need to have libjpeg | |
478 | installed on your computer} | |
479 | }; | |
480 | ||
481 | $formats{'tiff'}={ | |
482 | order=>'23', | |
483 | def=>'HAVE_LIBTIFF', | |
f8e9bc07 | 484 | inccheck=>sub { -e catfile($_[0], 'tiffio.h') }, |
76c8a0a4 | 485 | libcheck=>sub { $_[0] eq "libtiff$aext" or $_ eq "libtiff.$lext" }, |
02d1d628 AMH |
486 | libfiles=>'-ltiff', |
487 | objfiles=>'tiff.o', | |
488 | docs=>q{ | |
489 | In order to use tiff with this module you need to have libtiff | |
490 | installed on your computer} | |
491 | }; | |
492 | ||
493 | $formats{'png'}={ | |
494 | order=>'22', | |
495 | def=>'HAVE_LIBPNG', | |
f8e9bc07 | 496 | inccheck=>sub { -e catfile($_[0], 'png.h') }, |
88a763e2 | 497 | libcheck=>sub { $_[0] eq "libpng$aext" or $_[0] eq "libpng.$lext" }, |
64ddd21f | 498 | libfiles=>$^O eq 'MSWin32' ? '-lpng -lzlib' : '-lpng -lz', |
02d1d628 AMH |
499 | objfiles=>'png.o', |
500 | docs=>q{ | |
501 | Png stands for Portable Network Graphics and is intended as | |
502 | a replacement for gif on the web. It is patent free and | |
07ea6c21 TC |
503 | is recommended by the w3c, you need libpng to use these formats}, |
504 | code => \&png_probe, | |
02d1d628 AMH |
505 | }; |
506 | ||
507 | $formats{'gif'}={ | |
508 | order=>'20', | |
509 | def=>'HAVE_LIBGIF', | |
f8e9bc07 | 510 | inccheck=>sub { -e catfile($_[0], 'gif_lib.h') }, |
e02451e0 | 511 | libcheck=>sub { $_[0] eq "libgif$aext" or $_[0] eq "libgif.$lext" }, |
02d1d628 AMH |
512 | libfiles=>'-lgif', |
513 | objfiles=>'gif.o', | |
514 | docs=>q{ | |
515 | gif is the de facto standard for webgraphics at the moment, | |
516 | it does have some patent problems. If you have giflib and | |
517 | are not in violation with the unisys patent you should use | |
518 | this instead of the 'ungif' option. Note that they cannot | |
519 | be in use at the same time} | |
520 | }; | |
521 | ||
522 | $formats{'ungif'}={ | |
523 | order=>'21', | |
524 | def=>'HAVE_LIBGIF', | |
f8e9bc07 | 525 | inccheck=>sub { -e catfile($_[0], 'gif_lib.h') }, |
e02451e0 | 526 | libcheck=>sub { $_[0] eq "libungif$aext" or $_[0] eq "libungif.$lext" }, |
02d1d628 AMH |
527 | libfiles=>'-lungif', |
528 | objfiles=>'gif.o', | |
529 | docs=>q{ | |
530 | gif is the de facto standard for webgraphics at the moment, | |
531 | it does have some patent problems. If you have libungif and | |
532 | want to create images free from LZW patented compression you | |
533 | should use this option instead of the 'gif' option} | |
534 | }; | |
535 | ||
536 | $formats{'T1-fonts'}={ | |
537 | order=>'30', | |
538 | def=>'HAVE_LIBT1', | |
f8e9bc07 | 539 | inccheck=>sub { -e catfile($_[0], 't1lib.h') }, |
faa9b3e7 | 540 | libcheck=>sub { $_[0] eq "libt1$aext" or $_[0] eq "libt1.$lext" }, |
02d1d628 AMH |
541 | libfiles=>'-lt1', |
542 | objfiles=>'', | |
543 | docs=>q{ | |
544 | postscript t1 fonts are scalable fonts. They can include | |
545 | ligatures and kerning information and generally yield good | |
546 | visual quality. We depend on libt1 to rasterize the fonts | |
547 | for use in images.} | |
548 | }; | |
549 | ||
f8e9bc07 TC |
550 | $formats{'TT-fonts'}= |
551 | { | |
552 | order=>'31', | |
553 | def=>'HAVE_LIBTT', | |
554 | inccheck=>sub { -e catfile($_[0], 'freetype.h') | |
555 | && !-e catfile($_[0], 'fterrors.h') }, | |
556 | libcheck=>sub { $_[0] eq "libttf$aext" or $_[0] eq "libttf.$lext" }, | |
557 | libfiles=>'-lttf', | |
558 | objfiles=>'', | |
714cf158 | 559 | code => \&freetype1_probe, |
f8e9bc07 TC |
560 | docs=>q{ |
561 | Truetype fonts are scalable fonts. They can include | |
562 | kerning and hinting information and generally yield good | |
563 | visual quality esp on low resultions. The freetype library is | |
564 | used to rasterize for us. The only drawback is that there | |
565 | are alot of badly designed fonts out there.} | |
02d1d628 | 566 | }; |
faa9b3e7 TC |
567 | $formats{'w32'} = { |
568 | order=>40, | |
569 | def=>'HAVE_WIN32', | |
f8e9bc07 | 570 | inccheck=>sub { -e catfile($_[0], 'windows.h') }, |
faa9b3e7 TC |
571 | libcheck=>sub { lc $_[0] eq 'gdi32.lib' |
572 | || lc $_[0] eq 'libgdi32.a' }, | |
573 | libfiles=>$^O eq 'cygwin' ? '-lgdi32' : '', | |
574 | objfiles=>'win32.o', | |
575 | docs => <<DOCS | |
576 | Uses the Win32 GDI for rendering text. | |
577 | ||
578 | This currently only works on under normal Win32 and cygwin. | |
579 | DOCS | |
580 | }; | |
c6e870ae TC |
581 | $formats{'freetype2'} = |
582 | { | |
583 | order=>'29', | |
584 | def=>'HAVE_FT2', | |
585 | # we always use a probe function | |
586 | #inccheck=>sub { -e catfile($_[0], 'ft2build.h') }, | |
587 | #libcheck=>sub { $_[0] eq "libfreetype$aext" or $_[0] eq "libfreetype.$lext" }, | |
588 | libfiles=>'-lfreetype', | |
589 | objfiles=>'freetyp2.o', | |
590 | docs=><<DOCS, | |
faa9b3e7 | 591 | Freetype 2 supports both Truetype and Type 1 fonts, both of which are |
f8e9bc07 | 592 | scalable. It also supports a variety of other fonts. |
faa9b3e7 | 593 | DOCS |
c6e870ae TC |
594 | code => |
595 | [ | |
596 | \&freetype2_probe_ftconfig, | |
597 | \&freetype2_probe_scan | |
598 | ], | |
599 | }; | |
f7450478 | 600 | |
02d1d628 AMH |
601 | # Make fix indent |
602 | for (keys %formats) { $formats{$_}->{docs} =~ s/^\s+/ /mg; } | |
603 | } | |
604 | ||
605 | ||
606 | ||
607 | sub gen { | |
608 | my $V = $ENV{$_[0]}; | |
609 | defined($V) ? $V : ""; | |
610 | } | |
611 | ||
612 | ||
613 | # Get information from environment variables | |
614 | ||
615 | sub getenv { | |
616 | ||
617 | ($VERBOSE, | |
618 | $INCPATH, | |
619 | $LIBPATH, | |
620 | $NOLOG, | |
621 | $DEBUG_MALLOC, | |
622 | $MANUAL, | |
623 | $CFLAGS, | |
624 | $LFLAGS, | |
625 | $DFLAGS) = map { gen $_ } qw(IM_VERBOSE | |
626 | IM_INCPATH | |
627 | IM_LIBPATH | |
628 | IM_NOLOG | |
629 | IM_DEBUG_MALLOC | |
630 | IM_MANUAL | |
631 | IM_CFLAGS | |
632 | IM_LFLAGS | |
633 | IM_DFLAGS); | |
634 | ||
02d1d628 | 635 | } |
07ea6c21 | 636 | |
e11d297f TC |
637 | sub make_imconfig { |
638 | my ($defines) = @_; | |
639 | ||
640 | open CONFIG, "> imconfig.h" | |
641 | or die "Cannot create imconfig.h: $!\n"; | |
642 | print CONFIG <<EOS; | |
643 | /* This file is automatically generated by Makefile.PL. | |
644 | Don't edit this file, since any changes will be lost */ | |
645 | ||
646 | #ifndef IMAGER_IMCONFIG_H | |
647 | #define IMAGER_IMCONFIG_H | |
648 | EOS | |
649 | for my $define (@$defines) { | |
650 | if ($define->[2]) { | |
651 | print CONFIG "\n/*\n $define->[2]\n*/\n\n"; | |
652 | } | |
653 | print CONFIG "#define $define->[0] $define->[1]\n"; | |
654 | } | |
655 | print CONFIG "\n#endif\n"; | |
656 | close CONFIG; | |
657 | } | |
658 | ||
dbc33d8a TC |
659 | # use pkg-config to probe for libraries |
660 | # works around the junk that pkg-config dumps on FreeBSD | |
661 | sub _pkg_probe { | |
662 | my ($pkg) = @_; | |
663 | ||
664 | is_exe('pkg-config') or return; | |
665 | ||
666 | my $redir = $^O eq 'MSWin32' ? '' : '2>/dev/null'; | |
667 | ||
668 | !system("pkg-config $pkg --exists $redir"); | |
669 | } | |
670 | ||
714cf158 TC |
671 | # probes for freetype1 by scanning @incs for the includes and |
672 | # @libs for the libs. This is done separately because freetype's headers | |
673 | # are stored in a freetype or freetype1 directory under PREFIX/include. | |
674 | # | |
675 | # we could find the files with the existing mechanism, but it won't set | |
676 | # -I flags correctly. | |
677 | # | |
678 | # This could be extended to freetype2 too, but freetype-config catches | |
679 | # that | |
680 | sub freetype1_probe { | |
681 | my ($frm, $frmkey) = @_; | |
682 | ||
683 | my $found_inc; | |
684 | INCS: | |
685 | for my $inc (@incs) { | |
686 | for my $subdir (qw/freetype freetype1/) { | |
687 | my $path = File::Spec->catfile($inc, $subdir, 'freetype.h'); | |
688 | -e $path or next; | |
689 | $path = File::Spec->catfile($inc, $subdir, 'fterrors.h'); | |
690 | -e $path and next; | |
691 | ||
692 | $found_inc = File::Spec->catdir($inc, $subdir); | |
693 | last INCS; | |
694 | } | |
695 | } | |
696 | ||
697 | my $found_lib; | |
698 | LIBS: | |
699 | for my $lib (@libs) { | |
700 | my $a_path = File::Spec->catfile($lib, "libttf$aext"); | |
701 | my $l_path = File::Spec->catfile($lib, "libttf.$lext"); | |
702 | if (-e $a_path || -e $l_path) { | |
703 | $found_lib = $lib; | |
704 | last LIBS; | |
705 | } | |
706 | } | |
707 | ||
89d37182 | 708 | return unless $found_inc && $found_lib; |
714cf158 TC |
709 | printf("%10s: includes %s - libraries %s\n", $frmkey, |
710 | ($found_inc ? 'found' : 'not found'), | |
711 | ($found_lib ? 'found' : 'not found')); | |
714cf158 TC |
712 | |
713 | $frm->{cflags} = "-I$found_inc"; | |
714 | $frm->{libfiles} = "-lttf"; | |
715 | ||
716 | return 1; | |
717 | } | |
718 | ||
07ea6c21 | 719 | # probes for freetype2 by trying to run freetype-config |
c6e870ae | 720 | sub freetype2_probe_ftconfig { |
07ea6c21 TC |
721 | my ($frm, $frmkey) = @_; |
722 | ||
723 | is_exe('freetype-config') or return; | |
724 | ||
725 | my $cflags = `freetype-config --cflags` | |
726 | and !$? or return; | |
727 | chomp $cflags; | |
88e16587 | 728 | |
07ea6c21 TC |
729 | my $lflags = `freetype-config --libs` |
730 | and !$? or return; | |
731 | chomp $lflags; | |
88e16587 TC |
732 | |
733 | # before 2.1.5 freetype-config --cflags could output | |
734 | # the -I options in the wrong order, causing a conflict with | |
735 | # freetype1.x installed with the same --prefix | |
736 | # | |
737 | # can happen iff: | |
738 | # - both -Iprefix/include and -Iprefix/include/freetype2 are in cflags | |
739 | # in that order | |
740 | # - freetype 1.x headers are in prefix/include/freetype | |
741 | my @incdirs = map substr($_, 2), grep /^-I/, split ' ', $cflags; | |
742 | if (@incdirs == 2 | |
743 | && $incdirs[1] eq "$incdirs[0]/freetype2" | |
744 | && -e "$incdirs[0]/freetype/freetype.h" | |
745 | && -e "$incdirs[0]/freetype/fterrid.h") { | |
746 | print "** freetype-config provided -I options out of order, correcting\n" | |
747 | if $VERBOSE; | |
748 | $cflags = join(' ', grep(!/-I/, split ' ', $cflags), | |
749 | map "-I$_", reverse @incdirs); | |
750 | } | |
751 | $frm->{cflags} = $cflags; | |
a8395b42 | 752 | $frm->{lflags} = $lflags; |
07ea6c21 TC |
753 | |
754 | printf "%10s: configured via freetype-config\n", $frmkey; | |
755 | ||
756 | return 1; | |
757 | } | |
758 | ||
c6e870ae TC |
759 | # attempt to probe for freetype2 by scanning directories |
760 | # we can't use the normal scan since we need to find the directory | |
761 | # containing most of the includes | |
762 | sub freetype2_probe_scan { | |
763 | my ($frm, $frmkey) = @_; | |
764 | ||
765 | my $found_inc; | |
766 | my $found_inc2; | |
767 | INCS: | |
768 | for my $inc (@incs) { | |
769 | my $path = File::Spec->catfile($inc, 'ft2build.h'); | |
770 | -e $path or next; | |
771 | ||
c6e870ae TC |
772 | # try to find what it's including |
773 | my $ftheader; | |
774 | open FT2BUILD, "< $path" | |
775 | or next; | |
c6e870ae TC |
776 | while (<FT2BUILD>) { |
777 | if (m!^\s*\#\s*include\s+<([\w/.]+)>! | |
778 | || m!^\s*\#\s*include\s+"([\w/.]+)"!) { | |
c6e870ae TC |
779 | $ftheader = $1; |
780 | last; | |
781 | } | |
782 | } | |
783 | close FT2BUILD; | |
784 | $ftheader | |
785 | or next; | |
c6e870ae TC |
786 | # non-Unix installs put this directly under the same directory in |
787 | # theory | |
788 | if (-e File::Spec->catfile($inc, $ftheader)) { | |
789 | $found_inc = $inc; | |
790 | last INCS; | |
791 | } | |
792 | for my $subdir (qw/freetype2 freetype/) { | |
793 | $path = File::Spec->catfile($inc, $subdir, 'fterrors.h'); | |
794 | -e $path and next; | |
795 | ||
796 | $found_inc = $inc; | |
797 | $found_inc2 = File::Spec->catdir($inc, $subdir); | |
798 | last INCS; | |
799 | } | |
800 | } | |
801 | ||
802 | my $found_lib; | |
803 | LIBS: | |
804 | for my $lib (@libs) { | |
805 | my $a_path = File::Spec->catfile($lib, "libfreetype$aext"); | |
806 | my $l_path = File::Spec->catfile($lib, "libfreetype.$lext"); | |
807 | if (-e $a_path || -e $l_path) { | |
808 | $found_lib = $lib; | |
809 | last LIBS; | |
810 | } | |
811 | } | |
812 | ||
813 | printf("%10s: includes %s - libraries %s\n", $frmkey, | |
814 | ($found_inc ? 'found' : 'not found'), | |
815 | ($found_lib ? 'found' : 'not found')); | |
816 | ||
817 | return unless $found_inc && $found_lib; | |
818 | ||
6c2b7cf1 TC |
819 | $frm->{cflags} = _make_I($found_inc); |
820 | $frm->{cflags} .= " " . _make_I($found_inc2) if $found_inc2; | |
c6e870ae TC |
821 | $frm->{libfiles} = "-lfreetype"; |
822 | ||
823 | return 1; | |
824 | } | |
825 | ||
6c2b7cf1 TC |
826 | sub _make_I { |
827 | my ($inc_dir) = @_; | |
828 | ||
829 | $definc{$inc_dir} | |
e1fe2094 | 830 | and return ''; |
6c2b7cf1 TC |
831 | |
832 | $inc_dir =~ / / ? qq!-I"$inc_dir"! : "-I$inc_dir"; | |
833 | } | |
834 | ||
07ea6c21 TC |
835 | # probes for libpng via pkg-config |
836 | sub png_probe { | |
837 | my ($frm, $frmkey) = @_; | |
838 | ||
839 | is_exe('pkg-config') or return; | |
840 | ||
07ea6c21 TC |
841 | my $config; |
842 | for my $check_conf (qw(libpng libpng12 libpng10)) { | |
dbc33d8a | 843 | if (_pkg_probe($check_conf)) { |
07ea6c21 TC |
844 | $config = $check_conf; |
845 | last; | |
846 | } | |
847 | } | |
848 | $config or return; | |
849 | ||
dbc33d8a TC |
850 | my $cflags = `pkg-config $config --cflags` |
851 | and !$? or return; | |
852 | ||
07ea6c21 TC |
853 | my $lflags = `pkg-config $config --libs` |
854 | and !$? or return; | |
855 | ||
856 | chomp $cflags; | |
857 | chomp $lflags; | |
858 | $frm->{cflags} = $cflags; | |
a8395b42 | 859 | $frm->{lflags} = $lflags; |
07ea6c21 TC |
860 | |
861 | printf "%10s: configured via `pkg-config $config ...`\n", $frmkey; | |
862 | ||
863 | return 1; | |
864 | } | |
865 | ||
866 | sub catfile { | |
867 | return File::Spec->catfile(@_); | |
868 | } | |
869 | ||
870 | sub is_exe { | |
871 | my ($name) = @_; | |
872 | ||
3e6d8b86 TC |
873 | my @exe_suffix = $Config{_exe}; |
874 | if ($^O eq 'MSWin32') { | |
875 | push @exe_suffix, qw/.bat .cmd/; | |
876 | } | |
877 | ||
07ea6c21 | 878 | for my $dir (File::Spec->path) { |
3e6d8b86 TC |
879 | for my $suffix (@exe_suffix) { |
880 | -x catfile($dir, "$name$suffix") | |
881 | and return 1; | |
882 | } | |
07ea6c21 TC |
883 | } |
884 | ||
885 | return; | |
886 | } | |
37959076 TC |
887 | |
888 | sub usage { | |
889 | print STDERR <<EOS; | |
274cd32b TC |
890 | Usage: $0 [--enable feature1,feature2,...] [other options] |
891 | $0 [--disable feature1,feature2,...] [other options] | |
37959076 TC |
892 | $0 --help |
893 | Possible feature names are: | |
894 | png gif ungif jpeg tiff T1-fonts TT-fonts freetype2 | |
274cd32b TC |
895 | Other options: |
896 | --verbose | -v | |
897 | Verbose library probing (or set IM_VERBOSE in the environment) | |
898 | --nolog | |
899 | Disable logging (or set IM_NOLOG in the environment) | |
900 | --incpath dir | |
901 | Add to the include search path | |
902 | --libpath dir | |
903 | Add to the library search path | |
37959076 TC |
904 | EOS |
905 | exit 1; | |
906 | ||
907 | } | |
92bda632 TC |
908 | |
909 | # generate the PM MM argument | |
910 | # I'd prefer to modify the public version, but there doesn't seem to be | |
911 | # a public API to do that | |
912 | sub gen_PM { | |
913 | my %pm; | |
914 | my $instbase = '$(INST_LIBDIR)'; | |
915 | ||
916 | # first the basics, .pm and .pod files | |
917 | $pm{"Imager.pm"} = "$instbase/Imager.pm"; | |
918 | ||
919 | my $mani = maniread(); | |
920 | ||
921 | for my $filename (keys %$mani) { | |
922 | if ($filename =~ m!^lib/! && $filename =~ /\.(pm|pod)$/) { | |
923 | (my $work = $filename) =~ s/^lib//; | |
924 | $pm{$filename} = $instbase . $work; | |
925 | } | |
926 | } | |
927 | ||
928 | # need the typemap | |
929 | $pm{typemap} = $instbase . '/Imager/typemap'; | |
930 | ||
931 | # and the core headers | |
932 | for my $filename (keys %$mani) { | |
933 | if ($filename =~ /^\w+\.h$/) { | |
934 | $pm{$filename} = $instbase . '/Imager/include/' . $filename; | |
935 | } | |
936 | } | |
937 | ||
938 | # and the generated header | |
939 | $pm{"imconfig.h"} = $instbase . '/Imager/include/imconfig.h'; | |
940 | ||
941 | \%pm; | |
942 | } | |
135d30e3 TC |
943 | |
944 | sub make_metafile { | |
945 | my ($opts) = @_; | |
946 | ||
947 | # extract the version | |
948 | my $version = MM->parse_version($opts->{VERSION_FROM}) | |
949 | or die "Could not extract version number from $opts->{VERSION_FROM}\n"; | |
950 | ||
ed28c9cc TC |
951 | # we don't set this on older EU::MM and it corrupts META.yml |
952 | # so don't generate it | |
953 | return unless $opts->{AUTHOR}; | |
954 | ||
135d30e3 TC |
955 | my $meta = <<YAML; |
956 | --- #YAML:1.0 | |
957 | name: $opts->{NAME} | |
958 | version: $version | |
959 | version_from: $opts->{VERSION_FROM} | |
3b115720 TC |
960 | author: |
961 | YAML | |
962 | for my $author (split /,\s*/, $opts->{AUTHOR}) { | |
963 | $meta .= " - $author\n"; | |
964 | } | |
965 | $meta .= <<YAML; | |
135d30e3 TC |
966 | abstract: $opts->{ABSTRACT} |
967 | installdirs: site | |
968 | YAML | |
969 | if (keys %{$Recommends{$opts->{NAME}}}) { | |
970 | $meta .= "recommends:\n"; | |
971 | while (my ($module, $version) = each %{$Recommends{$opts->{NAME}}}) { | |
972 | $meta .= " $module: $version\n"; | |
973 | } | |
974 | } | |
867acf5b TC |
975 | if ($opts->{PREREQ_PM}) { |
976 | $meta .= "requires:\n"; | |
977 | while (my ($module, $version) = each %{$opts->{PREREQ_PM}}) { | |
9a6ab99c TC |
978 | $meta .= " $module: $version\n"; |
979 | } | |
980 | } | |
135d30e3 TC |
981 | $meta .= <<YAML; |
982 | license: perl | |
983 | dynamic_config: 1 | |
984 | distribution_type: module | |
28ae9195 TC |
985 | meta-spec: |
986 | version: 1.3 | |
987 | url: http://module-build.sourceforge.net/META-spec-v1.3.html | |
135d30e3 TC |
988 | generated_by: $opts->{NAME} version $version |
989 | YAML | |
990 | my $save_meta; | |
991 | if (open META, "< META.yml") { | |
992 | my $old_meta = do { local $/; <META> }; | |
993 | close META; | |
994 | ||
995 | $save_meta = $old_meta ne $meta; | |
996 | } | |
997 | else { | |
998 | ++$save_meta; | |
999 | } | |
1000 | if ($save_meta) { | |
1001 | print "Updating META.yml\n"; | |
1002 | open META, "> META.yml" or die "Cannot create META.yml: $!"; | |
1003 | print META $meta; | |
1004 | close META; | |
1005 | } | |
1006 | } | |
ef99ecfc | 1007 | |
d8e0c3ba TC |
1008 | my $home; |
1009 | sub _tilde_expand { | |
1010 | my ($path) = @_; | |
1011 | ||
1012 | if ($path =~ m!^~[/\\]!) { | |
1013 | defined $home or $home = $ENV{HOME}; | |
1014 | if (!defined $home && $^O eq 'MSWin32' | |
1015 | && defined $ENV{HOMEDRIVE} && defined $ENV{HOMEPATH}) { | |
1016 | $home = $ENV{HOMEDRIVE} . $ENV{HOMEPATH}; | |
1017 | } | |
1018 | unless (defined $home) { | |
1019 | $home = eval { (getpwuid($<))[7] }; | |
1020 | } | |
1021 | defined $home or die "You supplied $path, but I can't find your home directory\n"; | |
1022 | $path =~ s/^~//; | |
1023 | $path = File::Spec->catdir($home, $path); | |
1024 | } | |
1025 | ||
1026 | $path; | |
1027 | } | |
1028 | ||
678a9a65 TC |
1029 | # This isn't a module, but some broken tools, like |
1030 | # Module::Depends::Instrusive insist on treating it like one. | |
1031 | # | |
1032 | # http://rt.cpan.org/Public/Bug/Display.html?id=21229 | |
1033 | ||
1034 | 1; |