diff options
author | Karlson2k <k2k@narod.ru> | 2013-11-19 20:05:31 +0400 |
---|---|---|
committer | Karlson2k <k2k@narod.ru> | 2013-11-19 21:22:35 +0400 |
commit | e926fc09e736b4e4972ae7e87534bf2a43e9dcd0 (patch) | |
tree | 61ea8b24f59917ce82ca454b5664dc5fe907bd1c /tools/depends | |
parent | 646276b9b60922f12eb2a8ad8e728071e8e754f4 (diff) |
[depends] update PCRE version, use new configure flags
Diffstat (limited to 'tools/depends')
-rw-r--r-- | tools/depends/target/pcre/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/depends/target/pcre/Makefile b/tools/depends/target/pcre/Makefile index 730453dd2c..141573493d 100644 --- a/tools/depends/target/pcre/Makefile +++ b/tools/depends/target/pcre/Makefile @@ -3,12 +3,16 @@ DEPS= ../../Makefile.include Makefile # lib name, version LIBNAME=pcre -VERSION=7.9 +VERSION=8.33 SOURCE=$(LIBNAME)-$(VERSION) ARCHIVE=$(SOURCE).tar.gz # configuration settings -CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; ./configure --prefix=$(PREFIX) --disable-stack-for-recursion --disable-shared +CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; ./configure --prefix=$(PREFIX) \ + --disable-shared --disable-stack-for-recursion \ + --enable-pcre8 --disable-pcre16 --disable-pcre32 \ + --enable-jit --enable-utf --enable-unicode-properties \ + --enable-newline-is-anycrlf LIBDYLIB=$(PLATFORM)/.libs/lib$(LIBNAME).a |