mirror of
https://github.com/nginx/nginx.git
synced 2024-12-01 03:03:59 +08:00
d5591e914e
As of PCRE 8.33, config.h.generic no longer contains boolean macros. Two of them (SUPPORT_PCRE8 and HAVE_MEMMOVE) were added to appropriate makefiles. This allows PCRE 8.33 to compile and don't change anything for previous versions.
24 lines
474 B
Plaintext
24 lines
474 B
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
# Copyright (C) Nginx, Inc.
|
|
|
|
|
|
CFLAGS = -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT)
|
|
PCREFLAGS = -DHAVE_CONFIG_H -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10 \
|
|
-DSUPPORT_PCRE8 -DHAVE_MEMMOVE
|
|
|
|
|
|
pcre.lib:
|
|
cd $(PCRE)
|
|
|
|
cl -nologo -c $(CFLAGS) -I . $(PCREFLAGS) pcre_*.c
|
|
|
|
link -lib -out:pcre.lib -verbose:lib pcre_*.obj
|
|
|
|
pcre.h:
|
|
cd $(PCRE)
|
|
|
|
copy /y pcre.h.generic pcre.h
|
|
copy /y config.h.generic config.h
|
|
copy /y pcre_chartables.c.dist pcre_chartables.c
|