diff options
-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) |