RE: [SOLVED]Tomcat native library Not found in Solaris 9

2007-08-16 Thread Lakshmi Venkataraman
mailto:[EMAIL PROTECTED] Sent: Thursday, August 02, 2007 2:20 AM To: Tomcat Users List Subject: Re: [NOT SOLVED]Tomcat native library Not found in Solaris 9 Hi, first of all: this is a gcc question. If you search for a high quality answer, you should contact the gcc commmunity. My personal way to

RE: [NOT SOLVED]Tomcat native library Not found in Solaris 9

2007-08-02 Thread Lakshmi Venkataraman
Thanks for your reply! I will try the steps suggested below. Lakshmi -Original Message- From: Rainer Jung [mailto:[EMAIL PROTECTED] Sent: Thursday, August 02, 2007 2:20 AM To: Tomcat Users List Subject: Re: [NOT SOLVED]Tomcat native library Not found in Solaris 9 Hi, first of all

Re: [NOT SOLVED]Tomcat native library Not found in Solaris 9

2007-08-02 Thread Rainer Jung
Hi, first of all: this is a gcc question. If you search for a high quality answer, you should contact the gcc commmunity. My personal way to do this (and there is definitely more than one wait to do it): export CC="gcc -specs=/path/to/my/specs" Contents of file /path/to/my/specs: *libgcc:

RE: [NOT SOLVED]Tomcat native library Not found in Solaris 9

2007-08-01 Thread Lakshmi Venkataraman
with OpenSSL-0.9.8b. --Thanks Lakshmi -Original Message- From: Rainer Jung [mailto:[EMAIL PROTECTED] Sent: Sunday, May 13, 2007 1:45 AM To: Tomcat Users List Subject: Re: [SOLVED]Tomcat native library Not found in Solaris 9 It's very likely, that it depends on the same lib in R

Re: [SOLVED]Tomcat native library Not found in Solaris 9

2007-05-13 Thread Rainer Jung
It's very likely, that it depends on the same lib in RedHat. You can check by using "ldd libtcnative-1.so". The difference is: gcc is a fundamental part of the OS with Linux, so libgcc_s.so is ususally installed in a standard library location for Linux. Under Solaris it's an optional add-on in

RE: [SOLVED]Tomcat native library Not found in Solaris 9

2007-05-12 Thread Lakshmi Venkataraman
I attached an eclipse debugger and found that an UnsatsfiedLinkError was thrown due to the Fact that libtcnative-1.so depends on libgcc_s.1.so. Then I included /usr/local/lib in LD_LIBRAY_PATH. Tomcat's Http11AprProtocol connector starts up without any problem. It is still not clear why on sol