aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authortwisted <twisted@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-18 04:22:08 +0000
committertwisted <twisted@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-18 04:22:08 +0000
commitd4f3114e438d628f842aaf686d6d0b0697fb4e99 (patch)
tree4451751d699a9f2745fbac9130ae51f72e91a8c4 /Makefile
parent195245925855327e6d12be2293c8e9fcc57662cd (diff)
Update muted for operation on OSX. :)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6148 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c4c1510c1..1d985edb6 100755
--- a/Makefile
+++ b/Makefile
@@ -247,6 +247,7 @@ endif
ifeq (${OSARCH},Darwin)
LIBS+=-lresolv
CFLAGS+=-D__Darwin__
+AUDIO_LIBS=-framework CoreAudio
endif
ifeq (${OSARCH},FreeBSD)
LIBS+=-lcrypto
@@ -447,7 +448,7 @@ asterisk: editline/libedit.a db1-ast/libdb1.a stdtime/libtime.a $(OBJS) ast_expr
$(CC) $(DEBUG) -o asterisk $(ASTLINK) $(OBJS) ast_expr.a $(LIBEDIT) db1-ast/libdb1.a stdtime/libtime.a $(LIBS)
muted: muted.o
- $(CC) -o muted muted.o
+ $(CC) $(AUDIO_LIBS) -o muted muted.o
subdirs:
for x in $(SUBDIRS); do $(MAKE) -C $$x || exit 1 ; done