wofi: update to 1.3.
This commit is contained in:
parent
dd8f30658a
commit
f70cccb8ca
|
@ -1,30 +0,0 @@
|
||||||
# HG changeset patch
|
|
||||||
# User Scoopta <scoopta@scoopta.email>
|
|
||||||
# Date 1601697276 25200
|
|
||||||
# Fri Oct 02 20:54:36 2020 -0700
|
|
||||||
# Node ID 8a4a5e29ca9c1fb0a11ed9b329d275f5c02154a6
|
|
||||||
# Parent ac8dc17ab751b13b6d4ddcc1a1467e4beb8d7d26
|
|
||||||
The mode thread will not be joined multiple times as this causes segfaults under musl
|
|
||||||
|
|
||||||
--- a/src/wofi.c
|
|
||||||
+++ b/src/wofi.c
|
|
||||||
@@ -103,6 +103,7 @@
|
|
||||||
static bool dynamic_lines;
|
|
||||||
static struct wl_list mode_list;
|
|
||||||
static pthread_t mode_thread;
|
|
||||||
+static bool has_joined_mode = false;
|
|
||||||
|
|
||||||
static struct map* keys;
|
|
||||||
|
|
||||||
@@ -596,7 +597,10 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
static gboolean insert_all_widgets(gpointer data) {
|
|
||||||
- pthread_join(mode_thread, NULL);
|
|
||||||
+ if(!has_joined_mode) {
|
|
||||||
+ pthread_join(mode_thread, NULL);
|
|
||||||
+ has_joined_mode = true;
|
|
||||||
+ }
|
|
||||||
struct wl_list* modes = data;
|
|
||||||
if(modes->prev == modes) {
|
|
||||||
return FALSE;
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'wofi'
|
# Template file for 'wofi'
|
||||||
pkgname=wofi
|
pkgname=wofi
|
||||||
version=1.2.4
|
version=1.3
|
||||||
revision=2
|
revision=1
|
||||||
wrksrc="${pkgname}-v${version}"
|
wrksrc="${pkgname}-v${version}"
|
||||||
build_style=meson
|
build_style=meson
|
||||||
hostmakedepends="pkg-config"
|
hostmakedepends="pkg-config"
|
||||||
|
@ -11,4 +11,4 @@ maintainer="Zach Dykstra <dykstra.zachary@gmail.com>"
|
||||||
license="GPL-3.0-or-later"
|
license="GPL-3.0-or-later"
|
||||||
homepage="https://hg.sr.ht/~scoopta/wofi"
|
homepage="https://hg.sr.ht/~scoopta/wofi"
|
||||||
distfiles="https://hg.sr.ht/~scoopta/wofi/archive/v${version}.tar.gz"
|
distfiles="https://hg.sr.ht/~scoopta/wofi/archive/v${version}.tar.gz"
|
||||||
checksum=@fee85efc35e97946d3a94562775b902982c4ab1f521208308ecc4bb41547a5e3
|
checksum=7644e4e995bc027b7f3f411ceda82b3e2a72a4a424f6193663c27bbf00f23067
|
||||||
|
|
Loading…
Reference in New Issue