~spuul/nginx/trunk

« back to all changes in this revision

Viewing changes to debian/modules/nginx-lua/config

  • Committer: Package Import Robot
  • Author(s): Christos Trochalakis, Christos Trochalakis
  • Date: 2014-02-13 11:41:49 UTC
  • mfrom: (1.3.32)
  • mto: This revision was merged to the branch mainline in revision 72.
  • Revision ID: package-import@ubuntu.com-20140213114149-tkp78c45rzu3wr6y
Tags: 1.4.5-1
[ Christos Trochalakis ]
* New upstream release.
* debian/modules/nginx-lua:
  + Update nginx-lua to v0.9.4
* debian/nginx-naxsi-ui.preinst:
  + Fix exit status issue (Closes: #735152)
* debian/control:
  + Fix arch:all to arch:any dependencies
  + Make nginx depend on specific flavor version
* debian/nginx-*.postinst:
  + Make nginx start by default (Closes: #735551)
* debian/nginx-*.prerm:
  + No need to check for invoke-rc.d,
    correctly set the exit code on error
* debian/nginx-common.nginx.init:
  + Rewrite some parts of the initscript
  + Introduce rotate command
  + Introduce upgrade command

Show diffs side-by-side

added added

removed removed

Lines of Context:
222
222
                $ngx_addon_dir/src/ngx_http_lua_phase.c \
223
223
                $ngx_addon_dir/src/ngx_http_lua_uthread.c \
224
224
                $ngx_addon_dir/src/ngx_http_lua_timer.c \
 
225
                $ngx_addon_dir/src/ngx_http_lua_config.c \
 
226
                $ngx_addon_dir/src/ngx_http_lua_worker.c \
225
227
                "
226
228
 
227
229
NGX_ADDON_DEPS="$NGX_ADDON_DEPS \
272
274
                $ngx_addon_dir/src/ngx_http_lua_probe.h \
273
275
                $ngx_addon_dir/src/ngx_http_lua_uthread.h \
274
276
                $ngx_addon_dir/src/ngx_http_lua_timer.h \
 
277
                $ngx_addon_dir/src/ngx_http_lua_config.h \
 
278
                $ngx_addon_dir/src/ngx_http_lua_worker.h \
275
279
                "
276
280
 
277
281
CFLAGS="$CFLAGS -DNDK_SET_VAR"
278
282
 
279
 
ngx_feature="export symbols by default"
 
283
ngx_feature="export symbols by default (-E)"
280
284
ngx_feature_libs="-Wl,-E"
281
285
ngx_feature_name=
282
286
ngx_feature_run=no
290
294
    CORE_LIBS="-Wl,-E $CORE_LIBS"
291
295
fi
292
296
 
 
297
# for Cygwin
 
298
ngx_feature="export symbols by default (--export-all-symbols)"
 
299
ngx_feature_libs="-Wl,--export-all-symbols"
 
300
ngx_feature_name=
 
301
ngx_feature_run=no
 
302
ngx_feature_incs="#include <stdio.h>"
 
303
ngx_feature_path=
 
304
ngx_feature_test='printf("hello");'
 
305
 
 
306
. auto/feature
 
307
 
 
308
if [ $ngx_found = yes ]; then
 
309
    CORE_LIBS="-Wl,--export-all-symbols $CORE_LIBS"
 
310
fi
 
311
 
293
312
NGX_DTRACE_PROVIDERS="$NGX_DTRACE_PROVIDERS $ngx_addon_dir/dtrace/ngx_lua_provider.d"
294
313
NGX_TAPSET_SRCS="$NGX_TAPSET_SRCS $ngx_addon_dir/tapset/ngx_lua.stp"
295
314