From: Dobrica Pavlinusic Date: Tue, 3 Jan 2006 15:42:57 +0000 (+0000) Subject: added -D_FILE_OFFSET_BITS=64 need for FreeBSD compilation X-Git-Tag: 0.07_3~5 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=fb261e3cc99c564ba57a4db84d982cac7e3a4737;hp=d8cefdf704d5c4662324a66c1f86b46e9a3e37d3;p=perl-fuse.git added -D_FILE_OFFSET_BITS=64 need for FreeBSD compilation git-svn-id: svn+ssh://llin/home/dpavlin/private/svn/fuse/perl-llin@60 6e4b0b00-1209-0410-87b2-b275959b5705 --- diff --git a/Makefile.PL b/Makefile.PL index 79eae10..8148d61 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,7 +2,7 @@ use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. -my $inc = `pkg-config --cflags` || '-I ../include'; +my $inc = `pkg-config --cflags` || '-I ../include -D_FILE_OFFSET_BITS=64'; my $obj = `pkg-config --libs fuse` || '-lfuse'; WriteMakefile(