summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/AtomReader.cpp2
-rw-r--r--src/server/LV2Block.cpp2
-rw-r--r--wscript2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/AtomReader.cpp b/src/AtomReader.cpp
index 228f3808..bc0ddfe8 100644
--- a/src/AtomReader.cpp
+++ b/src/AtomReader.cpp
@@ -205,7 +205,7 @@ AtomReader::write(const LV2_Atom* msg)
const LV2_Atom_URID* prop = NULL;
lv2_atom_object_get(obj, (LV2_URID)_uris.patch_property, &prop, 0);
- if (!prop || ((LV2_Atom*)prop)->type != _uris.atom_URID) {
+ if (!prop || ((const LV2_Atom*)prop)->type != _uris.atom_URID) {
_log.warn("Set message missing property\n");
return false;
}
diff --git a/src/server/LV2Block.cpp b/src/server/LV2Block.cpp
index e065a5b5..73a74daa 100644
--- a/src/server/LV2Block.cpp
+++ b/src/server/LV2Block.cpp
@@ -125,7 +125,7 @@ LV2Block::make_instance(URIs& uris,
options_iface->get(inst->lv2_handle, options);
if (options[0].value) {
- LV2_URID type = *(LV2_URID*)options[0].value;
+ LV2_URID type = *(const LV2_URID*)options[0].value;
if (type == _uris.lv2_ControlPort) {
port->set_type(PortType::CONTROL, 0);
} else if (type == _uris.lv2_CVPort) {
diff --git a/wscript b/wscript
index ed7dfa99..390ca89b 100644
--- a/wscript
+++ b/wscript
@@ -47,7 +47,7 @@ def configure(conf):
autowaf.display_header('Ingen Configuration')
conf.check_python_version((2,4,0), mandatory=False)
autowaf.check_pkg(conf, 'lv2', uselib_store='LV2',
- atleast_version='1.3.0', mandatory=True)
+ atleast_version='1.6.1', mandatory=True)
autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM',
atleast_version='2.14.0', mandatory=True)
autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD',