On Sun, 3 Oct 1999, Gerald Richter wrote:

> >
> > When I use HTML::Embperl for instance like:
> >
> > perl -MHTML::Embperl -e 'HTML::Embperl::Execute(some_embperl.epl)'
> >
> > I got: perl: error in loading shared libraries:
> > /usr/local/lib/site_perl/5.00561/i686-linux/auto/HTML/Embperl/Embperl.so:
> > undefined symbol: perl_eval_sv
> >
> > it seams that it can't be linked to perl.
> >
> > The versions is:
> >
> > Linux 2.3.10
> > 5.005_61 built for i686-linux
> > HTML-Embperl-1.2b9
> >
> > there was no errors making the Embperl package.
> >
> 
> Does the "make test" runs without problem, or does it show the same error?
> 
> The newest perl version I tried was 5.005_57, where it works without
> problem. Maybe something has changed inside perl since that version?

yup, have a look at mod_perl.h in cvs:

#ifdef eval_pv
#   ifndef perl_eval_pv
#      define perl_eval_pv eval_pv
#   endif
#endif
#ifdef eval_sv
#   ifndef perl_eval_sv
#      define perl_eval_sv eval_sv
#   endif
#endif

-Doug

Reply via email to