On May 14, 2007, at 10:18 AM, cfaust-dougot wrote:

Hi All,

I'm trying to remove libapreq2 via "make clean" without a whole lot of success. Below is what I get back from "make clean" (and Request.so still exists afterwards)

Any ideas? The long story is I decided to run the Ubuntu update to bring one of our dev servers up to date. Now I keep getting an error with Request.so and I'm thinking it might have something to do with the fact that I installed libapreq2 manually (as Ubuntu didn't have the lastest version at the time) and the update installed a latter version. So I'm trying to remove it all and reinstall the Ubuntu version, I've even gone as far as uninstall Apache2,mod_perl, libapreq etc from Ubuntu and then running the make clean, but Request.so is still in there.

Ths is the error I get no matter what is installed or uninstalled, if that makes any difference

Can't load '/usr/local/lib/perl/5.8.8/auto/APR/Request/Request.so' for module APR::Request: libaprutil-0.so.0: cannot open shared object file: No such file or directory at /usr/lib/perl/5.8/ DynaLoader.pm line 225

AFAIK , libapreq2 will only install

        mod_apreq2.a
        mod_apreq2.la
        mod_apreq2.so

in the modules dir of apache2 that its configured against ( on my systems, thats /usr/local/apache2 ) , and the perl docs/libs . there shoudln't ever be a physical Request.so file

That error looks like your code is creating an APR::Request object, but you haven't had 'use APR::Request' in your code yet. that kind of error tends to create messages like that.

I'd try just tossing in a use line before that error gets thrown, and see if it fixes things.



// Jonathan Vanasco

| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| SyndiClick.com
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|      FindMeOn.com - The cure for Multiple Web Personality Disorder
|      Web Identity Management and 3D Social Networking
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|      RoadSound.com - Tools For Bands, Stuff For Fans
|      Collaborative Online Management And Syndication Tools
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


Reply via email to