Ray Zimmerman wrote:
I have perl-5.8.0 installed on Mac OS X 10.2.8 in /usr/local with no problems.

The other day I installed Apache::Scoreboard but when I try running ...

#!/usr/bin/perl -w
use strict;
use Apache::Scoreboard;
1;

... I get ...

dyld: perl Undefined symbols:
_ap_rwrite
_ap_send_http_header
_ap_set_content_length
_sv2request_rec
Trace/BPT trap

Are you sure you are trying it under running mod_perl, and not mod_cgi? If yes, check that the above symbols are defined in the httpd (and mod_perl shared object, if it wasn't built as static), e.g. on my machine that would be:


nm /home/httpd/httpd_perl/bin/httpd | grep ap_send_http_header
080e3dfb T ap_send_http_header

etc, for the rest of the symbols reported missing.

BTW, I suppose blib/arch/auto/Apache/Scoreboard/Scoreboard.bundle is the shared object created on Mac OS X? If you have ldd, can you run:
ldd blib/arch/auto/Apache/Scoreboard/Scoreboard.bundle


__________________________________________________________________
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