summaryrefslogtreecommitdiffhomepage
path: root/auto
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2005-03-22 16:02:46 +0000
committerIgor Sysoev <igor@sysoev.ru>2005-03-22 16:02:46 +0000
commit4d656dcd0bd6309b0ec76fc444198ed6c2948a8e (patch)
tree67ce201b7d515273fa2a6a617542cece4fa16898 /auto
parent3599a1b885533d929315494258fb407765243a95 (diff)
downloadnginx-4d656dcd0bd6309b0ec76fc444198ed6c2948a8e.tar.gz
nginx-4d656dcd0bd6309b0ec76fc444198ed6c2948a8e.tar.bz2
nginx-0.1.26-RELEASE importrelease-0.1.26
*) Change: the invalid client header lines are now ignored and logged at the info level. *) Change: the server name is also logged in error log. *) Feature: the ngx_http_auth_basic_module module and the auth_basic and auth_basic_user_file directives.
Diffstat (limited to 'auto')
-rw-r--r--auto/cc/bcc5
-rw-r--r--auto/cc/msvc6
-rw-r--r--auto/lib/md5/make6
-rw-r--r--auto/lib/pcre/make8
-rw-r--r--auto/lib/pcre/makefile.bcc1
-rw-r--r--auto/lib/pcre/makefile.msvc1
-rw-r--r--auto/lib/pcre/makefile.owc2
-rw-r--r--auto/lib/pcre/patch.pcre.c13
-rw-r--r--auto/lib/pcre/patch.pcre.in13
-rw-r--r--auto/lib/pcre/patch.pcre.in.owc15
-rw-r--r--auto/lib/zlib/make6
-rw-r--r--auto/lib/zlib/patch.zlib.h10
-rw-r--r--auto/modules8
-rw-r--r--auto/options3
-rw-r--r--auto/os/conf1
-rw-r--r--auto/os/freebsd1
-rw-r--r--auto/os/linux2
-rw-r--r--auto/os/solaris2
-rw-r--r--auto/sources8
19 files changed, 97 insertions, 14 deletions
diff --git a/auto/cc/bcc b/auto/cc/bcc
index 4b8812924..af108bb21 100644
--- a/auto/cc/bcc
+++ b/auto/cc/bcc
@@ -21,6 +21,11 @@ case $CPU in
;;
esac
+# __stdcall
+#CPU_OPT="$CPU_OPT -ps"
+# __fastcall
+CPU_OPT="$CPU_OPT -pr"
+
CFLAGS="$CFLAGS $CPU_OPT"
# multithreaded
diff --git a/auto/cc/msvc b/auto/cc/msvc
index 0fa1a2c7e..d920ed0c9 100644
--- a/auto/cc/msvc
+++ b/auto/cc/msvc
@@ -36,6 +36,12 @@ case $CPU in
;;
esac
+# __stdcall
+#CPU_OPT="$CPU_OPT -Gz"
+# __fastcall
+CPU_OPT="$CPU_OPT -Gr"
+
+
CFLAGS="$CFLAGS $CPU_OPT"
diff --git a/auto/lib/md5/make b/auto/lib/md5/make
index 8bdca0b50..22189da8a 100644
--- a/auto/lib/md5/make
+++ b/auto/lib/md5/make
@@ -6,17 +6,17 @@ case "$NGX_CC_NAME" in
msvc*)
ngx_makefile=makefile.msvc
- ngx_opt="CPU_OPT=$CPU_OPT LIBC=$LIBC MD5_ASM=$MD5_ASM"
+ ngx_opt="CPU_OPT=\"$CPU_OPT\" LIBC=$LIBC MD5_ASM=$MD5_ASM"
;;
owc*)
ngx_makefile=makefile.owc
- ngx_opt="CPU_OPT=$CPU_OPT"
+ ngx_opt="CPU_OPT=\"$CPU_OPT\""
;;
bcc)
ngx_makefile=makefile.bcc
- ngx_opt="-DCPU_OPT=$CPU_OPT -DMD5_ASM=$MD5_ASM"
+ ngx_opt="-DCPU_OPT=\"$CPU_OPT\" -DMD5_ASM=$MD5_ASM"
;;
esac
diff --git a/auto/lib/pcre/make b/auto/lib/pcre/make
index 6b5235704..f57f7d9ec 100644
--- a/auto/lib/pcre/make
+++ b/auto/lib/pcre/make
@@ -6,17 +6,17 @@ case "$NGX_CC_NAME" in
msvc*)
ngx_makefile=makefile.msvc
- ngx_opt="CPU_OPT=$CPU_OPT LIBC=$LIBC"
+ ngx_opt="CPU_OPT=\"$CPU_OPT\" LIBC=$LIBC"
;;
owc*)
ngx_makefile=makefile.owc
- ngx_opt="CPU_OPT=$CPU_OPT"
+ ngx_opt="CPU_OPT=\"$CPU_OPT\""
;;
bcc)
ngx_makefile=makefile.bcc
- ngx_opt="-DCPU_OPT=$CPU_OPT"
+ ngx_opt="-DCPU_OPT=\"$CPU_OPT\""
;;
esac
@@ -26,7 +26,9 @@ case "$NGX_PLATFORM" in
win32)
cp auto/lib/pcre/patch.pcre.in $PCRE
+ cp auto/lib/pcre/patch.pcre.in.owc $PCRE
cp auto/lib/pcre/patch.config.in $PCRE
+ cp auto/lib/pcre/patch.pcre.c $PCRE
cp auto/lib/pcre/$ngx_makefile $PCRE
ngx_pcre=`echo $PCRE | sed -e "s/\//$ngx_regex_dirsep/g"`
diff --git a/auto/lib/pcre/makefile.bcc b/auto/lib/pcre/makefile.bcc
index 411945260..a2dc5fbfc 100644
--- a/auto/lib/pcre/makefile.bcc
+++ b/auto/lib/pcre/makefile.bcc
@@ -18,3 +18,4 @@ pcre.lib: pcre.h
pcre.h:
patch -o pcre.h pcre.in patch.pcre.in
patch -o config.h config.in patch.config.in
+ patch -o pcre.c pcre.c patch.pcre.c
diff --git a/auto/lib/pcre/makefile.msvc b/auto/lib/pcre/makefile.msvc
index 7c61d31f7..4da4e0c39 100644
--- a/auto/lib/pcre/makefile.msvc
+++ b/auto/lib/pcre/makefile.msvc
@@ -20,3 +20,4 @@ pcre.lib: pcre.h
pcre.h:
patch -o pcre.h pcre.in patch.pcre.in
patch -o config.h config.in patch.config.in
+ patch -o pcre.c pcre.c patch.pcre.c
diff --git a/auto/lib/pcre/makefile.owc b/auto/lib/pcre/makefile.owc
index 227fd90af..8439c4cc2 100644
--- a/auto/lib/pcre/makefile.owc
+++ b/auto/lib/pcre/makefile.owc
@@ -15,5 +15,5 @@ pcre.lib: pcre.h
pcre.h:
- patch -o pcre.h pcre.in patch.pcre.in
+ patch -o pcre.h pcre.in patch.pcre.in.owc
patch -o config.h config.in patch.config.in
diff --git a/auto/lib/pcre/patch.pcre.c b/auto/lib/pcre/patch.pcre.c
new file mode 100644
index 000000000..8e56b9df6
--- /dev/null
+++ b/auto/lib/pcre/patch.pcre.c
@@ -0,0 +1,13 @@
+--- pcre.c Thu Aug 21 14:43:07 2003
++++ pcre.c Tue Mar 22 12:56:59 2005
+@@ -246,8 +246,8 @@
+ extern "C" void (*pcre_free)(void *) = free;
+ extern "C" int (*pcre_callout)(pcre_callout_block *) = NULL;
+ #else
+-void *(*pcre_malloc)(size_t) = malloc;
+-void (*pcre_free)(void *) = free;
++void *(__cdecl *pcre_malloc)(size_t) = malloc;
++void (__cdecl *pcre_free)(void *) = free;
+ int (*pcre_callout)(pcre_callout_block *) = NULL;
+ #endif
+ #endif
diff --git a/auto/lib/pcre/patch.pcre.in b/auto/lib/pcre/patch.pcre.in
index c49a68f7b..7ae32a998 100644
--- a/auto/lib/pcre/patch.pcre.in
+++ b/auto/lib/pcre/patch.pcre.in
@@ -1,5 +1,5 @@
--- pcre.in Thu Aug 21 14:43:07 2003
-+++ pcre.in Sun Mar 7 02:10:11 2004
++++ pcre.h Tue Mar 22 12:56:59 2005
@@ -10,9 +10,9 @@
/* The file pcre.h is build by "configure". Do not edit it; instead
make changes to pcre.in. */
@@ -13,3 +13,14 @@
/* Win32 uses DLL by default */
+@@ -143,8 +143,8 @@
+ have to be different again. */
+
+ #ifndef VPCOMPAT
+-PCRE_DATA_SCOPE void *(*pcre_malloc)(size_t);
+-PCRE_DATA_SCOPE void (*pcre_free)(void *);
++PCRE_DATA_SCOPE void *(__cdecl *pcre_malloc)(size_t);
++PCRE_DATA_SCOPE void (__cdecl *pcre_free)(void *);
+ PCRE_DATA_SCOPE int (*pcre_callout)(pcre_callout_block *);
+ #else /* VPCOMPAT */
+ extern void *pcre_malloc(size_t);
diff --git a/auto/lib/pcre/patch.pcre.in.owc b/auto/lib/pcre/patch.pcre.in.owc
new file mode 100644
index 000000000..8adbcbc9f
--- /dev/null
+++ b/auto/lib/pcre/patch.pcre.in.owc
@@ -0,0 +1,15 @@
+--- pcre.in Thu Aug 21 14:43:07 2003
++++ pcre.h Tue Mar 22 12:56:59 2005
+@@ -10,9 +10,9 @@
+ /* The file pcre.h is build by "configure". Do not edit it; instead
+ make changes to pcre.in. */
+
+-#define PCRE_MAJOR @PCRE_MAJOR@
+-#define PCRE_MINOR @PCRE_MINOR@
+-#define PCRE_DATE @PCRE_DATE@
++#define PCRE_MAJOR 4
++#define PCRE_MINOR 4
++#define PCRE_DATE 21-August-2003
+
+ /* Win32 uses DLL by default */
+
diff --git a/auto/lib/zlib/make b/auto/lib/zlib/make
index 1859a34b8..715d2cf96 100644
--- a/auto/lib/zlib/make
+++ b/auto/lib/zlib/make
@@ -6,18 +6,18 @@ case "$NGX_CC_NAME" in
msvc*)
ngx_makefile=makefile.msvc
- ngx_opt="CPU_OPT=$CPU_OPT LIBC=$LIBC"
+ ngx_opt="CPU_OPT=\"$CPU_OPT\" LIBC=$LIBC"
;;
owc*)
ngx_makefile=makefile.owc
- ngx_opt="CPU_OPT=$CPU_OPT"
+ ngx_opt="CPU_OPT=\"$CPU_OPT\""
;;
bcc)
ngx_makefile=makefile.bcc
- ngx_opt="-DCPU_OPT=$CPU_OPT"
+ ngx_opt="-DCPU_OPT=\"$CPU_OPT\""
;;
esac
diff --git a/auto/lib/zlib/patch.zlib.h b/auto/lib/zlib/patch.zlib.h
new file mode 100644
index 000000000..122f7fa86
--- /dev/null
+++ b/auto/lib/zlib/patch.zlib.h
@@ -0,0 +1,10 @@
+--- zlib.h Thu Jul 9 20:06:56 1998
++++ zlib-1.1.3/zlib.h Tue Mar 22 13:41:04 2005
+@@ -709,7 +709,6 @@
+ (0 in case of error).
+ */
+
+-ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...));
+ /*
+ Converts, formats, and writes the args to the compressed file under
+ control of the format string, as in fprintf. gzprintf returns the number of
diff --git a/auto/modules b/auto/modules
index 1fe9ac8d1..4ab272ed8 100644
--- a/auto/modules
+++ b/auto/modules
@@ -104,6 +104,14 @@ fi
HTTP_MODULES="$HTTP_MODULES $HTTP_INDEX_MODULE"
+if [ $HTTP_AUTH_BASIC = YES ]; then
+ have=NGX_HTTP_AUTH_BASIC . auto/have
+ have=NGX_CRYPT . auto/have
+ HTTP_MODULES="$HTTP_MODULES $HTTP_AUTH_BASIC_MODULE"
+ HTTP_SRCS="$HTTP_SRCS $HTTP_AUTH_BASIC_SRCS"
+ CORE_LIBS="$CORE_LIBS $CRYPT_LIB"
+fi
+
if [ $HTTP_ACCESS = YES ]; then
have=NGX_HTTP_ACCESS . auto/have
HTTP_MODULES="$HTTP_MODULES $HTTP_ACCESS_MODULE"
diff --git a/auto/options b/auto/options
index a8146d967..2bdb5dfa3 100644
--- a/auto/options
+++ b/auto/options
@@ -50,6 +50,7 @@ HTTP_GZIP=YES
HTTP_SSL=NO
HTTP_SSI=YES
HTTP_ACCESS=YES
+HTTP_AUTH_BASIC=YES
HTTP_USERID=YES
HTTP_AUTOINDEX=YES
HTTP_STATUS=NO
@@ -127,6 +128,7 @@ do
--without-http_ssi_module) HTTP_SSI=NO ;;
--without-http_userid_module) HTTP_USERID=NO ;;
--without-http_access_module) HTTP_ACCESS=NO ;;
+ --without-http_auth_basic_module) HTTP_AUTH_BASIC=NO ;;
--without-http_autoindex_module) HTTP_AUTOINDEX=NO ;;
--without-http_status_module) HTTP_STATUS=NO ;;
--without-http_geo_module) HTTP_GEO=NO ;;
@@ -207,6 +209,7 @@ cat << END
--without-http_ssi_module disable ngx_http_ssi_module
--without-http_userid_module disable ngx_http_userid_module
--without-http_access_module disable ngx_http_access_module
+ --without-http_auth_basic_module disable ngx_http_auth_basic_module
--without-http_autoindex_module disable ngx_http_autoindex_module
--without-http_geo_module disable ngx_http_geo_module
--without-http_rewrite_module disable ngx_http_rewrite_module
diff --git a/auto/os/conf b/auto/os/conf
index 8c4739fbf..b48b6404d 100644
--- a/auto/os/conf
+++ b/auto/os/conf
@@ -39,6 +39,7 @@ case "$NGX_PLATFORM" in
CORE_INCS="$UNIX_INCS"
CORE_DEPS="$UNIX_DEPS $POSIX_DEPS"
CORE_SRCS="$UNIX_SRCS"
+ CRYPT_LIB="-lcrypt"
;;
esac
diff --git a/auto/os/freebsd b/auto/os/freebsd
index dfb547f3b..133f5f55b 100644
--- a/auto/os/freebsd
+++ b/auto/os/freebsd
@@ -14,6 +14,7 @@ END
CORE_INCS="$UNIX_INCS"
CORE_DEPS="$UNIX_DEPS $FREEBSD_DEPS"
CORE_SRCS="$UNIX_SRCS $FREEBSD_SRCS"
+CRYPT_LIB="-lcrypt"
ngx_spacer='
'
diff --git a/auto/os/linux b/auto/os/linux
index a83c1803b..84e4f6667 100644
--- a/auto/os/linux
+++ b/auto/os/linux
@@ -13,7 +13,7 @@ END
CORE_INCS="$UNIX_INCS"
CORE_DEPS="$UNIX_DEPS $LINUX_DEPS"
CORE_SRCS="$UNIX_SRCS $LINUX_SRCS"
-EVENT_MODULES="$EVENT_MODULES"
+CRYPT_LIB="-lcrypt"
ngx_spacer='
'
diff --git a/auto/os/solaris b/auto/os/solaris
index 2348c8985..67e0a8e6b 100644
--- a/auto/os/solaris
+++ b/auto/os/solaris
@@ -13,8 +13,6 @@ END
CORE_INCS="$UNIX_INCS"
CORE_DEPS="$UNIX_DEPS $SOLARIS_DEPS"
CORE_SRCS="$UNIX_SRCS $SOLARIS_SRCS "
-EVENT_MODULES="$EVENT_MODULES"
-
CORE_LIBS="$CORE_LIBS -lsocket -lnsl -lrt"
# Solaris's make does not support a blank line between target and rules
diff --git a/auto/sources b/auto/sources
index 288495f72..fd46edd11 100644
--- a/auto/sources
+++ b/auto/sources
@@ -123,6 +123,7 @@ UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
src/os/unix/ngx_thread.h \
src/os/unix/ngx_socket.h \
src/os/unix/ngx_os.h \
+ src/os/unix/ngx_user.h \
src/os/unix/ngx_process_cycle.h"
UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
@@ -142,6 +143,7 @@ UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
src/os/unix/ngx_daemon.c \
src/os/unix/ngx_setproctitle.c \
src/os/unix/ngx_posix_init.c \
+ src/os/unix/ngx_user.c \
src/os/unix/ngx_process_cycle.c"
POSIX_DEPS=src/os/unix/ngx_posix_config.h
@@ -180,6 +182,7 @@ WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
src/os/win32/ngx_thread.h \
src/os/win32/ngx_socket.h \
src/os/win32/ngx_os.h \
+ src/os/win32/ngx_user.h \
src/os/win32/ngx_gui.h \
src/os/win32/ngx_gui_resources.h \
src/os/win32/ngx_process_cycle.h"
@@ -198,6 +201,7 @@ WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
src/os/win32/ngx_wsarecv_chain.c \
src/os/win32/ngx_wsasend_chain.c \
src/os/win32/ngx_win32_init.c \
+ src/os/win32/ngx_user.c \
src/os/win32/ngx_gui.c \
src/os/win32/ngx_process_cycle.c \
src/event/ngx_event_acceptex.c"
@@ -290,6 +294,10 @@ HTTP_ACCESS_MODULE=ngx_http_access_module
HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_module.c
+HTTP_AUTH_BASIC_MODULE=ngx_http_auth_basic_module
+HTTP_AUTH_BASIC_SRCS=src/http/modules/ngx_http_auth_basic_module.c
+
+
HTTP_AUTOINDEX_MODULE=ngx_http_autoindex_module
HTTP_AUTOINDEX_SRCS=src/http/modules/ngx_http_autoindex_module.c