From 8506646e8b632e9be720ebc6be6917bddebc3acb Mon Sep 17 00:00:00 2001 From: Daouda Lo Date: Fri, 22 Aug 2003 11:02:16 +0000 Subject: - use pkg-config --- USER/Makefile.PL | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'USER') diff --git a/USER/Makefile.PL b/USER/Makefile.PL index 528ff24..209af58 100644 --- a/USER/Makefile.PL +++ b/USER/Makefile.PL @@ -2,13 +2,17 @@ use ExtUtils::MakeMaker; $Verbose=1; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. +my $libs = "" . `pkg-config --libs libuser`; +chomp $libs; +$libs .= "-lpam_misc -lpam "; +print "\n\n\n\nI need to link with «$libs»\n\n\n\n\n\n"; WriteMakefile( 'NAME' => 'USER', 'VERSION_FROM' => 'USER.pm', 'OBJECT' => 'USER.o', # link all the C files too - 'LIBS' => ['-lgmodule-2.0 -lglib-2.0 -lgobject-2.0 -libpam_misc -libpam -lcrypt -luser'], # e.g., '-lm' + 'LIBS' => "\"$libs\"", # e.g., '-lm' 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' - 'INC' => '-I/usr/include/libuser -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include', # e.g., '-I. -I/usr/include/other' + 'INC' => "`pkg-config --cflags libuser`", # e.g., '-I. -I/usr/include/other' 'XSPROTOARG' => '-noprototypes', 'TYPEMAPS' => ['../perlobject.map' ], ); -- cgit v1.2.1