浏览代码

[pcre] use same configure flags as homebrew (#10110)

Aleksandr Kuzmenko 4 年之前
父节点
当前提交
ccc102778d
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      .github/workflows/main.yml
  2. 1 1
      extra/github-actions/build-mac.yml

+ 1 - 1
.github/workflows/main.yml

@@ -397,7 +397,7 @@ jobs:
           make && make install
           curl -L https://ftp.pcre.org/pub/pcre/pcre-$PCRE_VERSION.tar.gz | tar xz
           cd pcre-$PCRE_VERSION
-          ./configure
+          ./configure --enable-utf8 --enable-pcre8 --enable-pcre16 --enable-pcre32 --enable-unicode-properties --enable-pcregrep-libz --enable-pcregrep-libbz2 --enable-jit
           make && make install
 
 

+ 1 - 1
extra/github-actions/build-mac.yml

@@ -24,7 +24,7 @@
     make && make install
     curl -L https://ftp.pcre.org/pub/pcre/pcre-$PCRE_VERSION.tar.gz | tar xz
     cd pcre-$PCRE_VERSION
-    ./configure
+    ./configure --enable-utf8 --enable-pcre8 --enable-pcre16 --enable-pcre32 --enable-unicode-properties --enable-pcregrep-libz --enable-pcregrep-libbz2 --enable-jit
     make && make install