Return-Path: Delivered-To: apmail-ws-axis-c-dev-archive@www.apache.org Received: (qmail 85908 invoked from network); 21 Feb 2008 15:38:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Feb 2008 15:38:51 -0000 Received: (qmail 92455 invoked by uid 500); 21 Feb 2008 15:38:45 -0000 Delivered-To: apmail-ws-axis-c-dev-archive@ws.apache.org Received: (qmail 92440 invoked by uid 500); 21 Feb 2008 15:38:45 -0000 Mailing-List: contact axis-c-dev-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Apache AXIS C Developers List" Reply-To: "Apache AXIS C Developers List" Delivered-To: mailing list axis-c-dev@ws.apache.org Received: (qmail 92429 invoked by uid 99); 21 Feb 2008 15:38:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Feb 2008 07:38:45 -0800 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [209.68.3.41] (HELO wbm1.pair.net) (209.68.3.41) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Feb 2008 15:37:55 +0000 Received: by wbm1.pair.net (Postfix, from userid 65534) id 8772D26DCC; Thu, 21 Feb 2008 10:38:13 -0500 (EST) Received: from 124.43.199.3 ([124.43.199.3]) (SquirrelMail authenticated user senaka@wso2.com) by webmail1.pair.com with HTTP; Thu, 21 Feb 2008 21:08:13 +0530 (IST) Message-ID: <57395.124.43.199.3.1203608293.squirrel@webmail1.pair.com> In-Reply-To: <6cb156bd0802210732o263b72f0kb5be6a7b83ceba56@mail.gmail.com> References: <3708.124.43.226.49.1203526961.squirrel@webmail5.pair.com> <3869.124.43.226.49.1203528357.squirrel@webmail5.pair.com> <3907.124.43.226.49.1203528989.squirrel@webmail5.pair.com> <6cb156bd0802210732o263b72f0kb5be6a7b83ceba56@mail.gmail.com> Date: Thu, 21 Feb 2008 21:08:13 +0530 (IST) Subject: Re: change in configure file From: "Senaka Fernando" To: "Apache AXIS C Developers List" Reply-To: senaka@wso2.com User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Checked: Checked by ClamAV on apache.org Hi Sahan, It seems that dlopen is available under another name on this OS, zrldsrl. This info was obtained from [1] [1] http://www.mail-archive.com/autoconf@gnu.org/msg15341.html Regards, Senaka > Hi Senaka and Pankaj, > > Sorry about jumping in the middle. > I don't know much about the NonStop kernel, but if your c runtime > (libc) does not support dynamic loading or shared libraries then we > are in trouble. This is because axis2c class loaders depend on the > dynamic loading capabilities of the runtime system (ex: as mentioned > previously functions like dlopen). All the modules and services are > loaded dynamically using dynamic loadable libraries (.so in Unix likes > and .dll in windows). We had the same problem trying to port axis2c to > cygwin (cygwin also does not fully support dynamic libraries). So > please verify that your c runtime supports dynamic loading. > But I saw sometime back, there was an effort going on to compile the > entire axis2c system into static system (core + modules + services). > Please search mail archives [1] and the Axis2/C JIRA[2] to find the > progress. > > > [1] http://marc.info/?l=axis-c-dev > [2] http://issues.apache.org/jira/browse/AXIS2C > > > Thanks > -sahan > > On 2/21/08, pankaj singh wrote: >> Hi Senaka, >> >> After Making the changes i run configure and when i do make it is >> giving me >> error like this >> >> cd . && /bin/sh /web/PankajS/axis2c-src-1.2.0/missing --run aclocal-1.9 >> /web/PankajS/axis2c-src-1.2.0/missing[52]: aclocal-1.9: not found >> WARNING: `aclocal-1.9' is missing on your system. You should only need >> it if >> you modified `acinclude.m4' or `configure.ac'. You might want >> to install the `Automake' and `Perl' packages. Grab them from >> any GNU archive site. >> cd . && /bin/sh /web/PankajS/axis2c-src-1.2.0/missing --run >> automake-1.9 --gnu >> /web/PankajS/axis2c-src-1.2.0/missing[52]: automake-1.9: not found >> WARNING: `automake-1.9' is missing on your system. You should only >> need it if >> you modified `Makefile.am', `acinclude.m4' or `configure.ac'. >> You might want to install the `Automake' and `Perl' packages. >> Grab them from any GNU archive site. >> cd . && /bin/sh /web/PankajS/axis2c-src-1.2.0/missing --run autoconf >> /usr/local/bin/autoconf[271]: /usr/local/bin/autom4te: cannot execute >> make: *** [configure] Error 1 >> >> do you have any idea about this error. >> >> thanks >> >> Pankaj Singh >> >> >> On 20/02/2008, Senaka Fernando wrote: >> > Hi Again Pankaj, >> > >> > It seems that this is the suggested fix. >> > >> > 1. Open configure.ac >> > 2. Replace AC_CHECK_LIB(dl, dlopen) with AC_SEARCH_LIBS([dlopen], [dl >> > zrldsrl]) >> > 3. Then do configure followed by make and make install. >> > >> > Please let us know whether this solved your problem. >> > >> > Regards, >> > Senaka >> > >> > > Hi Pankaj, >> > > >> > > And, it seems that autotools has issues in locating dlopen for you. >> I hope >> > > that this post, [1] might help you. I will try to find more info on >> this >> > > and let you know. >> > > >> > > [1] http://www.mail-archive.com/autoconf@gnu.org/msg15341.html >> > > >> > > Regards, >> > > Senaka >> > > >> > >> Hi Senaka, >> > >> >> > >> My Machine is Tandem Non-stop Kernel and i am using CC (C89 ) >> compiler. >> > >> >> > >> Thanks >> > >> >> > >> On 20/02/2008, Senaka Fernando wrote: >> > >>> Hi Pankaj, >> > >>> >> > >>> I believe your machine is using a Tandem Non-stop Kernel. If not >> can >> > >>> you >> > >>> please let us know the details of your Unix installation. Also, >> please >> > >>> let >> > >>> us know your compiler details. >> > >>> >> > >>> Regards, >> > >>> Senaka >> > >>> >> > >>> > Hello dev, >> > >>> > >> > >>> > My c++ linker (/usr/local/bin/ld) dosenot supports shared >> libraries >> > >>> so >> > >>> > after running the configure file and make file it is creating >> static >> > >>> > libraries but when i am running the exe axis2_http_server it is >> > >>> giving >> > >>> > me the error trasnport sender NULL. >> > >>> > >> > >>> > After Debugging i found that in class_loader it is using dlopen >> > >>> > function to load axis2_http_sender library but the function can >> load >> > >>> > only shared libraries so it is fail to load it. >> > >>> > >> > >>> > Some one help me in this issue i am using NSE TANDEM machine >> which is >> > >>> > POSIX standard. >> > >>> > >> > >>> > Thanks >> > >>> > Pankaj Singh >> > >>> > >> > >>> > --------------------------------------------------------------------- >> > >>> > To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org >> > >>> > For additional commands, e-mail: axis-c-dev-help@ws.apache.org >> > >>> > >> > >>> > >> > >>> >> > >>> >> > >>> --------------------------------------------------------------------- >> > >>> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org >> > >>> For additional commands, e-mail: axis-c-dev-help@ws.apache.org >> > >>> >> > >>> >> > >> >> > > >> > > >> > > --------------------------------------------------------------------- >> > > To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org >> > > For additional commands, e-mail: axis-c-dev-help@ws.apache.org >> > > >> > > >> > >> > >> > --------------------------------------------------------------------- >> > To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org >> > For additional commands, e-mail: axis-c-dev-help@ws.apache.org >> > >> > >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org >> For additional commands, e-mail: axis-c-dev-help@ws.apache.org >> >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org > For additional commands, e-mail: axis-c-dev-help@ws.apache.org > > --------------------------------------------------------------------- To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org For additional commands, e-mail: axis-c-dev-help@ws.apache.org