<div>hi all</div>
<div><strong></strong>&nbsp;</div>
<div><strong>this is the steps i followed to&nbsp;add module&nbsp;&nbsp;</strong></div>
<div><strong></strong>&nbsp;</div>
<div><strong>&nbsp;i took one example module as&nbsp;exMod&nbsp;and this exMod sub directory is in directory called&nbsp; /modules&nbsp;&nbsp;</strong></div>
<div><strong></strong>&nbsp;</div>
<div><strong></strong>&nbsp;</div>
<div><strong>1. created one makefile&nbsp;</strong></div>
<div><strong>2.one .c file with one printf statement , .h file for corresponding .c file&nbsp;</strong></div>
<div><strong>3.and added loadmodule &quot;exMod.so&quot; in openser.cfg file then&nbsp;</strong></div>
<div><strong>4. i run the openser with&nbsp;</strong>&nbsp;make prifix=/usr/local/ all and make prifix=/usr/local/ install</div>
<div>5&nbsp; while i am running the openser it is not showing any thing </div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;</div>
<div>&nbsp;</div>
<div><strong>the .c&nbsp; an .h file of my</strong> <strong>exMod are </strong></div>
<div>
<p><strong>exMod.c:</strong></p>
<p>void print_modname()<br>{</p>
<p>printf(&quot;this is module name &quot;);<br>}<br></p>
<p><strong>exMod.h</strong></p>
<p>void print_modname();</p>
<p>and my Makefile is :</p>
<p>include ../../Makefile.defs<br>auto_gen=<br>NAME=exMod.so<br>DEFS+=-I$(LOCALBASE)/include<br>LIBS=</p>
<p>include ../../Makefile.modules<br></p>
<p>so please help me regarding this <br></p></div>