After make install I am ale to have .a and .la of all modules only. Hence I am converting .a to .o file using command ar -x filename.a . After get .o file, using xld command i am converting .o to .so
How will apxs work? If only .a file created then what to do ? When I am starting apache server I am getting this error " httpd: Syntax error on line 66 of /home/hemant/apache/conf/httpd.conf: Cannot lo ad modules/mod_authn_file.so into server: dlopen (6CA053F0->/home/hemant/apache/modules/mod_authn_file.so, 5): FileSystem\n Error 4002 on File /home/hemant/apache/modules/mod_authn_file.so" I am assuming that this error is because of not availability of .so file Thanks Hemant On Fri, Dec 2, 2016 at 5:10 PM, Rainer Canavan <[email protected]> wrote: > On Fri, Dec 2, 2016 at 6:08 AM, Hemant Chaudhary > <[email protected]> wrote: > > >> > "unresolved reference to ap_getword_nulls". > > After "make install", I started my apache server, but it was not running > > because it was unable to recognize .so file. Hence I planned to convert > .a > > into .so file. > > > > I am porting apache on Tendem NonStop. > > While converting I got this error. I think I am missing some library. > > You don't state how you attempt that conversion. You should not need to > perform any conversion, instead, apxs should generate a dynamic module. > ap_getword_nulls is defined by the httpd executable, but you shouldn't > link against it (if that is even possible), since the symbol is resolved > when > the module is loaded. > > rainer > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
