mirror of
https://github.com/nginx/nginx.git
synced 2024-12-01 11:19:00 +08:00
ef31643049
*) Feature: now is possible to do several redirection using the "error_page" directive. *) Bugfix: the "dav_access" directive did not support three parameters. *) Bugfix: the "error_page" directive did not changes the "Content-Type" header line after the "X-Accel-Redirect" was used; the bug had appeared in 0.3.58.
20 lines
321 B
Plaintext
20 lines
321 B
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
CFLAGS = -nologo -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT) -D L_ENDIAN
|
|
|
|
!IF "$(SHA1_ASM)" == "YES"
|
|
|
|
sha1.lib:
|
|
cl -c $(CFLAGS) -D SHA1_ASM sha1dgst.c
|
|
link -lib -out:sha1.lib sha1dgst.obj asm/s-win32.obj
|
|
|
|
!ELSE
|
|
|
|
sha1.lib:
|
|
cl -c $(CFLAGS) sha1dgst.c
|
|
link -lib -out:sha1.lib sha1dgst.obj
|
|
|
|
!ENDIF
|