summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/boinc/boinc-client
diff options
context:
space:
mode:
authorGianfranco Costamagna <costamagna.gianfranco@gmail.com>2022-11-23 14:06:05 +0100
committerKhem Raj <raj.khem@gmail.com>2022-11-23 08:25:31 -0800
commitc897f9291a940b075a7e10270a89625a083b0612 (patch)
tree4086479876b6a03b511cdb116283e475e9ae753c /meta-oe/recipes-extended/boinc/boinc-client
parentd7f46fa816964e30edb2ccfecc57a26251cc351c (diff)
downloadmeta-openembedded-c897f9291a940b075a7e10270a89625a083b0612.tar.gz
boinc-client: Update boinc from 7.18.1 to 7.20.4
Drop patches now upstream, or deprecated due to gtk3 switch Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/boinc/boinc-client')
-rw-r--r--meta-oe/recipes-extended/boinc/boinc-client/4563.patch36
-rw-r--r--meta-oe/recipes-extended/boinc/boinc-client/gtk-configure.patch28
2 files changed, 0 insertions, 64 deletions
diff --git a/meta-oe/recipes-extended/boinc/boinc-client/4563.patch b/meta-oe/recipes-extended/boinc/boinc-client/4563.patch
deleted file mode 100644
index a18da45395..0000000000
--- a/meta-oe/recipes-extended/boinc/boinc-client/4563.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1From 689dc20ede9768377d4032ff8c70b58269c8dc9c Mon Sep 17 00:00:00 2001
2From: Charlie Fenton <charlief@example.com>
3Date: Mon, 18 Oct 2021 01:43:08 -0700
4Subject: [PATCH 01/10] Mac: update dependent libraries to latest:
5 c-ares-1.17.2, curl-7.79.1, freetype-2.11.0, openssl-3.0.0 Previously updated
6 to wxWidgets-3.1.5. FTGL version ftgl-2.1.3~rc5 is still the current
7 version.
8
9---
10 lib/crypt.cpp | 7 +-
11 8 files changed, 199 insertions(+), 150 deletions(-)
12
13diff --git a/lib/crypt.cpp b/lib/crypt.cpp
14index 01249cfc340..9b1f69160b8 100644
15--- a/lib/crypt.cpp
16+++ b/lib/crypt.cpp
17@@ -1,6 +1,6 @@
18 // This file is part of BOINC.
19 // http://boinc.berkeley.edu
20-// Copyright (C) 2008 University of California
21+// Copyright (C) 2021 University of California
22 //
23 // BOINC is free software; you can redistribute it and/or modify it
24 // under the terms of the GNU Lesser General Public License
25@@ -672,7 +672,10 @@ int check_validity_of_cert(
26 }
27 #ifdef HAVE_OPAQUE_RSA_DSA_DH
28 RSA *rsa;
29- rsa = EVP_PKEY_get0_RSA(pubKey);
30+ // CAUTION: In OpenSSL 3.0.0, EVP_PKEY_get0_RSA() now returns a
31+ // pointer of type "const struct rsa_st*" to an immutable value.
32+ // Do not try to modify the contents of the returned struct.
33+ rsa = (rsa_st*)EVP_PKEY_get0_RSA(pubKey);
34 if (!RSA_blinding_on(rsa, c)) {
35 #else
36 if (!RSA_blinding_on(pubKey->pkey.rsa, c)) {
diff --git a/meta-oe/recipes-extended/boinc/boinc-client/gtk-configure.patch b/meta-oe/recipes-extended/boinc/boinc-client/gtk-configure.patch
deleted file mode 100644
index 3b814e903c..0000000000
--- a/meta-oe/recipes-extended/boinc/boinc-client/gtk-configure.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1From d53e9617fb6446780478bb13907efd111f241cd1 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 3 Nov 2016 01:20:33 -0700
4Subject: [PATCH] Check for gtk2+ only when manager is enabled
5
6Signed-off-by: Khem Raj <raj.khem@gmail.com>
7Upstream-Status: Pending
8
9---
10 configure.ac | 6 +++++-
11 1 file changed, 5 insertions(+), 1 deletion(-)
12
13diff --git a/configure.ac b/configure.ac
14index 7beeb34ae2..35234c2762 100644
15--- a/configure.ac
16+++ b/configure.ac
17@@ -1044,6 +1044,11 @@ else
18 AM_CONDITIONAL([GUI_GTK], false)
19 fi
20
21+dnl ---------- GTK+2.0-----------------------------------------------------
22+if test "X${no_x}" != "Xyes"; then
23+ PKG_CHECK_MODULES([GTK2], [gtk+-2.0])
24+fi
25+
26 dnl ---------- libNotify --------------------------------------------------
27 if test "${enable_manager}" = yes ; then
28 PKG_CHECK_MODULES(LIBNOTIFY, [libnotify])