avoid re-entrancy into libtiff using the mutex api
[imager.git] / TIFF / Makefile.PL
CommitLineData
e5ee047b
TC
1#!perl -w
2use strict;
d24404be 3use ExtUtils::MakeMaker;
e5ee047b
TC
4use Getopt::Long;
5use Config;
6
7my $verbose = $ENV{IM_VERBOSE};
8my @libpaths;
9my @incpaths;
10
11GetOptions("incpath=s", \@incpaths,
12 "libpath=s" => \@libpaths,
13 "verbose|v" => \$verbose);
14
15our $BUILDING_IMAGER;
d97c8dbd 16our %IMAGER_LIBS;
e5ee047b
TC
17
18my $MM_ver = eval $ExtUtils::MakeMaker::VERSION;
19
20my %opts =
21 (
22 NAME => 'Imager::File::TIFF',
23 VERSION_FROM => 'TIFF.pm',
24 OBJECT => 'TIFF.o imtiff.o',
30160513 25 clean => { FILES => 'testout' },
e5ee047b
TC
26 );
27
28my @inc;
29if ($BUILDING_IMAGER) {
30 push @inc, "-I..";
31 unshift @INC, "../lib";
32}
33else {
34 unshift @INC, "inc";
35 print "TIFF: building independently\n";
36 require Imager::ExtUtils;
37 push @inc, Imager::ExtUtils->includes;
38 $opts{TYPEMAPS} = [ Imager::ExtUtils->typemap ];
39
40 # Imager required configure through use
4b2e59d3 41 my @Imager_req = ( Imager => "0.86" );
e5ee047b
TC
42 if ($MM_ver >= 6.46) {
43 $opts{META_MERGE} =
44 {
45 configure_requires =>
46 {
47 @Imager_req,
48 },
49 build_requires =>
50 {
51 @Imager_req,
52 "Test::More" => "0.47",
53 },
54 resources =>
55 {
56 homepage => "http://imager.perl.org/",
04b6f77c
TC
57 repository => "git://git.imager.perl.org/imager.git",
58 bugtracker => "http://rt.cpan.org/NoAuth/Bugs.html?Dist=Imager",
e5ee047b
TC
59 },
60 };
61 $opts{PREREQ_PM} =
62 {
63 @Imager_req,
a5919365 64 XSLoader => 0,
e5ee047b
TC
65 };
66 }
67}
68
69require Imager::Probe;
70
71my %probe =
72 (
73 name => "TIFF",
74 inccheck => sub { -e File::Spec->catfile($_[0], "tiffio.h") },
75 libbase => "tiff",
76 testcode => _tiff_test_code(),
77 testcodeheaders => [ "tiffio.h", "stdio.h", "string.h" ],
0c3c1180
TC
78 incpath => \@incpaths,
79 libpath => \@libpaths,
0987aae1 80 verbose => $verbose,
e5ee047b
TC
81 );
82
83my $probe_res = Imager::Probe->probe(\%probe);
84if ($probe_res) {
d97c8dbd
TC
85 $IMAGER_LIBS{TIFF} = 1;
86
e5ee047b
TC
87 push @inc, $probe_res->{INC};
88 $opts{LIBS} = $probe_res->{LIBS};
03e49392 89 $opts{DEFINE} = $probe_res->{DEFINE};
e5ee047b
TC
90 $opts{INC} = "@inc";
91
92 if ($MM_ver > 6.06) {
5b480b14 93 $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
e5ee047b
TC
94 $opts{ABSTRACT} = 'TIFF image file support for Imager';
95 }
96
97 WriteMakefile(%opts);
98}
99else {
d97c8dbd
TC
100 $IMAGER_LIBS{TIFF} = 0;
101
e5ee047b 102 if ($BUILDING_IMAGER) {
d24404be 103 ExtUtils::MakeMaker::WriteEmptyMakefile(%opts);
e5ee047b
TC
104 }
105 else {
106 # fail in good way
107 die "OS unsupported: TIFF libraries or headers not found\n";
108 }
109}
110
111sub _tiff_test_code {
112 return <<'CODE';
113static const char ver_base[] = ", Version ";
114static const size_t ver_base_len = sizeof(ver_base) - 1;
115const char *ver_str = TIFFGetVersion();
116const char *ver_start = strstr(ver_str, ver_base);
117const char *ver_end;
118int ver_len;
119
120if (ver_start && ver_start[ver_base_len] >= '3' && ver_start[ver_base_len] < '9') {
121 ver_start += ver_base_len;
122 ver_end = ver_start;
123 while (*ver_end && (*ver_end == '.' || *ver_end >= '0' && *ver_end <= '9'))
124 ++ver_end;
125 ver_len = ver_end - ver_start;
126}
127else {
128 ver_start = "(unknown)";
129 ver_len = strlen(ver_start);
130}
131
132fprintf(stderr, "TIFF: library version %.*s, header version %ld\n", ver_len, ver_start, TIFFLIB_VERSION);
133if (TIFFLIB_VERSION == 20090820) {
134 fprintf(stderr, "TIFF: this appears to be libtiff 3.9.0 which introduced a serious bug\n");
135 fprintf(stderr, "TIFF: please install 3.9.1\n");
136 return 1;
137}
138return 0;
139CODE
140}