On 03/22/2014 01:21 AM, Tres Finocchiaro wrote: > Latest snag (48%) on Dynamics Processor: > > https://f.cloud.github.com/assets/6345473/2488898/f3c0b99e-b14d-11e3-8b7a-406f89847e79.png > > The error says "use of undeclared identifier 'isnanf'" > > Does this need the win32 comment in this file removed? > https://github.com/LMMS/lmms/blob/stable-0.4/plugins/dynamics_processor/dynamics_processor.cpp#L33 >
No, you just probably need a similar #ifdef for Mac as there is for Win32 there. See on Linux, isnanf() is already defined by default, but it isn't on win32, and apparently not on Mac either, so you need an #ifdef to make it define isnanf for Mac builds as well. Duplicate that entire #ifdef block (lines 33-38) and on the copy, just change the "LMMS_BUILD_WIN32" to "LMMS_BUILD_APPLE" and see if it builds that way. ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech _______________________________________________ LMMS-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/lmms-devel
