Update of /cvsroot/pure-data/externals/creb/modules++ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25529/modules++
Modified Files: blosc.cc Log Message: workaround for bug in Mac OS X 10.3 headers
Index: blosc.cc =================================================================== RCS file: /cvsroot/pure-data/externals/creb/modules++/blosc.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** blosc.cc 31 Dec 2005 19:31:09 -0000 1.2 --- blosc.cc 27 Aug 2006 17:22:44 -0000 1.3 *************** *** 30,33 **** --- 30,42 ---- #include "DSPIfilters.h"
+ /* work around old bug in Apple compilers hans@at.or.at */ + //#if MAC_OS_X_VERSION < MAC_OS_X_VERSION_10_4 // arg, this didn't work + #ifndef isnan + extern "C" int isnan(double); + #endif + #ifndef isinf + extern "C" int isinf(double); + #endif + typedef unsigned long long u64; typedef unsigned long u32;