summaryrefslogtreecommitdiff
path: root/msvc_extra_headers
AgeCommit message (Collapse)Author
2015-04-24For MSVC builds, implement 'rint()' and 'rintf()' to supplement the ones ↵John Emmas
that were already implemented
2015-02-13When building with MSVC add a couple of new pragmas to cut down on the most ↵John Emmas
frequent compiler warnings, namely:- 1) C4244 (conversion loses data) - e.g. when re-assigning a var of (say) int64_t to a lesser type, such as int32_t 2) C4275 (an exported class was derived from a class which is not exportable) - e.g. when deriving classes from std::set, std::exception or some other class which isn't declared with 'dllexport'
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-10-31Use precise define names for LV2 version configure checks.David Robillard
2014-10-08MSVC - add support for 'HAVE_NEW_LV2'John Emmas
(after updating to the latest versions of serd, sord, sratom and lilv)
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-04-14Now that we can build with VST support, make sure our MSVC build knows about itJohn Emmas
2014-03-18When finding (MSVC built) panner DLLs, make sure we only find ones that ↵John Emmas
match our build target Will most likely also need to get done for similarly "discovered" DLLs (backends / surfaces etc). TBC
2014-01-13Add provision for building 'libtimecode' as a DLL (MSVC build)John Emmas
2014-01-13Check in some minor modifications (to MSVC specific headers)John Emmas
2013-10-06Miscellaneous additions to 'msvc_extra_headers'John Emmas
2013-09-25Define 'suseconds_t' which isn't normally defined for WindowsJohn Emmas
2013-08-27Modify 'ardourext/misc.h' so that it only uses C++ constructs when the ↵John Emmas
compilation is cplusplus
2013-08-26Minor tweaks to MSVC build (hopefully of little consequence)John Emmas
2013-08-04'libs/ardour' - Main body of changes required for building with MSVCJohn Emmas
2013-07-25'libs/midi++2' - Modify to be buildable with MSVCJohn Emmas
2013-07-24Add an empty 'unistd.h' to stop the compiler complaining when it gets ↵John Emmas
unnecessarily #included
2013-07-20Modify 'libs/vamp-plugins' to be buildable with MSVCJohn Emmas
2013-07-17JOHNE - remove my earlier test fileJohn Emmas
2013-07-17Merge branch 'windows' of git.ardour.org:ardour/ardour into windowsJohn Emmas
2013-07-17JOHNE - Testing to see if I have write access to the repoJohn Emmas
2013-07-17Miscellaneous header files (needed for building libpbd with MSVC)John Emmas