diff options
Diffstat (limited to 'lv2/ns/lv2core')
-rw-r--r-- | lv2/ns/lv2core/lv2.h | 4 | ||||
-rw-r--r-- | lv2/ns/lv2core/lv2core.doap.ttl | 2 | ||||
-rw-r--r-- | lv2/ns/lv2core/wscript | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/lv2/ns/lv2core/lv2.h b/lv2/ns/lv2core/lv2.h index ce55d45..2316940 100644 --- a/lv2/ns/lv2core/lv2.h +++ b/lv2/ns/lv2core/lv2.h @@ -125,7 +125,7 @@ typedef struct _LV2_Descriptor { If the plugin has the feature lv2:hardRTCapable then there are various things that the plugin MUST NOT do within the connect_port() function; - see lv2.ttl for details. + see lv2core.ttl for details. connect_port() MUST be called at least once for each port before run() is called, unless that port is lv2:connectionOptional. The plugin must @@ -186,7 +186,7 @@ typedef struct _LV2_Descriptor { If the plugin has the feature lv2:hardRTCapable then there are various things that the plugin MUST NOT do within the run() function (see - lv2.ttl for details). + lv2core.ttl for details). As a special case, when @c sample_count == 0, the plugin should update any output ports that represent a single instant in time (e.g. control diff --git a/lv2/ns/lv2core/lv2core.doap.ttl b/lv2/ns/lv2core/lv2core.doap.ttl index f01eadb..45f3745 100644 --- a/lv2/ns/lv2core/lv2core.doap.ttl +++ b/lv2/ns/lv2core/lv2core.doap.ttl @@ -29,6 +29,8 @@ dcs:blame <http://drobilla.net/drobilla#me> ; dcs:changeset [ dcs:item [ + rdfs:label "Rename core.lv2 and lv2.ttl to lv2core.lv2 and lv2core.ttl to adhere to modern conventions." + ] , [ rdfs:label "Add lv2:extensionData and lv2:ExtensionData for plugins to indicate that they support some URI for extension_data()." ] , [ rdfs:label "Remove lv2config in favour of the convention that extension bundles simply install headers to standard URI-like include paths." diff --git a/lv2/ns/lv2core/wscript b/lv2/ns/lv2core/wscript index d57985f..daa2c48 100644 --- a/lv2/ns/lv2core/wscript +++ b/lv2/ns/lv2core/wscript @@ -81,7 +81,7 @@ def build(bld): target = 'lv2core') # Bundle (data) - bld.install_files('${LV2DIR}/lv2core.lv2', 'lv2.ttl manifest.ttl') + bld.install_files('${LV2DIR}/lv2core.lv2', bld.path.ant_glob('*.ttl')) if not Options.options.bundle_only: # Header |