cairo: default ipc_rmid_deferred_release to false

This avoids the need to specify a value for every platform.  Upstream
does this since commit 8d5037ed ("meson: always skip
IPC_RMID_DEFERRED_RELEASE check when cross-compiling").  We might as
well keep the known true values for Linux and FreeBSD around to
preserve the small optimization.
This commit is contained in:
Alyssa Ross
2026-06-15 19:06:04 +02:00
parent 9ae611a455
commit 70f51cc0b2
+1 -4
View File
@@ -99,11 +99,8 @@ stdenv.mkDerivation (
{
linux = "true";
freebsd = "true";
netbsd = "false";
windows = "false";
}
.${stdenv.hostPlatform.parsed.kernel.name}
or (throw "Unknown value for ipc_rmid_deferred_release on ${stdenv.hostPlatform.parsed.kernel.name}")
.${stdenv.hostPlatform.parsed.kernel.name} or "false"
}
''}"
];