<div dir="ltr">Hi ,<div>Thank you,<div><br></div><div>after using  this script  also i am getting same error.</div><div>I have makefile which provide other header file path and third party lib path.</div><div>I have structure like this</div><div>module_folder/</div><div>1.module.cpp</div><div>2.config</div><div>3.Makefile</div><div><br></div><div>and having sub parent folder which contain other dependency code.</div><div><br></div><div>so please let me know what i should do.</div><div><br></div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jul 18, 2016 at 6:39 PM, Maxim Dounin <span dir="ltr"><<a href="mailto:mdounin@mdounin.ru" target="_blank">mdounin@mdounin.ru</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello!<br>
<span class=""><br>
On Mon, Jul 18, 2016 at 12:28:34PM +0530, Pankaj Chaudhary wrote:<br>
<br>
> I have written my own nginx  module and i have my user defined header files<br>
> but while building i am getting error header file not found.<br>
<br>
</span>If you are using header files in your module, you have to add your<br>
module directory to the list of include paths.<br>
<br>
Assuming you are using auto/module script to configure your<br>
module, you should do something like this in your module ./config<br>
script:<br>
<br>
ngx_module_type=HTTP_AUX_FILTER<br>
ngx_module_name=ngx_http_example_filter_module<br>
ngx_module_incs=$ngx_addon_dir<br>
ngx_module_deps=<br>
ngx_module_srcs=$ngx_addon_dir/ngx_http_example_filter_module.c<br>
ngx_module_libs=<br>
<br>
. auto/module<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Maxim Dounin<br>
<a href="http://nginx.org/" rel="noreferrer" target="_blank">http://nginx.org/</a><br>
<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</font></span></blockquote></div><br></div>