php8{1-3}Extensions.phalcon: fix compilation with gcc 14 (#375869)

This commit is contained in:
Pol Dellaiera
2025-01-22 20:48:47 +01:00
committed by GitHub
@@ -23,6 +23,10 @@ buildPecl rec {
php.extensions.pdo
];
# Fix GCC 14 build.
# from incompatible pointer type [-Wincompatible-pointer-types]
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ pcre2 ];