comparison auto/os/win32 @ 455:295d97d70c69 release-0.1.2

nginx-0.1.2-RELEASE import *) Feature: the --user=USER, --group=GROUP, and --with-ld-opt=OPTIONS options in configure. *) Feature: the server_name directive supports *.domain.tld. *) Bugfix: the portability improvements. *) Bugfix: if configuration file was set in command line, the reconfiguration was impossible; the bug had appeared in 0.1.1. *) Bugfix: proxy module may get caught in an endless loop when sendfile is not used. *) Bugfix: with sendfile the response was not recoded according to the charset module directives; the bug had appeared in 0.1.1. *) Bugfix: very seldom bug in the kqueue processing. *) Bugfix: the gzip module compressed the proxied responses that was already compressed.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 21 Oct 2004 15:34:38 +0000
parents
children a88a3e4e158f
comparison
equal deleted inserted replaced
454:2ff9cff0f469 455:295d97d70c69
1
2 # Copyright (C) Igor Sysoev
3
4
5 cat << END >> $NGX_AUTO_HEADERS_H
6
7 #ifndef NGX_WIN32
8 #define NGX_WIN32 1
9 #endif
10
11 END
12
13
14 CORE_INCS="$WIN32_INCS"
15 CORE_DEPS="$WIN32_DEPS"
16 CORE_SRCS="$WIN32_SRCS $IOCP_SRCS"
17 OS_CONFIG="$WIN32_CONFIG"
18 CORE_LIBS="$CORE_LIBS ws2_32.lib"
19
20 EVENT_MODULES="$EVENT_MODULES $IOCP_MODULE"
21 EVENT_FOUND=YES
22
23 if [ $EVENT_SELECT = NO ]; then
24 CORE_SRCS="$CORE_SRCS $SELECT_SRCS"
25 EVENT_MODULES="$EVENT_MODULES $SELECT_MODULE"
26 fi
27
28 have=HAVE_AIO . auto/have
29 have=HAVE_IOCP . auto/have