search for: dc29dc77

Displaying 1 result from an estimated 1 matches for "dc29dc77".

2006 Jan 31
1
Simple fix for Win32 using USE_ALLOCA
In speex_alloc.h The following code #ifdef USE_ALLOCA #include <alloca.h> #endif should be: #ifdef USE_ALLOCA #ifdef WIN32 #include <malloc.h> #else #include <alloca.h> #endif #endif for visual studio at least. Not sure about mingw Aron Rosenberg www.sightspeed.com