add src/msvc/config.h
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11551 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
fe94bda87b
commit
deedf9fd34
|
@ -38,6 +38,7 @@ EXTRA_DIST = floating_fudge.h \
|
||||||
msvc/msvcproj.foot \
|
msvc/msvcproj.foot \
|
||||||
msvc/vc8proj.head \
|
msvc/vc8proj.head \
|
||||||
msvc/vc8proj.foot \
|
msvc/vc8proj.foot \
|
||||||
|
msvc/config.h \
|
||||||
spandsp/private/README
|
spandsp/private/README
|
||||||
|
|
||||||
INCLUDES = -I$(top_builddir)
|
INCLUDES = -I$(top_builddir)
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
/*
|
||||||
|
* SpanDSP - a series of DSP components for telephony
|
||||||
|
*
|
||||||
|
* inttypes.h - a fudge for MSVC, which lacks this header
|
||||||
|
*
|
||||||
|
* Written by Steve Underwood <steveu@coppice.org>
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006 Michael Jerris
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* This file is released in the public domain.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if !defined(_SPANDSP_CONFIG_H_)
|
||||||
|
#define _SPANDSP_CONFIG_H_
|
||||||
|
|
||||||
|
#define HAVE_SINF
|
||||||
|
#define HAVE_COSF
|
||||||
|
#define HAVE_TANF
|
||||||
|
#define HAVE_ASINF
|
||||||
|
#define HAVE_ACOSF
|
||||||
|
#define HAVE_ATANF
|
||||||
|
#define HAVE_ATAN2F
|
||||||
|
#define HAVE_CEILF
|
||||||
|
#define HAVE_FLOORF
|
||||||
|
#define HAVE_POWF
|
||||||
|
#define HAVE_EXPF
|
||||||
|
#define HAVE_LOGF
|
||||||
|
#define HAVE_LOG10F
|
||||||
|
#define HAVE_MATH_H
|
||||||
|
#define HAVE_TGMATH_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue