aboutsummaryrefslogtreecommitdiffstats
path: root/channels/Makefile
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-02 04:14:20 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-02 04:14:20 +0000
commit57ed48ea1d69e5e73867d791ac94bac5bef3db48 (patch)
tree19b20e91a6d9a23057ea99594fee71d40005961f /channels/Makefile
parent3602563f1633f2b154e3b89c28a88f279a7eb61f (diff)
There is a troublesome assert() in the alsa/control.h header that causes
GCC 4.3.2 to complain that the passed argument will always evaluate to true. So to get things to compile, disable assert when building chan_usbradio.so. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@153507 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/Makefile')
-rw-r--r--channels/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/channels/Makefile b/channels/Makefile
index 66e2e3ff4..9081e0cf0 100644
--- a/channels/Makefile
+++ b/channels/Makefile
@@ -105,5 +105,6 @@ $(if $(filter chan_oss,$(EMBEDDED_MODS)),modules.link,chan_oss.so): console_vide
chan_usbradio.o: ./xpmr/xpmr.c ./xpmr/xpmr.h ./xpmr/xpmr_coef.h
chan_usbradio.so: LIBS+=-lusb -lasound
+chan_usbradio.so: ASTCFLAGS+=-DNDEBUG