[Freeswitch-svn] [commit] r4242 - in freeswitch/trunk/src/mod: event_handlers/mod_zeroconf languages/mod_spidermonkey_etpan xml_int/mod_xml_rpc
Freeswitch SVN
mikej at freeswitch.org
Tue Feb 13 16:38:12 EST 2007
Author: mikej
Date: Tue Feb 13 16:38:12 2007
New Revision: 4242
Modified:
freeswitch/trunk/src/mod/event_handlers/mod_zeroconf/mod_zeroconf.c
freeswitch/trunk/src/mod/languages/mod_spidermonkey_etpan/mod_spidermonkey_etpan.c
freeswitch/trunk/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c
Log:
some msvc warnings that I re-enabled came back due to messy header files in some libs.
Modified: freeswitch/trunk/src/mod/event_handlers/mod_zeroconf/mod_zeroconf.c
==============================================================================
--- freeswitch/trunk/src/mod/event_handlers/mod_zeroconf/mod_zeroconf.c (original)
+++ freeswitch/trunk/src/mod/event_handlers/mod_zeroconf/mod_zeroconf.c Tue Feb 13 16:38:12 2007
@@ -30,6 +30,9 @@
*
*/
#include <switch.h>
+#ifdef _MSC_VER
+#pragma warning(disable:4142)
+#endif
#include <howl.h>
static const char modname[] = "mod_zeroconf";
Modified: freeswitch/trunk/src/mod/languages/mod_spidermonkey_etpan/mod_spidermonkey_etpan.c
==============================================================================
--- freeswitch/trunk/src/mod/languages/mod_spidermonkey_etpan/mod_spidermonkey_etpan.c (original)
+++ freeswitch/trunk/src/mod/languages/mod_spidermonkey_etpan/mod_spidermonkey_etpan.c Tue Feb 13 16:38:12 2007
@@ -30,6 +30,9 @@
*
*/
#include "mod_spidermonkey.h"
+#ifdef _MSC_VER
+#pragma warning(disable:4142)
+#endif
#include <libetpan/libetpan.h>
static const char modname[] = "etpan";
Modified: freeswitch/trunk/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c
==============================================================================
--- freeswitch/trunk/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c (original)
+++ freeswitch/trunk/src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c Tue Feb 13 16:38:12 2007
@@ -30,6 +30,10 @@
*
*/
#include <switch.h>
+#ifdef _MSC_VER
+#pragma warning(disable:4142)
+#endif
+
#include <xmlrpc-c/base.h>
#ifdef ABYSS_WIN32
#undef strcasecmp
More information about the Freeswitch-svn
mailing list