The wrong APR generation is being picked up now the httpd trunk has 
bumped to 2.3.x; here's a fix.  Actually perhaps a better fix would be 
to invert the logic; e.g. "m/20\d+/ ? 0 : 1"

--- lib/Apache2/Build.pm.orig   2005-07-19 09:44:18.000000000 +0100
+++ lib/Apache2/Build.pm        2005-07-19 09:44:20.000000000 +0100
@@ -1049,7 +1049,7 @@
 
 sub apr_generation {
     my($self) = @_;
-    return $self->httpd_version_as_int =~ m/21\d+/ ? 1 : 0;
+    return $self->httpd_version_as_int =~ m/2[1-9]\d+/ ? 1 : 0;
 }
 
 # returns an array of apr/apu linking flags (--link-ld --libs) if found


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to