shithub: m8c

Download patch

ref: 02edd91075e2f6d92676a3927373384fa12548c1
parent: 1b33b48d9c402cbaacf8db6e2c44e411291a666b
author: Maido Käära <maido@producement.com>
date: Sat Jan 28 06:31:27 EST 2023

Check SIGQUIT existence

--- a/main.c
+++ b/main.c
@@ -56,8 +56,9 @@
 
   signal(SIGINT, intHandler);
   signal(SIGTERM, intHandler);
+#ifdef SIGQUIT
   signal(SIGQUIT, intHandler);
-
+#endif
   slip_init(&slip, &slip_descriptor);
 
   // First device detection to avoid SDL init if it isn't necessary
--