Dominique Leuenberger
22771ae9f1
After OBS Studio flatpak updating to KDE Runtime 6.6 it was revealed that it no longer could verify SSL certificates. The root cause turned out to be a missing p11-kit-server which on most distributions is installed as recommended along side flatpak (see Fedora). With this little addition I hope to fix random SSL errors for KDE Runtime 6.6 and newer also for openSUSE Tumbleweed. As a side note Leap is affected as well by this. Might be worth back porting this patch? - As per documentation from flatpak 1.0: add weak dep on p11-kit-server for certificate transfer (boo#1188902) OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/flatpak?expand=0&rev=202
14 lines
454 B
Diff
14 lines
454 B
Diff
Index: flatpak-1.15.8/subprojects/libglnx/meson.build
|
|
===================================================================
|
|
--- flatpak-1.15.8.orig/subprojects/libglnx/meson.build
|
|
+++ flatpak-1.15.8/subprojects/libglnx/meson.build
|
|
@@ -40,7 +40,7 @@ foreach check_function : check_functions
|
|
#include <linux/random.h>
|
|
#include <sys/mman.h>
|
|
|
|
- int func (void) {
|
|
+ void func (void) {
|
|
(void) ''' + check_function + ''';
|
|
}
|
|
''',
|