~spuul/nginx/trunk

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-02-15 03:05:42 UTC
  • mfrom: (4.3.10 sid)
  • Revision ID: package-import@ubuntu.com-20140215030542-71ubtowl24vf7nfn
Tags: 1.4.5-1ubuntu1
* Resynchronise with Debian (LP: #1280511).  Remaining changes:
  - debian/patches/ubuntu-branding.patch:
    + Add Ubuntu branding to server_tokens.

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