mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 07:07:24 +02:00
15 lines
402 B
Diff
15 lines
402 B
Diff
musl doesn't define W* macros.
|
|
---
|
|
--- a/src/ptyxis-application.c
|
|
+++ b/src/ptyxis-application.c
|
|
@@ -42,6 +42,10 @@
|
|
#define PORTAL_OBJECT_PATH "/org/freedesktop/portal/desktop"
|
|
#define PORTAL_SETTINGS_INTERFACE "org.freedesktop.portal.Settings"
|
|
|
|
+#ifndef W_EXITCODE
|
|
+#define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
|
|
+#endif
|
|
+
|
|
struct _PtyxisApplication
|
|
{
|
|
AdwApplication parent_instance;
|