git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8682 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2008-05-27 02:28:17 +00:00
parent d371972dab
commit ebbf9b3eae
1 changed files with 4 additions and 4 deletions

View File

@ -43,10 +43,10 @@
#if defined(HAVE_MATH_H)
#include <math.h>
#endif
#if (_MSC_VER = 1400) /* fix for broken header files with msvc 2005*/
#if !defined (_M_IA64) && !defined (_M_AMD64)
#undef logf
#define logf(x) ((float)log((double)(x)))
#if (_MSC_VER == 1400) /* fix for broken header files with msvc 2005*/
#if !defined (_M_IA64) && !defined (_M_AMD64)
#undef logf
#define logf(x) ((float)log((double)(x)))
#endif // !defined (_M_IA64) && !defined (_M_AMD64)
#endif