From 8848080cac419f4ab4f3d60dd1f9bbc90f179b10 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 26 May 2011 00:30:22 +0000 Subject: Lilv 0.4.2 git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3335 a436a847-0d15-0410-975c-d299462d15a1 --- ChangeLog | 7 +++++++ lilv.pc.in | 2 +- wscript | 4 +++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d063a63..3849e0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 Wed, 25 May 2011 19:00:00 -0400 + lilv (0.4.0) unstable; urgency=low * Initial version (forked from SLV2) diff --git a/lilv.pc.in b/lilv.pc.in index fff2b5e..48511f4 100644 --- a/lilv.pc.in +++ b/lilv.pc.in @@ -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@ diff --git a/wscript b/wscript index 39720fb..d1e03f8 100644 --- a/wscript +++ b/wscript @@ -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) -- cgit v1.2.1