Author: jkaluza
Date: Wed Feb 20 09:04:57 2013
New Revision: 1448043
URL: http://svn.apache.org/r1448043
Log:
* xs/APR/APR/Makefile.PL: Link against aprutil-1. This is workaround
for Apache2:Build issue.
Modified:
perl/modperl/branches/httpd24/xs/APR/APR/Makefile.PL
Modified: perl/modperl/branches/httpd24/xs/APR/APR/Makefile.PL
URL:
http://svn.apache.org/viewvc/perl/modperl/branches/httpd24/xs/APR/APR/Makefile.PL?rev=1448043&r1=1448042&r2=1448043&view=diff
==============================================================================
--- perl/modperl/branches/httpd24/xs/APR/APR/Makefile.PL (original)
+++ perl/modperl/branches/httpd24/xs/APR/APR/Makefile.PL Wed Feb 20 09:04:57
2013
@@ -66,6 +66,8 @@ if (SOLARIS && $libs) {
$libs =~ s{-R\S+}{}g;
}
+# FIXME: This should be done automatically somewhere in Apache2::Build
+$libs .= qq{ -laprutil-1 };
$args{LIBS} = [$libs] if $libs;
my $srcdir = '../../../src/modules/perl';