[asterisk-commits] trunk r23536 - in /trunk: ./ build_tools/
include/asterisk/
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sun Apr 30 01:47:48 MST 2006
Author: kpfleming
Date: Sun Apr 30 03:47:47 2006
New Revision: 23536
URL: http://svn.digium.com/view/asterisk?rev=23536&view=rev
Log:
remove T38_SUPPORT define that is no longer needed
Modified:
trunk/asterisk.c
trunk/build_tools/cflags.xml
trunk/channel.c
trunk/include/asterisk/frame.h
Modified: trunk/asterisk.c
URL: http://svn.digium.com/view/asterisk/trunk/asterisk.c?rev=23536&r1=23535&r2=23536&view=diff
==============================================================================
--- trunk/asterisk.c (original)
+++ trunk/asterisk.c Sun Apr 30 03:47:47 2006
@@ -111,9 +111,7 @@
#include "asterisk/enum.h"
#include "asterisk/rtp.h"
#include "asterisk/http.h"
-#if defined(T38_SUPPORT)
#include "asterisk/udptl.h"
-#endif
#include "asterisk/app.h"
#include "asterisk/lock.h"
#include "asterisk/utils.h"
@@ -2582,9 +2580,7 @@
exit(1);
}
ast_rtp_init();
-#if defined(T38_SUPPORT)
ast_udptl_init();
-#endif
if (ast_image_init()) {
printf(term_quit());
exit(1);
Modified: trunk/build_tools/cflags.xml
URL: http://svn.digium.com/view/asterisk/trunk/build_tools/cflags.xml?rev=23536&r1=23535&r2=23536&view=diff
==============================================================================
--- trunk/build_tools/cflags.xml (original)
+++ trunk/build_tools/cflags.xml Sun Apr 30 03:47:47 2006
@@ -17,7 +17,4 @@
</member>
<member name="-DMTX_PROFILE">
</member>
- <member name="-DT38_SUPPORT">
- <defaultenabled>yes</defaultenabled>
- </member>
</category>
Modified: trunk/channel.c
URL: http://svn.digium.com/view/asterisk/trunk/channel.c?rev=23536&r1=23535&r2=23536&view=diff
==============================================================================
--- trunk/channel.c (original)
+++ trunk/channel.c Sun Apr 30 03:47:47 2006
@@ -3330,9 +3330,7 @@
(f->frametype == AST_FRAME_VIDEO) ||
(f->frametype == AST_FRAME_IMAGE) ||
(f->frametype == AST_FRAME_HTML) ||
-#if defined(T38_SUPPORT)
(f->frametype == AST_FRAME_MODEM) ||
-#endif
(f->frametype == AST_FRAME_TEXT)) {
/* monitored dtmf causes exit from bridge */
int monitored_source = (who == c0) ? watch_c0_dtmf : watch_c1_dtmf;
Modified: trunk/include/asterisk/frame.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/frame.h?rev=23536&r1=23535&r2=23536&view=diff
==============================================================================
--- trunk/include/asterisk/frame.h (original)
+++ trunk/include/asterisk/frame.h Sun Apr 30 03:47:47 2006
@@ -164,22 +164,18 @@
/*! Comfort Noise frame (subclass is level of CNG in -dBov),
body may include zero or more 8-bit quantization coefficients */
#define AST_FRAME_CNG 10
-#if defined(T38_SUPPORT)
/*! Modem-over-IP data streams */
#define AST_FRAME_MODEM 11
-#endif /* T38_SUPPORT */
/*! DTMF begin event, subclass is the digit */
#define AST_FRAME_DTMF_BEGIN 12
/*! DTMF end event, subclass is the digit */
#define AST_FRAME_DTMF_END 13
-#if defined(T38_SUPPORT)
/* MODEM subclasses */
/*! T.38 Fax-over-IP */
#define AST_MODEM_T38 1
/*! V.150 Modem-over-IP */
#define AST_MODEM_V150 2
-#endif /* T38_SUPPORT */
/* HTML subclasses */
/*! Sending a URL */
More information about the asterisk-commits
mailing list