This is a link problem, the compiled object was not linked with the
library file that contains the definition on the symbol "map_name_at". You
need to find the lib file and add it to the linker directive (i.e.
-L<libdir> -l<libname>). I don't know about FreeBSD but on Solaris you can
use the nm command to dump the symbol tables of lib files:

Try (from the standard lib dirs):

nm lib* | grep map_name_at

or

for f in lib*
do
echo $f
nm $f | grep map_name_at
done


On Tue, 13 Feb 2001, mikhail malamud wrote:

> I give up. Can someone send me mod_jk.so compiled on freebsd.
> 
> **********
> Cannot load /usr/local/libexec/apache/mod_jk.so into server:
> /usr/local/libexec/apache/mod_jk.so: Undefined symbol "map_name_at"
> /usr/local/sbin/apachectl start: httpd could not be started
> *********
> 

------------------------------------------------
"Mon aeroglisseur est plein d'anguilles"

John P. Dodge
Boeing Shared Services Group



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to