On Thu, 6 Sep 2001, jean-frederic clere wrote:
> It fixes the problem I had, thanks - Do not forget to commit it -
I don't have commit access to httpd. Ryan will probably commit for me :)
> Stas Bekman wrote:
> >
> > On Thu, 6 Sep 2001, Ryan Bloom wrote:
> >
> > >
> > > I made the change to the way config_vars is created, and it needs to be
> > > this way for the --with-layout stuff to work correctly. We may be able to
> > > fix that problem, but we have a conflict between shell scripts and perl.
> > >
> > > We need to fix apxs to strip the ( ).
> >
> > Index: support/apxs.in
> > ===================================================================
> > RCS file: /home/cvspublic/httpd-2.0/support/apxs.in,v
> > retrieving revision 1.26
> > diff -u -r1.26 apxs.in
> > --- support/apxs.in 2001/08/30 23:18:39 1.26
> > +++ support/apxs.in 2001/09/06 15:17:07
> > @@ -245,6 +245,8 @@
> >
> > open IN, $file or die "cannot open $file: $!";
> > while (<IN>){
> > + # $(foo) => ${foo}
> > + s|\$\(([^)]+)\)|\${$1}|g;
> > if (/^\s*(.*?)\s*=\s*(.*)$/){
> > $rh_config->{$1} = $2;
> > }
> >
> > _____________________________________________________________________
> > Stas Bekman JAm_pH -- Just Another mod_perl Hacker
> > http://stason.org/ mod_perl Guide http://perl.apache.org/guide
> > mailto:[EMAIL PROTECTED] http://apachetoday.com http://eXtropia.com/
> > http://singlesheaven.com http://perl.apache.org http://perlmonth.com/
>
_____________________________________________________________________
Stas Bekman JAm_pH -- Just Another mod_perl Hacker
http://stason.org/ mod_perl Guide http://perl.apache.org/guide
mailto:[EMAIL PROTECTED] http://apachetoday.com http://eXtropia.com/
http://singlesheaven.com http://perl.apache.org http://perlmonth.com/