diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | suil.pc.in | 2 | ||||
-rw-r--r-- | wscript | 5 |
3 files changed, 12 insertions, 2 deletions
@@ -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 <d@drobilla.net> Wed, 25 May 2011 19:00:00 -0400 + suil (0.4.0) unstable; urgency=low * Initial release @@ -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@ @@ -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')) |