Hey all,

I have a big app I'm moving from 1.99 to 2.0.2, and I'm banging my head against some simple things. In my old code, in order to get a simple group of key/value pairs, I'd do:

my $q = Apache::Request->new($r);
my %args = map { $_ => $q->param($_) } $q->param;

Has param been phased out, or is it a naming issue? I followed Boysenberry's thread, but even doing:

use APR::Request::Apache2 ();
my $r = shift;
my $apr = APR::Request::Apache2->handle( $r );

Gives me an error:
/libexec/ld-elf.so.1: /usr/local/lib/perl5/site_perl/5.8.5/mach/auto/ APR/Request/Apache2/Apache2.so: Undefined symbol "apreq_handle_apache2"

Should I go back to 1.99, or is there a compelling reason to inflict the pain of 2.0.2 on myself?

- ben

Reply via email to