summaryrefslogtreecommitdiff
path: root/msvc_extra_headers/ardourext/misc.h.input
AgeCommit message (Collapse)Author
2016-09-30When building with MSVC some of the header file stuff is only relevant in ↵John Emmas
early versions (e.g. VC8)
2016-08-19Move 'round()' / 'trunc()' etc so that they won't conflict with any versions ↵John Emmas
already available in MSVC
2016-08-19'roundf()' wasn't introduced in MSVC until VS2013 - so for the time being, ↵John Emmas
let's emulate it using 'floorf()'
2016-05-28Emulate 'log1p()' and 'expm1()' using 'log()' and 'exp()'John Emmas
(for MSVC which didn't implement those functions until very recent versions).
2016-05-03MSVC won't compile 'const float _demolition[]' because it uses 'divide by ↵John Emmas
zero' while initializing Hopefully we can use INFINITY and NAN for the relevant initializers ?
2015-04-24For MSVC builds, implement 'rint()' and 'rintf()' to supplement the ones ↵John Emmas
that were already implemented
2015-01-10Add support for the C99 function 'log2()' which is newly needed by ↵John Emmas
'gtk2_ardour/tempo_lines.cc' (but isn't available from MSVC). These changes are MSVC specific and shouldn't affect the other builds. (incidentally, libpbd already offers a function called 'fast_log2()'. Not sure if that could have been used instead...)
2014-06-04Change the function signature for 'abs(int64_t)' (Windows) so that it ↵John Emmas
doesn't conflict with more recent versions of MSVC
2014-01-13Check in some minor modifications (to MSVC specific headers)John Emmas
2013-10-06Miscellaneous additions to 'msvc_extra_headers'John Emmas
2013-08-27Modify 'ardourext/misc.h' so that it only uses C++ constructs when the ↵John Emmas
compilation is cplusplus
2013-08-04'libs/ardour' - Main body of changes required for building with MSVCJohn Emmas
2013-07-17Miscellaneous header files (needed for building libpbd with MSVC)John Emmas