From 34a3a382bf2047c9c31b57ae829752d4d7b6dfae Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Thu, 27 Oct 2005 16:03:27 +0000 Subject: MakeMaker cleanup --- grpmi/curl_download/Makefile.PL | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/grpmi/curl_download/Makefile.PL b/grpmi/curl_download/Makefile.PL index 47bc8ffc..cc1fc8bf 100644 --- a/grpmi/curl_download/Makefile.PL +++ b/grpmi/curl_download/Makefile.PL @@ -1,23 +1,15 @@ use ExtUtils::MakeMaker; -use Config; - - -system("curl-config --libs 2>/dev/null 1>/dev/null") == 0 - or - die_('CURL development environment seems to be missing (curl-config command reports an error)'); +my $libs = `curl-config --libs`; +$? == 0 or die "CURL development environment seems to be missing (curl-config command reports an error)\n"; +chomp $libs; WriteMakefile( 'NAME' => 'curl_download', - 'LIBS' => [ chomp_(`curl-config --libs`) ], + 'LIBS' => [ $libs ], 'VERSION_FROM' => 'curl_download.pm', # finds VERSION 'OBJECT' => 'curl_download.o', 'INC' => '-I.', 'OPTIMIZE' => '-O2 -Wall -Werror', 'MAKEFILE' => 'Makefile_c', ); - - - -sub chomp_ { my @l = map { my $l = $_; chomp $l; $l } @_; wantarray ? @l : $l[0] } -sub die_ { die "\n **ERROR**: @_\n\n" } -- cgit v1.2.1