~ubuntu-branches/ubuntu/saucy/nginx/saucy-updates

« back to all changes in this revision

Viewing changes to auto/unix

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry, Kartik Mistry
  • Date: 2011-09-26 10:17:04 UTC
  • mfrom: (4.2.38 sid)
  • Revision ID: package-import@ubuntu.com-20110926101704-x8pxngiujrmkxnn3
Tags: 1.1.4-2
[Kartik Mistry]
* debian/modules:
  + Updated nginx-upload-progress module, Thanks to upstream for fixing issue
    that FTBFS nginx on kFreeBSD-* archs.
  + Updated nginx-lua module to latest upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
295
295
    fi
296
296
fi
297
297
 
 
298
 
298
299
ngx_feature="SO_SETFIB"
299
300
ngx_feature_name="NGX_HAVE_SETFIB"
300
301
ngx_feature_run=no
305
306
. auto/feature
306
307
 
307
308
 
 
309
ngx_feature="SO_ACCEPTFILTER"
 
310
ngx_feature_name="NGX_HAVE_DEFERRED_ACCEPT"
 
311
ngx_feature_run=no
 
312
ngx_feature_incs="#include <sys/socket.h>"
 
313
ngx_feature_path=
 
314
ngx_feature_libs=
 
315
ngx_feature_test="setsockopt(0, SOL_SOCKET, SO_ACCEPTFILTER, NULL, 0)"
 
316
. auto/feature
 
317
 
 
318
 
 
319
ngx_feature="TCP_DEFER_ACCEPT"
 
320
ngx_feature_name="NGX_HAVE_DEFERRED_ACCEPT"
 
321
ngx_feature_run=no
 
322
ngx_feature_incs="#include <sys/socket.h>
 
323
                  #include <netinet/in.h>
 
324
                  #include <netinet/tcp.h>"
 
325
ngx_feature_path=
 
326
ngx_feature_libs=
 
327
ngx_feature_test="setsockopt(0, IPPROTO_TCP, TCP_DEFER_ACCEPT, NULL, 0)"
 
328
. auto/feature
 
329
 
 
330
 
308
331
ngx_feature="accept4()"
309
332
ngx_feature_name="NGX_HAVE_ACCEPT4"
310
333
ngx_feature_run=no
620
643
fi
621
644
 
622
645
 
 
646
if [ $ngx_found = no ]; then
 
647
 
 
648
    # Solaris has POSIX semaphores in librt
 
649
    ngx_feature="POSIX semaphores in librt"
 
650
    ngx_feature_libs=-lrt
 
651
    . auto/feature
 
652
 
 
653
    if [ $ngx_found = yes ]; then
 
654
        CORE_LIBS="$CORE_LIBS -lrt"
 
655
    fi
 
656
fi
 
657
 
 
658
 
623
659
ngx_feature="struct msghdr.msg_control"
624
660
ngx_feature_name="NGX_HAVE_MSGHDR_MSG_CONTROL"
625
661
ngx_feature_run=no