Pārlūkot izejas kodu

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

Aleksandr Kuzmenko 4 gadi atpakaļ
vecāks
revīzija
ccc102778d
2 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  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