aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile8
-rw-r--r--utils/extconf.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/utils/Makefile b/utils/Makefile
index 2edb26a20..95fcee186 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -30,6 +30,14 @@ ifeq ($(OSARCH),OpenBSD)
UTILS:=$(filter-out muted,$(UTILS))
endif
+ifeq ($(OSARCH),cygwin)
+ UTILS:=$(filter-out muted,$(UTILS))
+endif
+
+ifeq ($(OSARCH),mingw32)
+ UTILS:=
+endif
+
ifneq ($(findstring darwin,$(OSARCH)),)
AUDIO_LIBS=-framework CoreAudio
endif
diff --git a/utils/extconf.c b/utils/extconf.c
index 0028e82ae..0e4071833 100644
--- a/utils/extconf.c
+++ b/utils/extconf.c
@@ -1146,7 +1146,7 @@ extern int ast_language_is_prefix;
/* Asterisk REQUIRES recursive (not error checking) mutexes
and will not run without them. */
-#if defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP)
+#if defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP) && defined(PTHREAD_MUTEX_RECURSIVE_NP)
#define PTHREAD_MUTEX_INIT_VALUE PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
#define AST_MUTEX_KIND PTHREAD_MUTEX_RECURSIVE_NP
#else