diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-05-13 19:48:21 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-05-13 19:48:21 +0000 |
commit | ea8828b99ef34db70937f03adf02ab76ddd9dd7a (patch) | |
tree | 2e0c7ceef53a14dee583cfad7c31974c32d4e15a /auto/lib/pcre/makefile.owc | |
parent | 5147f8e9cadf5f2c1b9600817cce38590d2a99db (diff) | |
download | nginx-ea8828b99ef34db70937f03adf02ab76ddd9dd7a.tar.gz nginx-ea8828b99ef34db70937f03adf02ab76ddd9dd7a.zip |
switch Win32 building to modern PCRE versions (starting from 7.1)
instead of single old 4.4 version
Diffstat (limited to 'auto/lib/pcre/makefile.owc')
-rw-r--r-- | auto/lib/pcre/makefile.owc | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/auto/lib/pcre/makefile.owc b/auto/lib/pcre/makefile.owc index 12c622010..b2f1d1297 100644 --- a/auto/lib/pcre/makefile.owc +++ b/auto/lib/pcre/makefile.owc @@ -3,20 +3,21 @@ CFLAGS = -c -zq -bt=nt -ot -op -oi -oe -s -bm $(CPU_OPT) -PCREFLAGS = -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10 +PCREFLAGS = -DHAVE_CONFIG_H -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10 pcre.lib: cd $(PCRE) - wcl386 -zq -bt=nt -l=nt -fe=dftables dftables.c - dftables > chartables.c + wcl386 $(CFLAGS) -i=. $(PCREFLAGS) pcre_*.c - wcl386 $(CFLAGS) $(PCREFLAGS) maketables.c get.c study.c pcre.c - wlib -n pcre.lib maketables.obj get.obj study.obj pcre.obj + dir /b *.obj > pcre.lst + wlib -n pcre.lib @pcre.lst pcre.h: cd $(PCRE) - patch -o pcre.h pcre.in patch.pcre.in.owc - patch -o config.h config.in patch.config.in + + copy /y pcre.h.generic pcre.h + copy /y config.h.generic config.h + copy /y pcre_chartables.c.dist pcre_chartables.c |