--- /dev/null
+diff -ur poldek-0.44.0.orig/conf.c poldek-0.44.0/conf.c
+--- poldek-0.44.0.orig/conf.c 2025-02-26 12:40:22.000000000 +0100
++++ poldek-0.44.0/conf.c 2025-08-10 22:26:33.098247697 +0200
+@@ -1458,33 +1458,33 @@
+ int poldek_conf_get_bool(const tn_hash *htconf, const char *name, int default_v)
+ {
+ const char *v;
+- int bool;
++ int bit;
+
+ if ((v = poldek_conf_get(htconf, name, NULL)) == NULL)
+ return default_v;
+
+- if ((bool = poldek_util_parse_bool(v)) < 0) {
++ if ((bit = poldek_util_parse_bool(v)) < 0) {
+ logn(LOGERR, _("invalid value ('%s') of boolean option '%s'"), v, name);
+- bool = default_v;
++ bit = default_v;
+ }
+
+- return bool;
++ return bit;
+ }
+
+ int poldek_conf_get_bool3(const tn_hash *htconf, const char *name, int default_v)
+ {
+ const char *v;
+- int bool;
++ int bit;
+
+ if ((v = poldek_conf_get(htconf, name, NULL)) == NULL)
+ return default_v;
+
+- if ((bool = poldek_util_parse_bool3(v)) < 0) {
++ if ((bit = poldek_util_parse_bool3(v)) < 0) {
+ logn(LOGERR, _("invalid value ('%s') of option '%s'"), v, name);
+- bool = default_v;
++ bit = default_v;
+ }
+
+- return bool;
++ return bit;
+ }
+
+
Patch6: verify-fix.patch
Patch7: linguas.patch
Patch8: pkgiter-preun-req-skip.patch
+Patch9: gcc15.patch
URL: http://poldek.pld-linux.org/
BuildRequires: autoconf >= 2.63
BuildRequires: automake >= 1:1.11
%patch -P 6 -p1
%patch -P 7 -p1
%patch -P 8 -p1
+%patch -P 9 -p1
%{__rm} doc/poldek.info
%{__rm} m4/libtool.m4 m4/lt*.m4