mirror of
https://github.com/nginx/nginx.git
synced 2024-12-02 20:09:01 +08:00
fix Linux sendfile32() test broken in 0.3.36
This commit is contained in:
parent
92d543deaa
commit
0f825e6440
@ -11,7 +11,8 @@ CORE_SRCS="$UNIX_SRCS $LINUX_SRCS"
|
|||||||
ngx_spacer='
|
ngx_spacer='
|
||||||
'
|
'
|
||||||
|
|
||||||
CC_AUX_FLAGS="$CC_AUX_FLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64"
|
cc_aux_flags="$CC_AUX_FLAGS"
|
||||||
|
CC_AUX_FLAGS="$cc_aux_flags -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64"
|
||||||
|
|
||||||
|
|
||||||
# Linux kernel version
|
# Linux kernel version
|
||||||
@ -60,7 +61,7 @@ fi
|
|||||||
|
|
||||||
# sendfile()
|
# sendfile()
|
||||||
|
|
||||||
CC_AUX_FLAGS="$CC_AUX_FLAGS -D_GNU_SOURCE"
|
CC_AUX_FLAGS="$cc_aux_flags -D_GNU_SOURCE"
|
||||||
ngx_feature="sendfile()"
|
ngx_feature="sendfile()"
|
||||||
ngx_feature_name="NGX_HAVE_SENDFILE"
|
ngx_feature_name="NGX_HAVE_SENDFILE"
|
||||||
ngx_feature_run=yes
|
ngx_feature_run=yes
|
||||||
@ -81,7 +82,7 @@ fi
|
|||||||
|
|
||||||
# sendfile64()
|
# sendfile64()
|
||||||
|
|
||||||
CC_AUX_FLAGS="$CC_AUX_FLAGS -D_FILE_OFFSET_BITS=64"
|
CC_AUX_FLAGS="$cc_aux_flags -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64"
|
||||||
ngx_feature="sendfile64()"
|
ngx_feature="sendfile64()"
|
||||||
ngx_feature_name="NGX_HAVE_SENDFILE64"
|
ngx_feature_name="NGX_HAVE_SENDFILE64"
|
||||||
ngx_feature_run=yes
|
ngx_feature_run=yes
|
||||||
@ -121,3 +122,6 @@ ngx_feature_libs=
|
|||||||
ngx_feature_test="long mask = 0;
|
ngx_feature_test="long mask = 0;
|
||||||
sched_setaffinity(0, 32, (cpu_set_t *) &mask)"
|
sched_setaffinity(0, 32, (cpu_set_t *) &mask)"
|
||||||
. auto/feature
|
. auto/feature
|
||||||
|
|
||||||
|
|
||||||
|
CC_AUX_FLAGS=$cc_aux_flags
|
||||||
|
Loading…
Reference in New Issue
Block a user