Ok, still no luck.  Every dependancy has more dependancies all of which go
back and back to mod_perl 1 stuff already being in place....


My question is, can I download the Apache 1.3 source (don't "make" it), then
run the mod_perl 1 build to get all the pm files in place, then rebuild my
mod_perl 2 (against my installed Apache 2 source).

Also, we mentioned the whole "Bundle::Apache", will there be one of those
for Apache 2 and will it contain all the mod_perl 1 AND mod_perl 2 stuff to
allow running in Compat?

Thanks,
-Zac




----- Original Message -----
From: "Stas Bekman" <[EMAIL PROTECTED]>
To: "Zac Morris" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, June 25, 2002 12:26 PM
Subject: Re: Apache::DBI with mod_perl 2.0


> Zac Morris wrote:
> > Ahhh, ok more clarity. :)
> >
> > Forgive me if I'm just not doing my detective work in poking around for
> > documentation, but is there a doc that contains all the "kludges" or
> > "assumed modules" I need to already have in place?
>
> All the docs that we have now are at
> http://perl.apache.org/release/docs/index.html
>
> Most of the kludges are documented here:
> http://perl.apache.org/release/docs/2.0/user/compat/compat.html
>
> There are much more to come, but it'll take time. For now there is more
> than enough docs to get yourself started. If something is unclear or
> missing please shout aloud.
>
> > I'm assuming that the bulk of these things are handled via a CPAN
> > "Apache::bundle" install, and because mod_perl2 is still beta we don't
have
> > that in place yet?
>
> yes, but Apache::Module is an XS module using mod_perl 1.0's API, so it
> won't be in the Apache::Bundle for 2.0. This patch may go in soon:
>
> Index: lib/Apache/compat.pm
> ===================================================================
> RCS file: /home/cvs/modperl-2.0/lib/Apache/compat.pm,v
> retrieving revision 1.61
> diff -u -r1.61 compat.pm
> --- lib/Apache/compat.pm 4 Jun 2002 12:40:53 -0000 1.61
> +++ lib/Apache/compat.pm 25 Jun 2002 15:17:56 -0000
> @@ -91,7 +91,8 @@
>   }
>
>   sub module {
> -    require Apache::Module;
> +    eval { require Apache::Module };
> +    die "Please install Apache::Module from CPAN" if $@;
>       return Apache::Module::loaded($_[1]);
>   }
>
>
> > Thanks for all this info, learning more and more every day. :)
>
> cool :)
> __________________________________________________________________
> Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
> http://stason.org/     mod_perl Guide ---> http://perl.apache.org
> mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
> http://modperlbook.org http://apache.org   http://ticketmaster.com
>

Reply via email to