From e719233aed509cd3b15e4ee3c5f7f268b030b541 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 26 May 2011 00:30:34 +0000 Subject: Suil 0.4.2 git-svn-id: http://svn.drobilla.net/lad/trunk/suil@3336 a436a847-0d15-0410-975c-d299462d15a1 --- ChangeLog | 7 +++++++ suil.pc.in | 2 +- wscript | 5 ++++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8c2a0a7..8b36e3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +suil (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 + suil (0.4.0) unstable; urgency=low * Initial release diff --git a/suil.pc.in b/suil.pc.in index bf64c5c..72b58d7 100644 --- a/suil.pc.in +++ b/suil.pc.in @@ -6,5 +6,5 @@ includedir=@includedir@ Name: Suil Version: @SUIL_VERSION@ Description: LV2 plugin UI hosting library -Libs: -L${libdir} -lsuil-@SUIL_MAJOR_VERSION@ +Libs: -L${libdir} -l@LIB_SUIL@ Cflags: -I${includedir}/suil-@SUIL_MAJOR_VERSION@ diff --git a/wscript b/wscript index 4bb61da..a712f23 100644 --- a/wscript +++ b/wscript @@ -7,7 +7,7 @@ from waflib.extras import autowaf as autowaf import waflib.Logs as Logs, waflib.Options as Options # Version of this package (even if built as a child) -SUIL_VERSION = '0.4.0' +SUIL_VERSION = '0.4.2' SUIL_MAJOR_VERSION = '0' # Library version (UNIX style major, minor, micro) @@ -54,6 +54,9 @@ def configure(conf): conf.env['LIBDIR'] + '/suil-' + SUIL_MAJOR_VERSION) autowaf.define(conf, 'SUIL_DIR_SEP', '/') autowaf.define(conf, 'SUIL_MODULE_EXT', '.so') + + conf.env['LIB_SUIL'] = ['suil-%s' % SUIL_MAJOR_VERSION] + conf.write_config_header('suil-config.h', remove=False) autowaf.display_msg(conf, "Gtk2 Support", conf.is_defined('HAVE_GTK2')) -- cgit v1.2.1