Author: bojan
Date: Wed Jun  4 17:42:11 2008
New Revision: 663428

URL: http://svn.apache.org/viewvc?rev=663428&view=rev
Log:
Backport r663425 from the trunk.
Newer version of autoconf may deliver different config.status file.

Modified:
    httpd/apreq/branches/v2_10/glue/perl/Makefile.PL

Modified: httpd/apreq/branches/v2_10/glue/perl/Makefile.PL
URL: 
http://svn.apache.org/viewvc/httpd/apreq/branches/v2_10/glue/perl/Makefile.PL?rev=663428&r1=663427&r2=663428&view=diff
==============================================================================
--- httpd/apreq/branches/v2_10/glue/perl/Makefile.PL (original)
+++ httpd/apreq/branches/v2_10/glue/perl/Makefile.PL Wed Jun  4 17:42:11 2008
@@ -64,9 +64,11 @@
 else {
     slurp my $config => "$base_dir/config.status";
     $config =~ /^s,[EMAIL PROTECTED]@,([^,]+)/m or
+    $config =~ /^S\["APACHE2_INCLUDES"\]="([^"]+)/m or
         die "Can't find apache include directory";
     $apache_includes = $1;
     $config =~ /^s,[EMAIL PROTECTED]@,([^,]+)/m or
+    $config =~ /^S\["APR_INCLUDES"\]="([^"]+)/m or
         die "Can't find apache include directory";
     $apache_includes .= " $1";
 
@@ -81,10 +83,12 @@
     $apr_libs ="";
 
     $config =~ m/^s,[EMAIL PROTECTED]@,([^,]+)/m or
+    $config =~ m/^S\["APREQ_LIBNAME"\]="([^"]+)/m or
         die "Can't find apreq libname";
     $apreq_libname = $1;
 
     $config =~ m/^s,[EMAIL PROTECTED]@,([^,]+)/m or
+    $config =~ m/^S\["PACKAGE_VERSION"\]="([^"]+)/m or
         die "Can't find package version";
     $version = $1;
 


Reply via email to