Closed HappyStoic closed 5 years ago
Afternoon,
In order to build this as a dynamic module for that version you would need to ensure the configure arguments in your current Nginx are identical to the ones we use in the Makefile when compiling the module. This mismatch would normally be covered by using --with-compat
but as you mentioned, it isn't available.
If you edit the Makefile you will see them under the configure
section.
An alternative method would be to compile it as a static module using...
make install pattern STATIC_BUILD=1
This would provide you with a build of Nginx with 51Degrees available to use. I understand this may not be a feasible option for you but it's worth mentioning.
Let me know how you get on and we will definitely look at making the documentation a bit clearer around those older versions.
Yea, that was the problem, thanks for your quick answer. I was a little bit confused about this --with-compat option. Closing the issue and have a nice day
Good afternoon, I'm dealing with problems while making dynamic module for Nginx [version 1.10.3]. Your readme says
Dynamic modules were indeed introduced in nginx 1.9.11 but --with-compat option is available from version 1.11.5. Using
make module trie VERSION=1.10.3
ormake install trie VERSION=1.10.3
I getAm I missing something or shall I get the dynamic module for my nginx in a different way (I cannot use different nginx version)? Thanks for your response.