require at least fuse 2.5
[perl-fuse.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
3 # the contents of the Makefile that is written.
4
5 my $ver = `fusermount -V`;
6 $ver =~ s/^.*?version:\s+//;
7 if ($ver + 0 < 2.5) {
8         die "Fuse perl bindings need fuse version 2.5 or never\n";
9 } else {
10         warn "fuse version found: $ver\n";
11 }
12
13 my $inc = '-DFUSE_USE_VERSION=25 ' . `pkg-config --cflags fuse` || '-I ../include -D_FILE_OFFSET_BITS=64';
14 my $obj = `pkg-config --libs fuse` || '-lfuse';
15
16 WriteMakefile(
17     'NAME'              => 'Fuse',
18     'VERSION_FROM'      => 'Fuse.pm', # finds $VERSION
19     'PREREQ_PM'         => {}, # e.g., Module::Name => 1.1
20     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
21       (ABSTRACT_FROM => 'Fuse.pm', # retrieve abstract from module
22        AUTHOR     => 'Mark Glines <mark@glines.org>') : ()),
23     'LIBS'              => [''], # e.g., '-lm'
24     'DEFINE'            => '-g -ggdb', # e.g., '-DHAVE_SOMETHING'
25         # Insert -I. if you add *.h files later:
26     'INC'               => $inc, # e.g., '-I/usr/include/other'
27         # Un-comment this if you add C files to link with later:
28     'OBJECT'            => "$obj Fuse.o -lpthread", # link all the C files too
29 );
30
31 sub MY::postamble {
32     return <<'MAKE_MORE';
33
34 sf:
35         svn2cvs.pl file:///home/dpavlin/.svk/fuse/perl-llin :ext:dpavlin@cvs.sourceforge.net:/cvsroot/fuse perl
36
37 MAKE_MORE
38 };