[Freeswitch-svn] [commit] r11551 - in freeswitch/trunk/libs/spandsp/src: . msvc

FreeSWITCH SVN mikej at freeswitch.org
Wed Jan 28 20:55:54 PST 2009


Author: mikej
Date: Wed Jan 28 22:55:54 2009
New Revision: 11551

Log:
add src/msvc/config.h

Added:
   freeswitch/trunk/libs/spandsp/src/msvc/config.h
Modified:
   freeswitch/trunk/libs/spandsp/src/Makefile.am

Modified: freeswitch/trunk/libs/spandsp/src/Makefile.am
==============================================================================
--- freeswitch/trunk/libs/spandsp/src/Makefile.am	(original)
+++ freeswitch/trunk/libs/spandsp/src/Makefile.am	Wed Jan 28 22:55:54 2009
@@ -38,6 +38,7 @@
              msvc/msvcproj.foot \
              msvc/vc8proj.head \
              msvc/vc8proj.foot \
+             msvc/config.h \
              spandsp/private/README
 
 INCLUDES = -I$(top_builddir)

Added: freeswitch/trunk/libs/spandsp/src/msvc/config.h
==============================================================================
--- (empty file)
+++ freeswitch/trunk/libs/spandsp/src/msvc/config.h	Wed Jan 28 22:55:54 2009
@@ -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 at 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



More information about the Freeswitch-svn mailing list