From ad94df26bf3347d7c877794a3aab615614835836 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Mon, 2 Jan 2006 23:40:24 +0000 Subject: [PATCH] fallback to defaults if pkg-config is not found git-svn-id: svn+ssh://llin/home/dpavlin/private/svn/fuse/perl-llin@31 6e4b0b00-1209-0410-87b2-b275959b5705 --- Makefile.PL | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index b6ca8ea..4767fbc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,10 @@ 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 $obj = `pkg-config --libs fuse` || '-lfuse'; + WriteMakefile( 'NAME' => 'Fuse', 'VERSION_FROM' => 'Fuse.pm', # finds $VERSION @@ -11,7 +15,7 @@ WriteMakefile( 'LIBS' => [''], # e.g., '-lm' 'DEFINE' => '-g -ggdb', # e.g., '-DHAVE_SOMETHING' # Insert -I. if you add *.h files later: - 'INC' => `pkg-config --cflags` . '-I ../include', # e.g., '-I/usr/include/other' + 'INC' => $inc, # e.g., '-I/usr/include/other' # Un-comment this if you add C files to link with later: - 'OBJECT' => `pkg-config --libs fuse` . ' Fuse.o -lpthread', # link all the C files too + 'OBJECT' => "$obj Fuse.o -lpthread", # link all the C files too ); -- 2.20.1