summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-19move portable copyfile function into tools/autowaf.py and use it in both ↵Paul Davis
gtk2_ardour and taglib
2013-12-07Add README to mingw packageTim Mayberry
2013-12-07A few basic tests for AudioEngineTim Mayberry
2013-12-07Add --list option to script to run ardour tests with wineTim Mayberry
2013-12-07Add ability to run single libardour tests using wineTim Mayberry
2013-12-07Rename run-wine script to wine-ardour and run library tests from new scriptsTim Mayberry
2013-12-07Move environment setup to run tests in wine to new fileTim Mayberry
2013-12-07Use new version variable in windows packaging scriptsTim Mayberry
2013-12-07Strip all executables in a mingw release buildTim Mayberry
2013-12-07Don't include *.debug files in debug packageTim Mayberry
These files slow down gdb at startup and many(any?) don't seem to work correctly
2013-12-07Use DEBUG flag as defined by tools/define_versions.sh in mingw buildTim Mayberry
2013-12-07Only call define versions script in mingwenv after a build is successfulTim Mayberry
This stops clean.sh script complaining about a non-existant path
2013-12-07Updates to windows/mingw README fileTim Mayberry
2013-12-07Add two scripts for running gdb so source listing works when debuggingTim Mayberry
Updated Debugging section in README
2013-12-07Remove two scripts no longer usedTim Mayberry
These scripts are too specific to my virtual machine setup, a more generic method can now be used by setting ARDOUR_VM_SHARE_DIR and using the cptovmshare.sh script.
2013-12-07Add script to copy package directory to directory shared by VMTim Mayberry
directory path set in ARDOUR_VM_SHARE_DIR
2013-12-07Refer to external repository for instructions on setting up Fedora to cross ↵Tim Mayberry
compile Ardour using MinGW-64
2013-12-07Add scripts for building using mingw compiler with distccTim Mayberry
2013-12-07Use correct header include for _fullpathTim Mayberry
According to http://msdn.microsoft.com/en-us/library/506720ff(v=vs.120).aspx
2013-12-05fix error in mingw version of realpath()Paul Davis
2013-12-05add (likely, partial) windows implementation of POSIX realpath() for ↵Paul Davis
COMPILER_MINGW where the latter is not available, to the only place realpath() is used
2013-12-05remove unnecessary recently-added include for realpath, which is not ↵Paul Davis
actively used
2013-12-05extra source no longer requiredPaul Davis
2013-12-05we don't use realpath() anymore so there is need for a special mingw includePaul Davis
2013-12-05we don't use realpath() anymore so there is need for a special mingw includePaul Davis
2013-12-05additional header needed for mingw build to get realpath()Paul Davis
2013-12-05additional source file for mingw buildPaul Davis
2013-12-05make mingw-based pthread comparison function work with both 32 and 64 bit ↵Paul Davis
variants of mingw
2013-12-05workaround compilation issues with assembler in fpu code and mingwPaul Davis
2013-12-05fix platform portability issues caused by use of shell cp(1) command and ↵Paul Davis
perl script
2013-12-05fix another instance of the horrible "interface" keyword collisionPaul Davis
2013-12-05remove unnecessary and *nix-centric LANG= from start of command used to get ↵Paul Davis
gcc version; use python's platform.uname() rather than os.uname() to get platform information
2013-12-05new/extended windows packaging scripts and associated resourcesPaul Davis
2013-12-04Merge branch 'master' into windowsPaul Davis
2013-12-04change "cpu" in cpu load backend functionsPaul Davis
2013-12-03switch from using Sleep/usleep to Glib::usleep() (and remember that we need ↵Paul Davis
to make Glib::usleep() actually work on windows one day)
2013-12-03switch from using Sleep/usleep to Glib::usleep()Paul Davis
2013-12-03Merge branch 'windowspush' of https://github.com/mojofunk/ardour into windowsPaul Davis
2013-12-03Merge branch 'master' into windowsPaul Davis
2013-12-03Reinstate call to package config for JACK backendTim Mayberry
Not sure how this got lost, merge perhaps.
2013-12-03Use Sleep instead of usleep on windows in JACK backendTim Mayberry
2013-12-02minor tweaks to MIDI clock support, including delivery of position ↵Paul Davis
events/messages when stopped
2013-12-02don't run MIDI clock "tick" if session is silent (e.g. due to a locate)Paul Davis
2013-12-02Replace non-portable printf format specifierTim Mayberry
This caused Diskstream state to be restored incorrectly
2013-12-02Remove command line string quoting when forming jack command line on windowsTim Mayberry
This used to be necessary when we started the JACK server but now that we write a .jackdrc it only causes problems. I have fixed this before in some branch, must have been lost in a merge.
2013-12-02Fix pattern used to search for audio backends on windowsTim Mayberry
The audio backend dlls have a number postfix after the library/module name
2013-12-02Waf options are not valid during build stage so use environment variableTim Mayberry
2013-12-02Use PBD::canonical_path instead of ::realpathTim Mayberry
This is a previous change that seems to have been lost in master -> windows merge
2013-12-02Include pbd/localtime_r.h in session_jack.cc for MinGWTim Mayberry
2013-12-02Use PBD::pthread_name in MTC_Slave for portabilityTim Mayberry