Skip to content
This repository has been archived by the owner on Aug 25, 2022. It is now read-only.

Commit

Permalink
Don't use system PCRE
Browse files Browse the repository at this point in the history
refs #116
  • Loading branch information
fredemmott committed Feb 27, 2019
1 parent 4d8d0ae commit 400299d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Formula/hhvm-nightly.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def optimization_flags
depends_on "mcrypt"
depends_on "oniguruma"
depends_on "openssl"
depends_on "pcre"
# depends_on "pcre" # Need to investigate segfaults. Issue #116
depends_on "postgresql"
depends_on "sqlite"
depends_on "tbb"
Expand All @@ -76,6 +76,11 @@ def install
-DDEFAULT_CONFIG_DIR=#{etc}/hhvm
]

# Force use of bundled PCRE to workaround #116
cmake_args += %W[
-DSYSTEM_PCRE_HAS_JIT=0
]

# Features which don't work on OS X yet since they haven't been ported yet.
cmake_args += %W[
-DENABLE_MCROUTER=OFF
Expand Down

0 comments on commit 400299d

Please sign in to comment.