[Olivier, please keep things on the list. Thanks]

So you have a bunch of these errors:
/usr/lib/pa20_64/dld.sl: Unsatisfied code symbol

'modperl_bucket_sv_create' in

Is nm(1) working on your platform? If so, please try:
nm /path/to/your/httpd | grep modperl_bucket_sv_create


It does not find modperl_bucket_sv_create in httpd file.

Show us the linking output when it creates mod_perl.a. After the build is complete on my machine I'd do:


% rm src/modules/perl/mod_perl.a

% make
cd "src/modules/perl" && make -f Makefile.modperl
make[1]: Entering directory `/home/stas/apache.org/mp2-xcpt/src/modules/perl'
rm -f mod_perl.a
ar crv mod_perl.a mod_perl.o modperl_interp.o modperl_tipool.o modperl_log.o modperl_config.o modperl_cmd.o modperl_options.o modperl_callback.o modperl_handler.o modperl_gtop.o modperl_util.o modperl_io.o modperl_io_apache.o modperl_filter.o modperl_bucket.o modperl_mgv.o modperl_pcw.o modperl_global.o modperl_env.o modperl_cgi.o modperl_perl.o modperl_perl_global.o modperl_perl_pp.o modperl_sys.o modperl_module.o modperl_svptr_table.o modperl_const.o modperl_constants.o modperl_apache_compat.o modperl_error.o modperl_hooks.o modperl_directives.o modperl_flags.o modperl_xsinit.o
a - mod_perl.o
a - modperl_interp.o
a - modperl_tipool.o
a - modperl_log.o
a - modperl_config.o
a - modperl_cmd.o
a - modperl_options.o
a - modperl_callback.o
a - modperl_handler.o
a - modperl_gtop.o
a - modperl_util.o
a - modperl_io.o
a - modperl_io_apache.o
a - modperl_filter.o
a - modperl_bucket.o
a - modperl_mgv.o
a - modperl_pcw.o
a - modperl_global.o
a - modperl_env.o
a - modperl_cgi.o
a - modperl_perl.o
a - modperl_perl_global.o
a - modperl_perl_pp.o
a - modperl_sys.o
a - modperl_module.o
a - modperl_svptr_table.o
a - modperl_const.o
a - modperl_constants.o
a - modperl_apache_compat.o
a - modperl_error.o
a - modperl_hooks.o
a - modperl_directives.o
a - modperl_flags.o
a - modperl_xsinit.o
: mod_perl.a


So you are after this line:
a - modperl_bucket.o

Checking:

% nm mod_perl.a | grep modperl_bucket_sv_create
000001e2 T modperl_bucket_sv_create

So as you can see it has this symbol. You can check the original file as well:

% nm modperl_bucket.o | grep modperl_bucket_sv_create
000001e2 T modperl_bucket_sv_create

Can you please run those commands for us?

[the rest in another email, to keep issues separate]

--
__________________________________________________________________
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

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to