[svn-commits] russell: branch 1.4 r252766 - /branches/1.4/utils/Makefile

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Mar 16 14:00:46 CDT 2010


Author: russell
Date: Tue Mar 16 14:00:43 2010
New Revision: 252766

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=252766
Log:
Don't treat warnings as errors for muted.

muted supports OS X, but uses functions marked as deprecated in 10.6.  However,
the functions are still supported, so just ignore the warnings for now and
allow the build to proceed.

Modified:
    branches/1.4/utils/Makefile

Modified: branches/1.4/utils/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/utils/Makefile?view=diff&rev=252766&r1=252765&r2=252766
==============================================================================
--- branches/1.4/utils/Makefile (original)
+++ branches/1.4/utils/Makefile Tue Mar 16 14:00:43 2010
@@ -137,6 +137,7 @@
 
 muted: muted.o
 muted: LIBS+=$(AUDIO_LIBS)
+muted: _ASTCFLAGS:=$(filter-out -Werror,$(_ASTCFLAGS))
 
 ifneq ($(wildcard .*.d),)
    include .*.d




More information about the svn-commits mailing list