08ac2c5
diff -up centerim-4.22.10/libicq2000/libicq2000/sigslot.h.orig centerim-4.22.10/libicq2000/libicq2000/sigslot.h
08ac2c5
--- centerim-4.22.10/libicq2000/libicq2000/sigslot.h.orig	2011-07-01 18:30:14.000000000 +0200
08ac2c5
+++ centerim-4.22.10/libicq2000/libicq2000/sigslot.h	2011-07-01 18:33:37.000000000 +0200
08ac2c5
@@ -82,6 +82,7 @@
08ac2c5
 #ifndef SIGSLOT_H__
08ac2c5
 #define SIGSLOT_H__
08ac2c5
 
08ac2c5
+#include <cstddef>
08ac2c5
 #include <set>
08ac2c5
 #include <list>
08ac2c5
 
6899f91
From ede38abf7d95e80117e4ead893ee7b665b647a78 Mon Sep 17 00:00:00 2001
6899f91
From: Lubomir Rintel <lkundrak@v3.sk>
6899f91
Date: Wed, 10 Apr 2019 17:59:34 +0200
6899f91
Subject: [PATCH] Fix build with gcc 4.3
6899f91
6899f91
auto is a C++ swear word
6899f91
---
6899f91
 src/icqface.h | 2 +-
6899f91
 1 file changed, 1 insertion(+), 1 deletion(-)
6899f91
6899f91
diff --git a/src/icqface.h b/src/icqface.h
6899f91
index f933a90..7d5ce7d 100644
6899f91
--- a/src/icqface.h
6899f91
+++ b/src/icqface.h
6899f91
@@ -245,7 +245,7 @@ class icqface {
6899f91
 	bool updateconf(icqconf::regsound &s, icqconf::regcolor &c);
6899f91
 
6899f91
 	bool finddialog(imsearchparams &s, findsubject subj);
6899f91
-	bool findresults(const imsearchparams &sp, bool auto = false);
6899f91
+	bool findresults(const imsearchparams &sp, bool fauto = false);
6899f91
 	void findready();
6899f91
 
6899f91
 	bool conferencedialog(protocolname &pname, string &name);
6899f91
-- 
6899f91
2.21.0
6899f91