comparison auto/options @ 6126:adba26ff70b5

Removed the obsolete rtsig module.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 23 Apr 2015 14:17:40 +0300
parents 4dc8e7b62216
children 162b2d27d4e1
comparison
equal deleted inserted replaced
6125:4dc8e7b62216 6126:adba26ff70b5
28 NGX_RPATH=NO 28 NGX_RPATH=NO
29 29
30 NGX_TEST_BUILD_DEVPOLL=NO 30 NGX_TEST_BUILD_DEVPOLL=NO
31 NGX_TEST_BUILD_EVENTPORT=NO 31 NGX_TEST_BUILD_EVENTPORT=NO
32 NGX_TEST_BUILD_EPOLL=NO 32 NGX_TEST_BUILD_EPOLL=NO
33 NGX_TEST_BUILD_RTSIG=NO
34 NGX_TEST_BUILD_SOLARIS_SENDFILEV=NO 33 NGX_TEST_BUILD_SOLARIS_SENDFILEV=NO
35 34
36 NGX_PLATFORM= 35 NGX_PLATFORM=
37 NGX_WINE= 36 NGX_WINE=
38 37
39 EVENT_FOUND=NO 38 EVENT_FOUND=NO
40 39
41 EVENT_RTSIG=NO
42 EVENT_SELECT=NO 40 EVENT_SELECT=NO
43 EVENT_POLL=NO 41 EVENT_POLL=NO
44 42
45 USE_THREADS=NO 43 USE_THREADS=NO
46 44
187 --crossbuild=*) NGX_PLATFORM="$value" ;; 185 --crossbuild=*) NGX_PLATFORM="$value" ;;
188 186
189 --build=*) NGX_BUILD="$value" ;; 187 --build=*) NGX_BUILD="$value" ;;
190 --builddir=*) NGX_OBJS="$value" ;; 188 --builddir=*) NGX_OBJS="$value" ;;
191 189
192 --with-rtsig_module) EVENT_RTSIG=YES ;;
193 --with-select_module) EVENT_SELECT=YES ;; 190 --with-select_module) EVENT_SELECT=YES ;;
194 --without-select_module) EVENT_SELECT=NONE ;; 191 --without-select_module) EVENT_SELECT=NONE ;;
195 --with-poll_module) EVENT_POLL=YES ;; 192 --with-poll_module) EVENT_POLL=YES ;;
196 --without-poll_module) EVENT_POLL=NONE ;; 193 --without-poll_module) EVENT_POLL=NONE ;;
197 194
325 --with-libatomic=*) NGX_LIBATOMIC="$value" ;; 322 --with-libatomic=*) NGX_LIBATOMIC="$value" ;;
326 323
327 --test-build-devpoll) NGX_TEST_BUILD_DEVPOLL=YES ;; 324 --test-build-devpoll) NGX_TEST_BUILD_DEVPOLL=YES ;;
328 --test-build-eventport) NGX_TEST_BUILD_EVENTPORT=YES ;; 325 --test-build-eventport) NGX_TEST_BUILD_EVENTPORT=YES ;;
329 --test-build-epoll) NGX_TEST_BUILD_EPOLL=YES ;; 326 --test-build-epoll) NGX_TEST_BUILD_EPOLL=YES ;;
330 --test-build-rtsig) NGX_TEST_BUILD_RTSIG=YES ;;
331 --test-build-solaris-sendfilev) NGX_TEST_BUILD_SOLARIS_SENDFILEV=YES ;; 327 --test-build-solaris-sendfilev) NGX_TEST_BUILD_SOLARIS_SENDFILEV=YES ;;
332 328
333 *) 329 *)
334 echo "$0: error: invalid option \"$option\"" 330 echo "$0: error: invalid option \"$option\""
335 exit 1 331 exit 1
360 worker processes 356 worker processes
361 357
362 --build=NAME set build name 358 --build=NAME set build name
363 --builddir=DIR set build directory 359 --builddir=DIR set build directory
364 360
365 --with-rtsig_module enable rtsig module
366 --with-select_module enable select module 361 --with-select_module enable select module
367 --without-select_module disable select module 362 --without-select_module disable select module
368 --with-poll_module enable poll module 363 --with-poll_module enable poll module
369 --without-poll_module disable poll module 364 --without-poll_module disable poll module
370 365