comparison auto/options @ 5701:1209b8a7b077

Configure: the --build= option. If set, its value is output in "nginx -v" and in the error log.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 20 May 2014 16:10:07 +0400
parents 00bdc9f08a16
children efc84a5723b3
comparison
equal deleted inserted replaced
5700:5e892d40e5cc 5701:1209b8a7b077
12 NGX_ERROR_LOG_PATH= 12 NGX_ERROR_LOG_PATH=
13 NGX_PID_PATH= 13 NGX_PID_PATH=
14 NGX_LOCK_PATH= 14 NGX_LOCK_PATH=
15 NGX_USER= 15 NGX_USER=
16 NGX_GROUP= 16 NGX_GROUP=
17 NGX_BUILD=
17 18
18 CC=${CC:-cc} 19 CC=${CC:-cc}
19 CPP= 20 CPP=
20 NGX_OBJS=objs 21 NGX_OBJS=objs
21 22
176 --user=*) NGX_USER="$value" ;; 177 --user=*) NGX_USER="$value" ;;
177 --group=*) NGX_GROUP="$value" ;; 178 --group=*) NGX_GROUP="$value" ;;
178 179
179 --crossbuild=*) NGX_PLATFORM="$value" ;; 180 --crossbuild=*) NGX_PLATFORM="$value" ;;
180 181
182 --build=*) NGX_BUILD="$value" ;;
181 --builddir=*) NGX_OBJS="$value" ;; 183 --builddir=*) NGX_OBJS="$value" ;;
182 184
183 --with-rtsig_module) EVENT_RTSIG=YES ;; 185 --with-rtsig_module) EVENT_RTSIG=YES ;;
184 --with-select_module) EVENT_SELECT=YES ;; 186 --with-select_module) EVENT_SELECT=YES ;;
185 --without-select_module) EVENT_SELECT=NONE ;; 187 --without-select_module) EVENT_SELECT=NONE ;;
339 --user=USER set non-privileged user for 341 --user=USER set non-privileged user for
340 worker processes 342 worker processes
341 --group=GROUP set non-privileged group for 343 --group=GROUP set non-privileged group for
342 worker processes 344 worker processes
343 345
346 --build=NAME set build name
344 --builddir=DIR set build directory 347 --builddir=DIR set build directory
345 348
346 --with-rtsig_module enable rtsig module 349 --with-rtsig_module enable rtsig module
347 --with-select_module enable select module 350 --with-select_module enable select module
348 --without-select_module disable select module 351 --without-select_module disable select module