:: Looks like we may have figured out the problem - it's 
:: related to largefile 
:: support and compiling mod_perl with apxs. I'll put out an 
:: RC3 shortly.

Yeah, as far as i remember i had some trouble during compiling
mod_perl: it stated that my apache was not compiled for largefiles
so i should turn this off for mod_perl (PERL_USELARGEFILES=0). And 
its right, i compiled mod_perl with apxs.

Below are my scripts to compile my stuff.

Good luck,
Murat

MODSSL 2.8.8 ------------------------------------------------------

./configure --with-apache= ... # everthing like in the INSTALL

make && make test && make install

APACHE 1.34 -------------------------------------------------------

#!/bin/sh
make clean
rm -r /usr/local/apache.old
rm -r /etc/httpd.old
mv /usr/local/apache /usr/local/apache.old
mv /etc/httpd /etc/httpd.old
mkdir /etc/httpd
mkdir /var/log/httpd
mkdir /var/www
mkdir /var/www/htdocs
mkdir /var/www/cache
chgrp nobody /var/www/cache
./configure --prefix=/usr/local/apache \
                --with-layout=Apache \
                --sysconfdir=/etc/httpd \
                --logfiledir=/var/log/httpd \
                --enable-module=all \
                --enable-shared=max \
                --server-uid=wwwrun \
                --server-gid=nobody \
                --disable-rule=EXPAT \
                --htdocsdir=/var/www/htdocs \
                --verbose
make

echo Use 'make install' to install apache. 

MODPERL 1.26 ------------------------------------------------------

#!/bin/sh

perl Makefile.PL NO_HTTPD=1 EVERYTHING=1 USE_APXS=1
WITH_APXS=/usr/local/apache/bin/apxs PERL_USELARGEFILES=0

echo Use 'make && make install' to install mod_perl.



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

Reply via email to