I ran ldd utility on mod_jk.so (compiled by me) with the following results:
/usr/local/apache/modules ldd mod_jk2.so
libc.so.1 => /usr/lib/libc.so.1
libdl.so.1 => /usr/lib/libdl.so.1
/usr/platform/SUNW,Sun-Fire-V210/lib/libc_psr.so.1
Then I ran ...
/usr/lib nm libdl.so.1 | grep divdi3
/usr/lib nm libc.so.1 | grep divdi3
/usr/platform/SUNW,Sun-Fire-V210/lib nm libc_psr.so.1 | grep divdi3
With no results, I mean, there was no output..
I compiled Apache2 and JK2 connector by my self, and during this
process I didn't get any error message
My LD_LIBRARY_PATH=/opt/csw/lib:/usr/local/apache/modules
Any other suggestion?
Thanks for your help
Regards ...
Jonathan
On Thu, 2 Sep 2004 17:38:46 -0500, QM <[EMAIL PROTECTED]> wrote:
> On Thu, Sep 02, 2004 at 06:25:53PM -0400, Jonathan Rengifo wrote:
> : 1-Sep-2004 1:46:26 PM org.apache.jk.common.ChannelSocket init
> : INFO: JK2: ajp13 listening on /0.0.0.0:8009
> : ld.so.1: /usr/java/bin/java: fatal: relocation error: file
> : /usr/local/apache-httpd-2.0.50/lib/libapr-0.so.0: symbol __divdi3:
> : referenced symbol not found
>
> The error means that the specified symbol -- loosely put, a C/C++
> variable or function -- wasn't available within the currently executing
> program's binary, nor any of the shared libs it loaded.
>
> Tracking down missing symbols can be a pain, especially if you didn't
> compile everything yourself from source.
>
> It could be as simple as a missing dir in LD_LIBRARY_PATH (especially
> since the Tomcat user's environment may not the same as the build-user's
> environment), or something as nasty as subtle linking problem.
>
> Run "ldd" on mod_jk2.so to see what libs it needs, then run "nm" on
> those libraries to see which one defines "__divdi3."
>
> -QM
>
> --
>
> software -- http://www.brandxdev.net
> tech news -- http://www.RoarNetworX.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]