]> git.imager.perl.org - imager.git/blob - TIFF/Makefile.PL
f3804b21d7c1df028a3b3da58ea33107a08d53f9
[imager.git] / TIFF / Makefile.PL
1 #!perl -w
2 use strict;
3 use ExtUtils::MakeMaker;
4 use Getopt::Long;
5 use Config;
6
7 my $verbose = $ENV{IM_VERBOSE};
8 my @libpaths;
9 my @incpaths;
10
11 GetOptions("incpath=s", \@incpaths,
12            "libpath=s" => \@libpaths,
13            "verbose|v" => \$verbose);
14
15 our $BUILDING_IMAGER;
16 our %IMAGER_LIBS;
17
18 my $MM_ver = eval $ExtUtils::MakeMaker::VERSION;
19
20 my %opts = 
21   (
22    NAME => 'Imager::File::TIFF',
23    VERSION_FROM => 'TIFF.pm',
24    OBJECT => 'TIFF.o imtiff.o',
25    clean => { FILES => 'testout' },
26   );
27
28 my @inc;
29 if ($BUILDING_IMAGER) {
30   push @inc, "-I..";
31   unshift @INC, "../lib";
32 }
33 else {
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
41   my @Imager_req = ( Imager => "0.86" );
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/",
57         repository => "git://git.imager.perl.org/imager.git",
58         bugtracker => "http://rt.cpan.org/NoAuth/Bugs.html?Dist=Imager",
59        },
60       };
61     $opts{PREREQ_PM} =
62       {
63        @Imager_req,
64        XSLoader => 0,
65       };
66   }
67 }
68
69 require Imager::Probe;
70
71 my %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" ],
78    incpath => \@incpaths,
79    libpath => \@libpaths,
80   );
81
82 my $probe_res = Imager::Probe->probe(\%probe);
83 if ($probe_res) {
84   $IMAGER_LIBS{TIFF} = 1;
85
86   push @inc, $probe_res->{INC};
87   $opts{LIBS} = $probe_res->{LIBS};
88   $opts{DEFINE} = $probe_res->{DEFINE};
89   $opts{INC} = "@inc";
90
91   if ($MM_ver > 6.06) {
92     $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
93     $opts{ABSTRACT} = 'TIFF image file support for Imager';
94   }
95   
96   WriteMakefile(%opts);
97 }
98 else {
99   $IMAGER_LIBS{TIFF} = 0;
100
101   if ($BUILDING_IMAGER) {
102     ExtUtils::MakeMaker::WriteEmptyMakefile(%opts);
103   }
104   else {
105     # fail in good way
106     die "OS unsupported: TIFF libraries or headers not found\n";
107   }
108 }
109
110 sub _tiff_test_code {
111   return <<'CODE';
112 static const char ver_base[] = ", Version ";
113 static const size_t ver_base_len = sizeof(ver_base) - 1;
114 const char *ver_str = TIFFGetVersion();
115 const char *ver_start = strstr(ver_str, ver_base);
116 const char *ver_end;
117 int ver_len;
118
119 if (ver_start && ver_start[ver_base_len] >= '3' && ver_start[ver_base_len] < '9') {
120   ver_start += ver_base_len;
121   ver_end = ver_start;
122   while (*ver_end && (*ver_end == '.' || *ver_end >= '0' && *ver_end <= '9'))
123     ++ver_end;
124   ver_len = ver_end - ver_start;
125 }
126 else {
127   ver_start = "(unknown)";
128   ver_len = strlen(ver_start);
129 }
130
131 fprintf(stderr, "TIFF: library version %.*s, header version %ld\n", ver_len, ver_start, TIFFLIB_VERSION);
132 if (TIFFLIB_VERSION == 20090820) {
133   fprintf(stderr, "TIFF: this appears to be libtiff 3.9.0 which introduced a serious bug\n");
134   fprintf(stderr, "TIFF: please install 3.9.1\n");
135   return 1;
136 }
137 return 0;
138 CODE
139 }