r1498 - in trunk/code/libspeex: . include/speex

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Wed Feb 11 04:21:45 EST 2009


Author: ludwig
Date: 2009-02-11 04:21:43 -0500 (Wed, 11 Feb 2009)
New Revision: 1498

Added:
   trunk/code/libspeex/config.h
Removed:
   trunk/code/libspeex/include/speex/config.h
Log:
move speex config.h to correct place

Copied: trunk/code/libspeex/config.h (from rev 1497, trunk/code/libspeex/include/speex/config.h)
===================================================================
--- trunk/code/libspeex/config.h	                        (rev 0)
+++ trunk/code/libspeex/config.h	2009-02-11 09:21:43 UTC (rev 1498)
@@ -0,0 +1,20 @@
+// Microsoft version of 'inline'
+#define inline __inline
+
+// Visual Studio support alloca(), but it always align variables to 16-bit
+// boundary, while SSE need 128-bit alignment. So we disable alloca() when
+// SSE is enabled.
+#ifndef _USE_SSE
+#  define USE_ALLOCA
+#endif
+
+/* Default to floating point */
+#ifndef FIXED_POINT
+#  define FLOATING_POINT
+#  define USE_SMALLFT
+#else
+#  define USE_KISS_FFT
+#endif
+
+/* We don't support visibility on Win32 */
+#define EXPORT

Deleted: trunk/code/libspeex/include/speex/config.h
===================================================================
--- trunk/code/libspeex/include/speex/config.h	2009-02-10 07:56:56 UTC (rev 1497)
+++ trunk/code/libspeex/include/speex/config.h	2009-02-11 09:21:43 UTC (rev 1498)
@@ -1,20 +0,0 @@
-// Microsoft version of 'inline'
-#define inline __inline
-
-// Visual Studio support alloca(), but it always align variables to 16-bit
-// boundary, while SSE need 128-bit alignment. So we disable alloca() when
-// SSE is enabled.
-#ifndef _USE_SSE
-#  define USE_ALLOCA
-#endif
-
-/* Default to floating point */
-#ifndef FIXED_POINT
-#  define FLOATING_POINT
-#  define USE_SMALLFT
-#else
-#  define USE_KISS_FFT
-#endif
-
-/* We don't support visibility on Win32 */
-#define EXPORT




More information about the quake3-commits mailing list