diff options
author | David Robillard <d@drobilla.net> | 2011-05-26 00:30:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-26 00:30:22 +0000 |
commit | 8848080cac419f4ab4f3d60dd1f9bbc90f179b10 (patch) | |
tree | 8153d9816f0ea060c32537cb3ed58b63f8398a78 | |
parent | 050480242ef7338aa829dd9b2c130f835e166802 (diff) | |
download | lilv-8848080cac419f4ab4f3d60dd1f9bbc90f179b10.tar.gz lilv-8848080cac419f4ab4f3d60dd1f9bbc90f179b10.tar.bz2 lilv-8848080cac419f4ab4f3d60dd1f9bbc90f179b10.zip |
Lilv 0.4.2
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3335 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lilv.pc.in | 2 | ||||
-rw-r--r-- | wscript | 4 |
3 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,10 @@ +lilv (0.4.2) unstable; urgency=low + + * Fix compilation issues on some systems + * Fix build system Python 3 compatibility + + -- David Robillard <d@drobilla.net> Wed, 25 May 2011 19:00:00 -0400 + lilv (0.4.0) unstable; urgency=low * Initial version (forked from SLV2) @@ -6,5 +6,5 @@ includedir=@includedir@ Name: Lilv Version: @LILV_VERSION@ Description: Simple C library for hosting LV2 plugins -Libs: -L${libdir} -llilv-@LILV_MAJOR_VERSION@ -ldl +Libs: -L${libdir} -l@LIB_LILV@ -ldl Cflags: -I${includedir}/lilv-@LILV_MAJOR_VERSION@ @@ -8,7 +8,7 @@ import waflib.Options as Options import waflib.Logs as Logs # Version of this package (even if built as a child) -LILV_VERSION = '0.4.0' +LILV_VERSION = '0.4.2' LILV_MAJOR_VERSION = '0' # Library version (UNIX style major, minor, micro) @@ -129,6 +129,8 @@ def configure(conf): conf.env['BUILD_UTILS'] = not Options.options.no_utils conf.env['BASH_COMPLETION'] = not Options.options.no_bash_completion + conf.env['LIB_LILV'] = ['lilv-%s' % LILV_MAJOR_VERSION] + if conf.is_defined('HAVE_JACK') and not Options.options.no_jack: autowaf.check_header(conf, 'lv2/lv2plug.in/ns/ext/event/event.h', 'HAVE_LV2_EVENT', mandatory=False) |