1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2024-10-27 20:34:20 +00:00

define FNM_EXTMATCH to 0 if undefined

FNM_EXTMATCH is undefined under musl. In that case, we
just won't support extended match patterns.

Resolves #110
This commit is contained in:
Oliver Giles 2020-02-25 20:36:24 +02:00
parent a7e6094d01
commit f981491a34

View File

@ -24,6 +24,11 @@
#include <set> #include <set>
class Run; class Run;
// FNM_EXTMATCH isn't supported under musl
#if !defined(FNM_EXTMATCH)
#define FNM_EXTMATCH 0
#endif
// Represents a context within which a Run will be executed. Allows applying // Represents a context within which a Run will be executed. Allows applying
// a certain environment to a set of Jobs, or setting a limit on the number // a certain environment to a set of Jobs, or setting a limit on the number
// of parallel Runs // of parallel Runs