summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-02-16Tidy up Raul test suite.David Robillard4-24/+29
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2961 a436a847-0d15-0410-975c-d299462d15a1
2011-02-16Drop redlandmm for sordmm.David Robillard1-39/+33
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2959 a436a847-0d15-0410-975c-d299462d15a1
2011-02-15Remove fuzzy lack of distinction between URIs and CURIEs.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2954 a436a847-0d15-0410-975c-d299462d15a1
2011-02-04Fix warnings when building with --strict (but without --debug).David Robillard1-0/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2909 a436a847-0d15-0410-975c-d299462d15a1
2011-01-26Support new autowaf testing API.David Robillard1-0/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2839 a436a847-0d15-0410-975c-d299462d15a1
2011-01-19Support latest autowaf.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2837 a436a847-0d15-0410-975c-d299462d15a1
2011-01-12Raul 0.8.0.David Robillard2-2/+25
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2831 a436a847-0d15-0410-975c-d299462d15a1
2011-01-12Add missing COPYING files for raul and patchage.David Robillard1-0/+340
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2829 a436a847-0d15-0410-975c-d299462d15a1
2011-01-10Touch up documentation (add everything to raul group).David Robillard19-4/+30
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2823 a436a847-0d15-0410-975c-d299462d15a1
2011-01-10Remove Raul::Command (mostly useless thin wrapper around a semaphore).David Robillard2-64/+4
Remove Semaphore::has_waiter (not portable). git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2822 a436a847-0d15-0410-975c-d299462d15a1
2011-01-10Use standard waf framework stuff instead of manual flags.David Robillard1-9/+12
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2815 a436a847-0d15-0410-975c-d299462d15a1
2011-01-10Fix build on non-OSX.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2810 a436a847-0d15-0410-975c-d299462d15a1
2011-01-10Working semaphore implementation for OSX.David Robillard3-13/+73
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2809 a436a847-0d15-0410-975c-d299462d15a1
2011-01-10Create thread for main (otherwise crashes on OSX).David Robillard1-1/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2808 a436a847-0d15-0410-975c-d299462d15a1
2011-01-09Non-trivial thread/semaphore test.David Robillard3-3/+35
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2803 a436a847-0d15-0410-975c-d299462d15a1
2011-01-08Drop glibmm dependency in build stuff (raul depends only on glib).David Robillard3-11/+9
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2801 a436a847-0d15-0410-975c-d299462d15a1
2011-01-08Code clean-up (cpplint).David Robillard27-66/+108
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2796 a436a847-0d15-0410-975c-d299462d15a1
2011-01-08Allocate enough space in atom for string terminator.David Robillard1-4/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2795 a436a847-0d15-0410-975c-d299462d15a1
2011-01-08Fix configuration header define names to not stomp on global namespace.David Robillard2-7/+7
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2794 a436a847-0d15-0410-975c-d299462d15a1
2010-12-25More const is always a good thing.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2785 a436a847-0d15-0410-975c-d299462d15a1
2010-12-25Don't use size_t for RingBuffer (wouldn't work for sizes past 32 bits anyway).David Robillard1-37/+41
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2784 a436a847-0d15-0410-975c-d299462d15a1
2010-12-25Remove useless templatification of RingBuffer.David Robillard2-34/+27
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2783 a436a847-0d15-0410-975c-d299462d15a1
2010-12-18Remove Raul::Stateful (which never really belonged in Raul anyway).David Robillard3-49/+8
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2766 a436a847-0d15-0410-975c-d299462d15a1
2010-12-18Add missing check for glibmm (fix ticket #617).David Robillard1-2/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2761 a436a847-0d15-0410-975c-d299462d15a1
2010-12-17More const-correct TimeSlice.David Robillard1-4/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2741 a436a847-0d15-0410-975c-d299462d15a1
2010-12-17Fix TimeStamp assignment.David Robillard1-2/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2740 a436a847-0d15-0410-975c-d299462d15a1
2010-12-17Fix TimeSlice::beats_to_ticks.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2739 a436a847-0d15-0410-975c-d299462d15a1
2010-12-17Fix TimeStamp comparison.David Robillard1-7/+7
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2731 a436a847-0d15-0410-975c-d299462d15a1
2010-12-17Use autowaf.run_ldconfig.David Robillard1-4/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2728 a436a847-0d15-0410-975c-d299462d15a1
2010-12-16Fix use of conf.define and subsequent check in conf.env (no longer works ↵David Robillard1-2/+2
with waf 1.6) (fix ticket #610). git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2724 a436a847-0d15-0410-975c-d299462d15a1
2010-12-16Remove documentation installation stuff (handled by autowaf.build_dox now).David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2722 a436a847-0d15-0410-975c-d299462d15a1
2010-12-16Updates for waf 1.6.David Robillard1-23/+23
Note: this revision breaks documentation installation. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2719 a436a847-0d15-0410-975c-d299462d15a1
2010-11-26Fix race crash processing event list (Raul::ListImpl seriously needs an ↵David Robillard2-22/+19
audit and heavy testing...) git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2673 a436a847-0d15-0410-975c-d299462d15a1
2010-10-28Use autowaf from an external repository (eliminating symlinks to project ↵David Robillard2-2/+2
parent directory). git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2651 a436a847-0d15-0410-975c-d299462d15a1
2010-10-28Remove autowaf.py symlinks (which are apparently unneeded).David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2650 a436a847-0d15-0410-975c-d299462d15a1
2010-09-30Declare single-argument constructors explicit (except where implicit ↵David Robillard12-15/+15
conversion is actually desired). See http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Explicit_Constructors git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2619 a436a847-0d15-0410-975c-d299462d15a1
2010-09-04My name is David. :)David Robillard52-56/+56
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2590 a436a847-0d15-0410-975c-d299462d15a1
2010-09-04Update versions and ChangeLogs.David Robillard2-4/+24
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2589 a436a847-0d15-0410-975c-d299462d15a1
2010-07-05Move common files (e.g. waf) to /common subdirectory to ease checking out ↵David Robillard3-3/+3
projects individually. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2583 a436a847-0d15-0410-975c-d299462d15a1
2010-06-01Clean up configuration output.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2572 a436a847-0d15-0410-975c-d299462d15a1
2010-03-06Save Ingen patches as working standard LV2 plugin bundles.David Robillard3-11/+11
This allows you to create an Ingen patch in Ingen running as a Jack client, save it, then load that patch as an LV2 plugin in any LV2 compliant host. Eliminate (hopefully) all static data in the engine (for multiple instantiations in a single process). More API/ABI stable interface for Ingen::Shared::World. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2533 a436a847-0d15-0410-975c-d299462d15a1
2010-03-05Fix compilation with --test.David Robillard1-4/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2531 a436a847-0d15-0410-975c-d299462d15a1
2010-03-04Remove Raul::Path::root, Raul::Path::prefix, and Raul:Path::scheme from ↵David Robillard3-47/+106
public API. Add ability to modify root path from application code (before any paths are created). git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2514 a436a847-0d15-0410-975c-d299462d15a1
2010-02-28Use appropriate allocation for RingBuffer and SRSWQueue (was backwards).David Robillard2-9/+12
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2508 a436a847-0d15-0410-975c-d299462d15a1
2010-02-20Split stack stuff from Array.David Robillard3-15/+92
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2467 a436a847-0d15-0410-975c-d299462d15a1
2010-02-17Use manual copy instead of memcpy for array (pseudo-)copy constructor to ↵David Robillard1-8/+7
make it safe for C++ types (copy constructor of elements will be called). Fixes crash when changing ingen polyphony because this copies Arrays of intrusive_ptr<Buffer>. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2460 a436a847-0d15-0410-975c-d299462d15a1
2010-02-09Spelling.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2434 a436a847-0d15-0410-975c-d299462d15a1
2010-02-05Convert C-style casts to C++ style casts.David Robillard15-31/+33
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2432 a436a847-0d15-0410-975c-d299462d15a1
2010-02-03Make human names work with LADSPA plugins as well (fix ticket #477).David Robillard1-0/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2416 a436a847-0d15-0410-975c-d299462d15a1
2010-02-03Comprehensive use of cached URIs and more advanced Value (Atom) system.David Robillard2-14/+71
Atoms (e.g. property values or port values) can now be an Atom::DICT, which maps directly to/from an RDF resource. This is now used to store control bindings as a port property, eliminating the special API. Full interned URIs used everywhere, instead of CURIEs pretending to be URIs. Avoid converting string literals to URIs all over the place. Support for binding MIDI pitch bender and MIDI channel pressure. Saving/restoring of MIDI bindings as a free side-effect of the above. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2409 a436a847-0d15-0410-975c-d299462d15a1