tarantool / nginx_upstream_module

Tarantool NginX upstream module (REST, JSON API, websockets, load balancing)
Other
174 stars 18 forks source link

Build problem el/6 (centos/rhel) #46

Closed Sulverus closed 8 years ago

Sulverus commented 8 years ago

Nginx can't see tnt_* options, solved with disabling new style build in config:

#if [ ! -n "$ngx_module_link" ]; then
# __old_style_build=no
#fi

Probably, new style build is incompatible with el/6

bigbes commented 8 years ago

Also it's incompatible with ubuntu 14.04 / nginx 1.9.3

With best regards, Eugene.

2016-07-15 21:56 GMT+03:00 Andrew notifications@github.com:

Nginx can't see tnt_* options, solved with disabling new style build in config:

if [ ! -n "$ngx_module_link" ]; then

__old_style_build=no

fi

Probably, new style build is incompatible with el/6

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/tarantool/nginx_upstream_module/issues/46, or mute the thread https://github.com/notifications/unsubscribe-auth/AAeQFOMJRImLgPMFgmaMAPIwW99_a9Anks5qV9fJgaJpZM4JNsBW .

dedok commented 8 years ago

Fix: via using portable 'test ...' instead of [ ]. Also I added pretty big test, see test/ngx_versions.sh and test/ngx_versions_list. If you wish to add any version in testing, then feel free just do it! For add new version just add version TAG in file test/ngx_versions_list. For start testing run - test/ngx_versions.sh.