You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ra...@apache.org on 2006/05/24 08:13:05 UTC

svn commit: r409078 - /perl/modperl/trunk/xs/APR/APR/Makefile.PL

Author: randyk
Date: Tue May 23 23:13:04 2006
New Revision: 409078

URL: http://svn.apache.org/viewvc?rev=409078&view=rev
Log:
For Win32, change regex expression to allow capture of apr and aprutil library names with numbers in their names.

Modified:
    perl/modperl/trunk/xs/APR/APR/Makefile.PL

Modified: perl/modperl/trunk/xs/APR/APR/Makefile.PL
URL: http://svn.apache.org/viewvc/perl/modperl/trunk/xs/APR/APR/Makefile.PL?rev=409078&r1=409077&r2=409078&view=diff
==============================================================================
--- perl/modperl/trunk/xs/APR/APR/Makefile.PL (original)
+++ perl/modperl/trunk/xs/APR/APR/Makefile.PL Tue May 23 23:13:04 2006
@@ -30,7 +30,7 @@
 
 if (WIN32) {
     $libs =~ s{/libpath:}{-L}g;
-    $libs =~ s{(\w+)\.lib}{-l$1}g;
+    $libs =~ s{(\S+)\.lib}{-l$1}g;
 }
 
 if (BUILD_APREXT) {