summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--suil.pc.in2
-rw-r--r--wscript5
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 <d@drobilla.net> 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'))