3 use ExtUtils::MakeMaker;
7 my $verbose = $ENV{IM_VERBOSE};
11 GetOptions("incpath=s", \@incpaths,
12 "libpath=s" => \@libpaths,
13 "verbose|v" => \$verbose);
18 my $MM_ver = eval $ExtUtils::MakeMaker::VERSION;
22 NAME => 'Imager::Font::FT2',
23 VERSION_FROM => 'FT2.pm',
24 OBJECT => 'FT2.o freetyp2.o',
25 clean => { FILES => 'testout' },
29 if ($BUILDING_IMAGER) {
31 unshift @INC, "../lib";
35 print "FreeType 2: building independently\n";
36 require Imager::ExtUtils;
37 push @inc, Imager::ExtUtils->includes;
38 $opts{TYPEMAPS} = [ Imager::ExtUtils->typemap ];
40 # Imager required configure through use
41 my @Imager_req = ( Imager => "0.95" );
42 if ($MM_ver >= 6.46) {
52 "Test::More" => "0.47",
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",
64 'Scalar::Util' => 1.00,
70 require Imager::Probe;
75 code => \&freetype2_probe_ftconfig,
77 sub { -e File::Spec->catfile($_[0], "freetype/ftbitmap.h") },
78 libbase => "freetype",
79 testcode => _ft2_test_code(),
80 testcodeheaders => [ "stdio.h", "string.h", "ft2build.h" ],
81 testcodeprologue => _ft2_test_code_prologue(),
82 incpath => \@incpaths,
83 libpath => \@libpaths,
87 incsuffix => "freetype2",
90 incsuffix => "freetype",
96 my $probe_res = Imager::Probe->probe(\%probe);
98 $IMAGER_LIBS{FT2} = 1;
100 push @inc, $probe_res->{INC};
101 $opts{LIBS} = $probe_res->{LIBS};
102 $opts{DEFINE} = $probe_res->{DEFINE};
104 $opts{LDDLFLAGS} = $probe_res->{LDDLFLAGS}
105 if $probe_res->{LDDLFLAGS};
107 if ($MM_ver > 6.06) {
108 $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
109 $opts{ABSTRACT} = 'FreeType 2 font driver for Imager';
112 WriteMakefile(%opts);
115 $IMAGER_LIBS{FT2} = 0;
117 if ($BUILDING_IMAGER) {
118 ExtUtils::MakeMaker::WriteEmptyMakefile(%opts);
122 die "OS unsupported: FreeType 2 headers/libraries not found\n";
128 FT_Library library = 0;
131 error = FT_Init_FreeType(&library);
133 fprintf(stderr, "FreeType 2: cannot initialize library: %d\n", error);
136 error = FT_New_Face(library, "fontfiles/dodge.ttf", 0, &face);
138 fprintf(stderr, "FreeType 2: cannot load font: %d\n", error);
145 sub _ft2_test_code_prologue {
147 #include FT_FREETYPE_H
155 my @exe_suffix = $Config{_exe};
156 if ($^O eq 'MSWin32') {
157 push @exe_suffix, qw/.bat .cmd/;
159 elsif ($^O eq 'cygwin') {
160 push @exe_suffix, "";
163 for my $dir (File::Spec->path) {
164 for my $suffix (@exe_suffix) {
165 -x File::Spec->catfile($dir, "$name$suffix")
173 # probes for freetype2 by trying to run freetype-config
174 sub freetype2_probe_ftconfig {
177 is_exe('freetype-config') or return;
179 my $cflags = `freetype-config --cflags`
183 my $lflags = `freetype-config --libs`
187 # before 2.1.5 freetype-config --cflags could output
188 # the -I options in the wrong order, causing a conflict with
189 # freetype1.x installed with the same --prefix
192 # - both -Iprefix/include and -Iprefix/include/freetype2 are in cflags
194 # - freetype 1.x headers are in prefix/include/freetype
195 my @incdirs = map substr($_, 2), grep /^-I/, split ' ', $cflags;
197 && $incdirs[1] eq "$incdirs[0]/freetype2"
198 && -e "$incdirs[0]/freetype/freetype.h"
199 && -e "$incdirs[0]/freetype/fterrid.h") {
200 print "** freetype-config provided -I options out of order, correcting\n"
202 $cflags = join(' ', grep(!/-I/, split ' ', $cflags),
203 map "-I$_", reverse @incdirs);
206 print "$req->{name}: configured via freetype-config\n";