fallback to defaults if pkg-config is not found
authorDobrica Pavlinusic <dpavlin@rot13.org>
Mon, 2 Jan 2006 23:40:24 +0000 (23:40 +0000)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Mon, 2 Jan 2006 23:40:24 +0000 (23:40 +0000)
git-svn-id: svn+ssh://llin/home/dpavlin/private/svn/fuse/perl-llin@31 6e4b0b00-1209-0410-87b2-b275959b5705

Makefile.PL

index b6ca8ea..4767fbc 100644 (file)
@@ -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
 );