some msvc warnings that I re-enabled came back due to messy header files in some libs.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4242 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
ceafc84ca0
commit
f5de340dcc
|
@ -30,6 +30,9 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#include <switch.h>
|
#include <switch.h>
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning(disable:4142)
|
||||||
|
#endif
|
||||||
#include <howl.h>
|
#include <howl.h>
|
||||||
|
|
||||||
static const char modname[] = "mod_zeroconf";
|
static const char modname[] = "mod_zeroconf";
|
||||||
|
|
|
@ -30,6 +30,9 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#include "mod_spidermonkey.h"
|
#include "mod_spidermonkey.h"
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning(disable:4142)
|
||||||
|
#endif
|
||||||
#include <libetpan/libetpan.h>
|
#include <libetpan/libetpan.h>
|
||||||
|
|
||||||
static const char modname[] = "etpan";
|
static const char modname[] = "etpan";
|
||||||
|
|
|
@ -30,6 +30,10 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#include <switch.h>
|
#include <switch.h>
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning(disable:4142)
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <xmlrpc-c/base.h>
|
#include <xmlrpc-c/base.h>
|
||||||
#ifdef ABYSS_WIN32
|
#ifdef ABYSS_WIN32
|
||||||
#undef strcasecmp
|
#undef strcasecmp
|
||||||
|
|
Loading…
Reference in New Issue