added my Recipes

This commit is contained in:
2024-07-11 14:16:35 +02:00
parent 38bc4f53ac
commit 09b621d929
7118 changed files with 525762 additions and 3 deletions

View File

@@ -0,0 +1,31 @@
From 9e7894b97ae7afe43a9901b774de5aef401549ac Mon Sep 17 00:00:00 2001
From: Bartosz Golaszewski <brgl@bgdev.pl>
Date: Thu, 28 Apr 2022 16:32:06 +0200
Subject: [PATCH] ext: define FNM_EXTMATCH if not already defined
On musl this constant is not defined. Define it locally if not present.
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
---
Upstream-Status: Inappropriate
src/ext.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/ext.c b/src/ext.c
index 2ba9a14..98ffc20 100644
--- a/src/ext.c
+++ b/src/ext.c
@@ -18,6 +18,9 @@
#include <sys/un.h>
#include <unistd.h>
+#ifndef FNM_EXTMATCH
+#define FNM_EXTMATCH 0
+#endif
PyDoc_STRVAR(ext__doc__,
"Wrapper for fanotify.\n"
--
2.32.0