summaryrefslogtreecommitdiffstats
path: root/wscript
AgeCommit message (Collapse)AuthorFilesLines
2011-01-10Remove shared/engine dependency on sigc++.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2814 a436a847-0d15-0410-975c-d299462d15a1
2011-01-10Make check for posix_memalign non-mandatory (configure successfully on OSX).David Robillard1-2/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2812 a436a847-0d15-0410-975c-d299462d15a1
2011-01-08Support via waf for running from the build directory.David Robillard1-1/+10
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2799 a436a847-0d15-0410-975c-d299462d15a1
2011-01-08Fix configuration header define names to not stomp on global namespace.David Robillard1-4/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2794 a436a847-0d15-0410-975c-d299462d15a1
2010-12-17Update version in redlandmm configure checks.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2759 a436a847-0d15-0410-975c-d299462d15a1
2010-12-17Use autowaf.run_ldconfig.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2728 a436a847-0d15-0410-975c-d299462d15a1
2010-12-16Fix use of conf.define and subsequent check in conf.env (no longer works ↵David Robillard1-12/+9
with waf 1.6) (fix ticket #610). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@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/ingen@2722 a436a847-0d15-0410-975c-d299462d15a1
2010-12-16Updates for waf 1.6.David Robillard1-7/+9
Note: this revision breaks documentation installation. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2719 a436a847-0d15-0410-975c-d299462d15a1
2010-12-15Bump FlowCanvas version.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2714 a436a847-0d15-0410-975c-d299462d15a1
2010-11-26Update for latest LV2 #include style.David Robillard1-0/+10
Enable building against system installed LV2 extensions. Fix building slv2 and ingen independently. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2675 a436a847-0d15-0410-975c-d299462d15a1
2010-11-26Tidy.David Robillard1-24/+36
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2674 a436a847-0d15-0410-975c-d299462d15a1
2010-11-26Install all ingen modules to ${LIBDIR} instead of ${LIBDIR}/ingen so dynamic ↵David Robillard1-4/+2
linker can find dependent libraries. (Previous scheme doesn't build on OSX, this way is probably better anyway, though perhaps they should all be versioned...) git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2672 a436a847-0d15-0410-975c-d299462d15a1
2010-06-01Clean up configuration output.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2572 a436a847-0d15-0410-975c-d299462d15a1
2010-02-26Add center parameter to FlowCanvas::Canvas::arrange with default value trueDavid Robillard1-1/+1
(eqivalent default behaviour to API pre-r2496). Add FlowCanvas::Canvas::move_contents_to to allow apps to move canvas contents to a given location (e.g. the origin or the center), keeping their relative distances the same. This commit preserves centering by default with the option to arrange in the top left, but applications shouldn't assume anything about the origin of coordinates (i.e. applications should manually scroll to where items exist when loading a set of items with coordinates, not simply assume they are centered about a particular location). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2500 a436a847-0d15-0410-975c-d299462d15a1
2010-02-17Stub liblo bundle receiving support (patch on liblo-dev).David Robillard1-0/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2458 a436a847-0d15-0410-975c-d299462d15a1
2010-02-12Install icons to correct locations.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2440 a436a847-0d15-0410-975c-d299462d15a1
2010-02-04--no-ladspa compile-time option.David Robillard1-1/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2427 a436a847-0d15-0410-975c-d299462d15a1
2010-02-02Use Glib string interning (quarks) to make Path/URI operator== very fast.David Robillard1-1/+1
This avoids a ton of string comparison overhead in Ingen when setting various properties (e.g. "ingen:value" was compared several times every time a port value was changed, now this is just a single pointer comparison and the full round trip of a value change does no string comparison at all, but is still property based and RDFey). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2408 a436a847-0d15-0410-975c-d299462d15a1
2010-01-07Add option to build without HTTP support.David Robillard1-3/+6
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2355 a436a847-0d15-0410-975c-d299462d15a1
2010-01-06Do all logging output via Raul streams.David Robillard1-0/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2349 a436a847-0d15-0410-975c-d299462d15a1
2009-12-30Fix JACK name of top level ports (fix ticket #457).David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2319 a436a847-0d15-0410-975c-d299462d15a1
2009-12-18Install headers.David Robillard1-0/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2310 a436a847-0d15-0410-975c-d299462d15a1
2009-12-11Build against old Gtkmm (without clear icon in text entries).David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2309 a436a847-0d15-0410-975c-d299462d15a1
2009-07-22Remove no longer necessary autowaf.check_tool.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2171 a436a847-0d15-0410-975c-d299462d15a1
2009-05-04Strip trailing whitespace from waf scripts.David Robillard1-5/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1962 a436a847-0d15-0410-975c-d299462d15a1
2009-05-03Update waf configuration header for new waf scheme (in 1.5.6).David Robillard1-1/+1
Split low-level LV2 event buffer into separate class from EventBuffer (for reuse). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1958 a436a847-0d15-0410-975c-d299462d15a1
2009-03-07Fix path stuff.David Robillard1-9/+9
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1947 a436a847-0d15-0410-975c-d299462d15a1
2009-01-04Detect liblo.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1917 a436a847-0d15-0410-975c-d299462d15a1
2008-12-28Fail configure checks when package version is too old (fix ticket #299).David Robillard1-12/+12
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1914 a436a847-0d15-0410-975c-d299462d15a1
2008-12-22Fix header/function checks.David Robillard1-4/+4
Fix LV2core include path. Don't write python style boolean literals to wafconfig.h. Upgrade to waf 1.5.2. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1898 a436a847-0d15-0410-975c-d299462d15a1
2008-12-21Change configuration header name to something less likely to conflict.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1887 a436a847-0d15-0410-975c-d299462d15a1
2008-11-29Upgrade to waf 1.5.0.David Robillard1-22/+20
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1823 a436a847-0d15-0410-975c-d299462d15a1
2008-11-27Add/install/use Ingen icons.David Robillard1-0/+8
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1798 a436a847-0d15-0410-975c-d299462d15a1
2008-10-20Make Ingen and Patchage relocatable binaries when built as a bundle.David Robillard1-2/+11
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1690 a436a847-0d15-0410-975c-d299462d15a1
2008-10-20Actually use installation location variables for everything.David Robillard1-3/+2
Add ./waf configure --build which builds a (soon-to-be) relocatable independent bundle with all data/progs/libs in it (OSX bundle directory structure, should be possible to make a 'real' OSX bundle out of this...). Fix include paths to use "" and definitely build against local versions of libraries. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1689 a436a847-0d15-0410-975c-d299462d15a1
2008-10-19Make ingen actually run again :)David Robillard1-1/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1688 a436a847-0d15-0410-975c-d299462d15a1
2008-10-19Fix posix_memalign detection.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1684 a436a847-0d15-0410-975c-d299462d15a1
2008-10-18Lower glib/glibmm dependency to 2.14.David Robillard1-12/+22
Fix optional parameters all over the palce because waf is retarded and sets failed check variables to ##some#stupid#name#like#this instead of false. Portability fixes (Ingen (except GUI) and all dependencies builds on OSX). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1681 a436a847-0d15-0410-975c-d299462d15a1
2008-10-11Fix incorrect display of jack support in summary.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1643 a436a847-0d15-0410-975c-d299462d15a1
2008-10-11Always check for compiler_cc in addition to compiler_cxx.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1642 a436a847-0d15-0410-975c-d299462d15a1
2008-10-06Add option to avoid use of liblo, even if present.David Robillard1-1/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1625 a436a847-0d15-0410-975c-d299462d15a1
2008-10-03Support building locally against header-only libraries in autowaf.David Robillard1-1/+1
Remove CONFIG_H_PATH define and replace with just "config.h" (define messed up dependency tracking). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1600 a436a847-0d15-0410-975c-d299462d15a1
2008-10-02Factor out avoid-repeated-checks thing to autowaf. Saves lines in wscripts....David Robillard1-32/+18
Use SLV2_VERSION instead of PACKAGE_VERSION in slv2 code to play nice with others. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1598 a436a847-0d15-0410-975c-d299462d15a1
2008-10-02Depend on Jack 109 and the ever presence of Jack MIDI.David Robillard1-1/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1597 a436a847-0d15-0410-975c-d299462d15a1
2008-10-02Build Ingen with LADSPA if possible.David Robillard1-1/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1585 a436a847-0d15-0410-975c-d299462d15a1
2008-10-02Factor out header printing...David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1583 a436a847-0d15-0410-975c-d299462d15a1
2008-10-02Factor more things into autowaf.David Robillard1-2/+11
Only call autowaf functions once no matter how many sub-projects call them (global counter, barf). Print pretty summary for everything with options, in order so you can see which project caused which check. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1581 a436a847-0d15-0410-975c-d299462d15a1
2008-10-01Ingen documentation building.David Robillard1-0/+9
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1575 a436a847-0d15-0410-975c-d299462d15a1
2008-10-01Fix building without libsoup.David Robillard1-1/+1
Documentation building either globally or per project. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1574 a436a847-0d15-0410-975c-d299462d15a1