am having the following errors trying to compile apache with mod_perl

my mod perl configuration script looks like this

perl Makefile.PL \
        APACHE_SRC=/usr/local/src/apache_1.3.9 \
        NO_HTTPD=1 \
        PREP_HTTPD=1 \
        EVERYTHING=1

i answer yes when it asks about the src dir and no when it asks me if i want to build 
httpd.
then i do
make
make install

and everything seems to be ok

then i goto the apache dir and use this configure script

CC=cc \
./configure \
        --prefix=/usr/local/apache \
        --enable-rule=SHARED_CORE \
        --enable-module=so \
        --enable-module=auth_dbm \
        --enable-module=auth_db \
        --enable-module=rewrite \
        --enable-module=info \
        --activate-module=src/modules/jserv/mod_jserv \
        --activate-module=src/modules/php3/libphp3.a \
        --activate-module=src/modules/perl/libperl.a

again this goes smoothly. however when i run the final compile i get a bunch of errors 
that say
./libhttpd.so: undefined reference to `Perl_gv_fetchpv'. I have attached a copy of the 
output from  the make command so you can see the errors there. i figure i must be 
missing a lib flag or somehting if anyone could help that would be great. in addition 
to the undefined reference errors there also seems to be a few "File not found 
errors". so i don't know if they are contributing to the problem. 

redhat 5.2
perl 5.00503 compiled from source (all default options used)
apache 1.3.9

any help would be great thanks

Reply via email to