1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00

astro/mepo: unbreak zoom in/out on SIGUSR1/SIGUSR2

https://git.sr.ht/~mil/mepo/commit/2e50c6f02618
This commit is contained in:
Jan Beich 2023-02-06 12:39:00 +00:00
parent 453f85d1f1
commit e239314a86
2 changed files with 26 additions and 0 deletions

View File

@ -1,5 +1,6 @@
PORTNAME= mepo
DISTVERSION= 1.1.2
PORTREVISION= 1
CATEGORIES= astro geography wayland
MASTER_SITES= https://git.sr.ht/~mil/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/

View File

@ -0,0 +1,25 @@
https://lists.sr.ht/~mil/mepo-devel/patches/38775
--- src/api/bind_signal.zig.orig 2023-02-01 03:43:08 UTC
+++ src/api/bind_signal.zig
@@ -39,13 +39,14 @@ fn bind_signal(mepo: *Mepo, signo_str: [:0]const u8, expression: []const u8) !vo
}
// Register generic signal handler
- if (0 != std.os.linux.sigaction(signal_name, &.{
+ const signal_action = std.os.Sigaction{
.handler = .{ .handler = utilsdl.sdl_push_event_signal },
- .mask = [_]u32{0} ** 32,
- .flags = @as(c_uint, 0),
- }, null)) {
- return error.FailedToSetupSighandler;
- }
+ .mask = std.os.empty_sigset,
+ .flags = 0,
+ };
+
+ std.os.sigaction(signal_name, &signal_action, null)
+ catch return error.FailedToSetupSighandler;
if (mepo.table_signals.get(signal_name)) |heap_str| {
mepo.allocator.free(heap_str);