1From 9e7894b97ae7afe43a9901b774de5aef401549ac Mon Sep 17 00:00:00 2001
2From: Bartosz Golaszewski <brgl@bgdev.pl>
3Date: Thu, 28 Apr 2022 16:32:06 +0200
4Subject: [PATCH] ext: define FNM_EXTMATCH if not already defined
5
6On musl this constant is not defined. Define it locally if not present.
7
8Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
9---
10Upstream-Status: Inappropriate
11
12 src/ext.c | 3 +++
13 1 file changed, 3 insertions(+)
14
15diff --git a/src/ext.c b/src/ext.c
16index e0bbe21..7d979d3 100644
17--- a/src/ext.c
18+++ b/src/ext.c
19@@ -19,6 +19,9 @@
20 #include <sys/vfs.h>
21 #include <unistd.h>
22
23+#ifndef FNM_EXTMATCH
24+#define FNM_EXTMATCH 0
25+#endif
26
27 PyDoc_STRVAR(ext__doc__,
28 "Wrapper for fanotify.\n"
29--
302.34.1
31
32