]> git.imager.perl.org - imager-screenshot.git/blame - Makefile.PL
update to a less ancient Devel::CheckLib
[imager-screenshot.git] / Makefile.PL
CommitLineData
0ddb7051
TC
1#!perl -w
2use strict;
3use ExtUtils::MakeMaker;
37819a40 4use Imager 0.54;
0ddb7051
TC
5use Imager::ExtUtils;
6use Config;
7use File::Spec;
574c4fe0 8use Getopt::Long;
47f35d89
TC
9use lib "inc";
10use Devel::CheckLib;
574c4fe0
TC
11
12my @incpaths; # places to look for headers
13my @libpaths; # places to look for libraries
14
15GetOptions("incpath=s", \@incpaths,
16 "libpath=s" => \@libpaths);
0ddb7051
TC
17
18my @objs = qw/Screenshot.o/;
19my @cflags;
20my @lflags;
bc99c241 21my @lddlflags;
8a7d6890
TC
22my %seen_incdir;
23my %seen_libdir;
0ddb7051 24my $X11_lib = $^O eq 'cygwin' ? 'X11.dll' : 'X11';
574c4fe0
TC
25if (find_header("X11/Xlib.h", "X11 header")
26 and find_lib($X11_lib, "X11 library")) {
0ddb7051
TC
27 push @objs, 'scx11.o';
28 push @cflags, '-DSS_X11';
29 push @lflags, '-l'.$X11_lib;
30 print "Found X11\n";
31}
574c4fe0 32if (find_header('windows.h', "Win32 header")
47f35d89
TC
33 && find_lib('gdi32', "Win32 library")
34 || check_lib(header => "windows.h",
35 lib => "gdi32",
36 title => "Win32")) {
6f00ec2f 37 push @objs, 'scwin32.o', 'svwin32.o';
0ddb7051
TC
38 push @cflags, '-DSS_WIN32';
39 if ($^O eq 'cygwin') {
40 push @lflags, '-L/usr/lib/w32api', '-lgdi32';
41 }
42 print "Found Win32\n";
43}
44
bc99c241 45if ($^O eq "darwin") {
0cc0b6d7 46 # this test is overly simple
bc99c241
TC
47 push @objs, "scdarwin.o";
48 push @cflags, "-DSS_DARWIN";
49 push @lddlflags, qw/-framework OpenGL -framework Cocoa/;
50 print "Found OS X\n";
51}
52
0ddb7051 53unless (@objs > 1) {
574c4fe0 54 die <<DEAD;
7f198d6e 55OS unsupported: Headers or libraries not found for a supported GUI
574c4fe0 56
7f198d6e 57Sorry, I can't find headers or libraries for a supported GUI
574c4fe0
TC
58You need to install development headers and libraries for your GUI
59For Win32: Platform SDK or a substitute
60For X11: X11 headers and libraries, eg. the libX11-dev package on Debian
bc99c241 61For OS X: Install Xcode
574c4fe0
TC
62
63DEAD
0ddb7051
TC
64}
65
66my %opts =
67 (
68 NAME => 'Imager::Screenshot',
69 VERSION_FROM => 'Screenshot.pm',
70 OBJECT => "@objs",
71 PREREQ_PM => {
0cc0b6d7 72 'Imager' => 0.69,
0ddb7051
TC
73 },
74 INC => Imager::ExtUtils->includes,
75 TYPEMAPS => [ Imager::ExtUtils->typemap ],
76 );
77
78$opts{LIBS} = "@lflags" if @lflags;
79$opts{INC} .= " @cflags" if @cflags;
80
bc99c241
TC
81if (@lddlflags) {
82 $opts{LDDLFLAGS} = $Config{lddlflags} . " @lddlflags";
83}
84
0cc0b6d7 85# avoid "... isn't numeric in numeric gt ..." warnings for dev versions
37819a40
TC
86my $eu_mm_version = eval $ExtUtils::MakeMaker::VERSION;
87if ($eu_mm_version > 6.06) {
0ddb7051
TC
88 $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
89 $opts{ABSTRACT} = 'Screen/Window capture to Imager images';
90}
91
37819a40
TC
92# LICENSE was introduced in 6.30_01, but Debian etch includes
93# (as of 2007/01/12) an ExtUtils::MakeMaker versioned 6.30_01 without
94# LICENSE support
54f11a66 95# EXTRA_META was also introduced in 6.30_01
37819a40 96if ($eu_mm_version > 6.3001) {
770c534e 97 $opts{LICENSE} = 'perl';
8cb7800a
TC
98}
99if ($eu_mm_version >= 6.46) {
100 $opts{META_MERGE} =
101 {
102 configure_requires =>
103 {
0cc0b6d7 104 Imager => "0.69"
8cb7800a
TC
105 },
106 build_requires =>
107 {
0cc0b6d7 108 Imager => "0.69",
8cb7800a
TC
109 "Test::More" => "0.47",
110 }
111 };
770c534e
TC
112}
113
0ddb7051
TC
114WriteMakefile(%opts);
115
116my @incs;
117sub header_search_path {
118 @incs and return @incs;
119
574c4fe0
TC
120 push @incs, map {; split /\Q$Config{path_sep}/ } @incpaths;
121 push @incs, split /\Q$Config{path_sep}/, $ENV{IM_INCPATH}
122 if defined $ENV{IM_INCPATH};
8a7d6890 123 push @incs, '/usr/include', '/usr/X11R6/include'
0ddb7051
TC
124 unless $^O eq 'MSWin32' && $Config{cc} =~ /\bcl\b/;
125 push @incs, split /\Q$Config{path_sep}/, $ENV{INCLUDE}
126 if $^O eq 'MSWin32' && $Config{cc} =~ /\bcl\b/ and $ENV{INCLUDE};
127 push @incs, split ' ', $Config{locincpth}
128 if $Config{locincpth};
129 push @incs, split /\Q$Config{path_sep}/, $Config{incpath}
130 if $Config{incpath};
131 push @incs, '/usr/include/w32api', '/usr/X11R6/include'
132 if $^O eq 'cygwin';
133
134 @incs = grep -d, @incs;
135
136 @incs;
137}
138
139my @libs;
140sub library_search_path {
141 @libs and return @libs;
142
574c4fe0
TC
143 push @libs, map {; split /\Q$Config{path_sep}/ } @libpaths;
144 push @incs, split /\Q$Config{path_sep}/, $ENV{IM_LIBPATH}
145 if defined $ENV{IM_LIBPATH};
8aca6763 146 push @libs, '/usr/lib', '/usr/X11R6/lib'
0ddb7051
TC
147 unless $^O eq 'MSWin32' && $Config{cc} =~ /\bcl\b/;
148 push @libs, split /\Q$Config{path_sep}/, $ENV{LIB}
149 if $^O eq 'MSWin32' && $Config{cc} =~ /\bcl\b/ and $ENV{LIB};
150 push @libs, split ' ', $Config{loclibpth}
151 if $Config{loclibpth};
152 push @libs, split /\Q$Config{path_sep}/, $Config{libpth}
153 if $Config{libpth};
154 push @libs, '/usr/lib/w32api', '/usr/X11R6/lib'
155 if $^O eq 'cygwin';
156
157 @libs = grep -d, @libs;
158
159 @libs;
160}
161
0ddb7051
TC
162sub _find_file {
163 my ($name, @where) = @_;
164
165 grep -f File::Spec->catfile($_, $name), @where;
166}
167
f3391324
TC
168sub _quote_spaces {
169 my $path = shift;
170
171 if ($path =~ / /) {
172 return qq("$path");
173 }
174
175 return $path;
176}
177
0ddb7051 178sub find_header {
574c4fe0 179 my ($name, $description) = @_;
8a7d6890
TC
180 my @found = _find_file($_[0], header_search_path());
181
182 if (@found) {
f3391324 183 push @cflags, _quote_spaces("-I$_") for grep !$seen_incdir{$_}, @found;
574c4fe0
TC
184 @seen_incdir{@found} = (1) x @found;
185 }
186 else {
187 print STDERR "Could not find $name ($description)\n";
8a7d6890
TC
188 }
189
190 @found;
0ddb7051
TC
191}
192
193sub find_lib {
574c4fe0 194 my ($name, $description) = shift;
0ddb7051 195 my @found;
574c4fe0 196 my $libname;
0ddb7051 197 if ($^O eq 'MSWin32' && $Config{_a} eq '.lib') {
574c4fe0 198 $libname = $name . $Config{_a};
91eba490 199 @found = _find_file($libname, library_search_path());
0ddb7051
TC
200 }
201 else {
574c4fe0 202 $libname = "lib" . $name . $Config{_a};
91eba490
TC
203 @found = _find_file($libname, library_search_path());
204 if (!@found && $Config{so}) {
205 $libname = "lib" . $name . "." . $Config{so};
206 @found = _find_file($libname, library_search_path());
207 }
0ddb7051
TC
208 }
209 if (@found) {
8b4e133f 210 push @lflags, _quote_spaces("-L$_") for grep !$seen_libdir{$_}, @found;
8a7d6890 211 @seen_libdir{@found} = (1) x @found;
0ddb7051 212 }
574c4fe0
TC
213 else {
214 print STDERR "Could not find $libname ($description)\n";
215 }
216
0ddb7051
TC
217 @found;
218}
47f35d89 219