Hi all,

is there a way to avoid the module signature check

     if (ngx_strcmp(module->signature, NGX_MODULE_SIGNATURE) != 0) {
         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
                            "module \"%V\" is not binary compatible",
                            file);
         return NGX_ERROR;
     }

on nginx startup ?

I would like to build a dynamic module and make it compatible with a
version of nginx regardless of options used in ./configure

-Massimiliano
_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-devel

Reply via email to