mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
php80: Enable pcre built with jit sealloc
This was an issue back in PHP 7.3 and has been fixed according to the comment made on 2019-10-07: https://bugs.php.net/bug.php?id=78630#1570447943
This commit is contained in:
parent
4d5f61d6c7
commit
c0a1af53c6
@ -15792,7 +15792,7 @@ with pkgs;
|
||||
php80 = callPackage ../development/interpreters/php/8.0.nix {
|
||||
stdenv = if stdenv.cc.isClang then llvmPackages.stdenv else stdenv;
|
||||
pcre2 = pcre2.override {
|
||||
withJitSealloc = false; # Needed to avoid crashes, see https://bugs.php.net/bug.php?id=78630
|
||||
withJitSealloc = !stdenv.isDarwin;
|
||||
};
|
||||
};
|
||||
php80Extensions = recurseIntoAttrs php80.extensions;
|
||||
|
Loading…
Reference in New Issue
Block a user