On Fri, 26 Jan 2001, Ken Williams wrote:
> With a freshly downloaded apache 1.3.14, I did "perl Makefile.PL
> EVERYTHING=1". First time through I got this:
ok, i see the problem (USE_APACI=1 hid it for me). patch below should
fix, you can also just run
perl -pi -e 's/PERL5LIB/PRIVLIB/g' apache_x.xx/src/modules/perl/Makefile
and re-run make && make test
thanks ken.
Index: src/modules/perl/Makefile
===================================================================
RCS file: /home/cvs/modperl/src/modules/perl/Makefile,v
retrieving revision 1.12
diff -u -r1.12 Makefile
--- src/modules/perl/Makefile 2000/12/23 02:23:09 1.12
+++ src/modules/perl/Makefile 2001/01/26 16:38:39
@@ -102,7 +102,7 @@
#APACHE_SSL =
PERL=/usr/bin/perl
PERL_STATIC_EXTS =
-PERL5LIB=`$(PERL) -MConfig -e 'print $$Config{privlibexp}'`
+PRIVLIB=`$(PERL) -MConfig -e 'print $$Config{privlibexp}'`
EXTUTILS_EMBED = $(PERL) -MExtUtils::Embed
#CONFIG_PM=-MConfig
CONFIG_PM='-MApache::ExtUtils=%Config'
@@ -129,7 +129,7 @@
$(XS_INIT)
.xs.c:
- $(PERL) $(PERL5LIB)/ExtUtils/xsubpp -typemap $(PERL5LIB)/ExtUtils/typemap
$*.xs > $@
+ $(PERL) $(PRIVLIB)/ExtUtils/xsubpp -typemap $(PRIVLIB)/ExtUtils/typemap $*.xs
+> $@
PERLSRC=mod_perl_opmask.c mod_perl.c perlxsi.c perl_config.c perl_util.c perlio.c
$(STATIC_SRC)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]