summaryrefslogtreecommitdiff
path: root/utils/Makefile
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2007-11-17 10:54:52 +0000
committerLuigi Rizzo <rizzo@icir.org>2007-11-17 10:54:52 +0000
commit7cd78079ae59c8861c75a93712ba7651558233a8 (patch)
tree5a1238373259b4826d15db062401668a35c38bf3 /utils/Makefile
parenta45c53bc5b6c5bd40b17f6bb5d3c2af100977dee (diff)
more cygwin/mingw32 compatibility fixes
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89373 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils/Makefile')
-rw-r--r--utils/Makefile8
1 files changed, 8 insertions, 0 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