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
pull/113/head
Oliver Giles 4 years ago
parent a7e6094d01
commit f981491a34

@ -24,6 +24,11 @@
#include <set>
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
// a certain environment to a set of Jobs, or setting a limit on the number
// of parallel Runs

Loading…
Cancel
Save