mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
bitlbee-mastodon: fix gcc-15 build (#484860)
This commit is contained in:
17
pkgs/by-name/bi/bitlbee-mastodon/gcc-15.patch
Normal file
17
pkgs/by-name/bi/bitlbee-mastodon/gcc-15.patch
Normal file
@@ -0,0 +1,17 @@
|
||||
https://github.com/kensanata/bitlbee-mastodon/pull/61
|
||||
|
||||
FIx gcc-15 build (`bool` collision).
|
||||
--- a/src/mastodon-lib.c
|
||||
+++ b/src/mastodon-lib.c
|
||||
@@ -2093,9 +2093,9 @@ static char *indent(int n)
|
||||
/**
|
||||
* Return a static yes or no string. No deallocation needed.
|
||||
*/
|
||||
-static char *yes_or_no(int bool)
|
||||
+static char *yes_or_no(int b)
|
||||
{
|
||||
- return bool ? "yes" : "no";
|
||||
+ return b ? "yes" : "no";
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -17,6 +17,11 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
sha256 = "sha256-8vmq/YstuBYUxe00P4NrxD/eMYI++R9uvn1sCcMTr7I=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# gcc-15 build fix: https://github.com/kensanata/bitlbee-mastodon/pull/61
|
||||
./gcc-15.patch
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
|
||||
Reference in New Issue
Block a user