Can't get a mod_perl.so...

2003-09-04 Thread Rich Kosiba
I've read the documentation several times and searched the web, but can't find an answer to my problem. I can't get a mod_perl.so. I used several different configure combinations from what I had read in the documentation. What I am using right now is: perl Makefile.PL PREP_HTTPD=1 EVERYTHING=1

RE: Can't get a mod_perl.so...

2003-09-04 Thread Garrett Goebel
Title: RE: Can't get a mod_perl.so... Rich Kosiba wrote: I've read the documentation several times and searched the web, but can't find an answer to my problem. I can't get a mod_perl.so. I believe you are looking for libperl.so -- Garrett Goebel IS Development Specialist ScriptPro

Re: Can't get a mod_perl.so...

2003-09-04 Thread Geoffrey Young
I still don't have a mod_perl.so. There are no errors anywhere. I'm using mod_perl 1.28 source. I'm running Apache 1.3.26 on Linux 2.4.18 (Slackware 8). you only get a shared object file if you compile mod_perl as a DSO, which is not the default with mod_perl 1.28. to check whether mod_perl

Re: Can't get a mod_perl.so...

2003-09-04 Thread Rich Kosiba
> I've read the documentation several times and searched > the web, but can't find an answer to my problem. I > can't get a mod_perl.so. I believe you are looking for libperl.so Even so (pun intended)... I don't get a libperl.so anywhere. I was looking for any/all .so files among the sou

Re: Can't get a mod_perl.so...

2003-09-04 Thread Rich Kosiba
I still don't have a mod_perl.so. There are no errors anywhere. I'm using mod_perl 1.28 source. I'm running Apache 1.3.26 on Linux 2.4.18 (Slackware 8). you only get a shared object file if you compile mod_perl as a DSO, which is not the default with mod_perl 1.28. to check whether mod_perl is

Re: Can't get a mod_perl.so...

2003-09-04 Thread Geoffrey Young
perl Makefile.PL APACHE_SRC=../apache_1.3.26_modperl/ APACHE_PREFIX=/usr/local/apache EVERYTHING=1 USE_DSO=1 USE_APACI=1 APACI_ARGS='--enable-module=rewrite, --enable-module=info, --enable-module=expires, --disable-module=userdir' DO_HTTPD=1 when I use those options, I end up with

Re: Can't get a mod_perl.so...

2003-09-04 Thread Stas Bekman
Geoffrey Young wrote: perl Makefile.PL APACHE_SRC=../apache_1.3.26_modperl/ APACHE_PREFIX=/usr/local/apache EVERYTHING=1 USE_DSO=1 USE_APACI=1 APACI_ARGS='--enable-module=rewrite, --enable-module=info, --enable-module=expires, --disable-module=userdir' DO_HTTPD=1 when I use those options, I

Re: Can't get a mod_perl.so...

2003-09-04 Thread Rich Kosiba
On Thursday, September 4, 2003, at 09:23 PM, Stas Bekman wrote: perl Makefile.PL APACHE_SRC=../apache_1.3.26_modperl/ APACHE_PREFIX=/usr/local/apache EVERYTHING=1 USE_DSO=1 USE_APACI=1 APACI_ARGS='--enable-module=rewrite, --enable-module=info, --enable-module=expires, --disable-module=userdir'