require at least fuse 2.5
authorDobrica Pavlinusic <dpavlin@rot13.org>
Tue, 23 May 2006 11:15:22 +0000 (11:15 +0000)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Tue, 23 May 2006 11:15:22 +0000 (11:15 +0000)
git-svn-id: svn+ssh://llin/home/dpavlin/private/svn/fuse/perl-llin@86 6e4b0b00-1209-0410-87b2-b275959b5705

Makefile.PL

index 68d67cd..42c99e4 100644 (file)
@@ -2,9 +2,17 @@ use ExtUtils::MakeMaker;
 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 # the contents of the Makefile that is written.
 
+my $ver = `fusermount -V`;
+$ver =~ s/^.*?version:\s+//;
+if ($ver + 0 < 2.5) {
+       die "Fuse perl bindings need fuse version 2.5 or never\n";
+} else {
+       warn "fuse version found: $ver\n";
+}
+
 my $inc = '-DFUSE_USE_VERSION=25 ' . `pkg-config --cflags fuse` || '-I ../include -D_FILE_OFFSET_BITS=64';
 my $obj = `pkg-config --libs fuse` || '-lfuse';
+
 WriteMakefile(
     'NAME'             => 'Fuse',
     'VERSION_FROM'     => 'Fuse.pm', # finds $VERSION