mirror of
https://github.com/nginx/nginx.git
synced 2025-07-25 22:56:59 +08:00
nginx-0.0.2-2004-02-19-11:45:27 import
This commit is contained in:
parent
8ae18a10d6
commit
43c3cd91a9
@ -5,14 +5,11 @@ if [ $PCRE != NONE ]; then
|
|||||||
CORE_SRCS="$CORE_SRCS $REGEX_SRCS"
|
CORE_SRCS="$CORE_SRCS $REGEX_SRCS"
|
||||||
|
|
||||||
if [ "$PLATFORM" = "win32" ]; then
|
if [ "$PLATFORM" = "win32" ]; then
|
||||||
#CFLAGS="$CFLAGS -D PCRE_STATIC -D HAVE_PCRE=1"
|
|
||||||
have=HAVE_PCRE . auto/have
|
have=HAVE_PCRE . auto/have
|
||||||
have=PCRE_STATIC . auto/have
|
have=PCRE_STATIC . auto/have
|
||||||
|
|
||||||
CORE_LIBS="$CORE_LIBS pcre.lib"
|
CORE_LIBS="$CORE_LIBS pcre.lib"
|
||||||
CORE_LINK="$CORE_LINK -libpath:$PCRE"
|
CORE_LINK="$CORE_LINK -libpath:$PCRE"
|
||||||
else
|
else
|
||||||
#CFLAGS="$CFLAGS -D HAVE_PCRE=1"
|
|
||||||
have=HAVE_PCRE . auto/have
|
have=HAVE_PCRE . auto/have
|
||||||
CORE_DEPS="$CORE_DEPS $PCRE/.libs/libpcre.a"
|
CORE_DEPS="$CORE_DEPS $PCRE/.libs/libpcre.a"
|
||||||
CORE_LIBS="$CORE_LIBS -L $PCRE/.libs -lpcre"
|
CORE_LIBS="$CORE_LIBS -L $PCRE/.libs -lpcre"
|
||||||
@ -29,7 +26,12 @@ else
|
|||||||
|
|
||||||
|
|
||||||
if [ $ngx_found = yes ]; then
|
if [ $ngx_found = yes ]; then
|
||||||
|
have=HAVE_PCRE . auto/have
|
||||||
|
|
||||||
|
CORE_DEPS="$CORE_DEPS $REGEX_DEPS"
|
||||||
|
CORE_SRCS="$CORE_SRCS $REGEX_SRCS"
|
||||||
CORE_LIBS="$CORE_LIBS $ngx_libs"
|
CORE_LIBS="$CORE_LIBS $ngx_libs"
|
||||||
|
|
||||||
PCRE=YES
|
PCRE=YES
|
||||||
else
|
else
|
||||||
PCRE=NO
|
PCRE=NO
|
||||||
|
@ -21,7 +21,7 @@ HTTP_SSI=YES
|
|||||||
HTTP_PROXY=YES
|
HTTP_PROXY=YES
|
||||||
|
|
||||||
USE_PCRE=NO
|
USE_PCRE=NO
|
||||||
PCRE=NO
|
PCRE=NONE
|
||||||
|
|
||||||
USE_MD5=NO
|
USE_MD5=NO
|
||||||
MD5=NONE
|
MD5=NONE
|
||||||
@ -58,7 +58,7 @@ do
|
|||||||
|
|
||||||
--with-cc=*) CC="$value" ;;
|
--with-cc=*) CC="$value" ;;
|
||||||
|
|
||||||
--without-pcre) PCRE=NONE ;;
|
--without-pcre) USE_PCRE=NO ;;
|
||||||
--with-pcre=*) PCRE="$value" ;;
|
--with-pcre=*) PCRE="$value" ;;
|
||||||
--with-md5=*) MD5="$value" ;;
|
--with-md5=*) MD5="$value" ;;
|
||||||
--with-zlib=*) ZLIB="$value" ;;
|
--with-zlib=*) ZLIB="$value" ;;
|
||||||
|
Loading…
Reference in New Issue
Block a user