remove lib versioning for internal plugins

Those objects do not have a versioned API by themselves.
This fixes issues with duplicate deployment (OSX, Linux bundles: cp) and
ardour listing control-surfaces multiple times (file index plugin dir).
This commit is contained in:
Robin Gareus 2015-02-16 17:32:43 +01:00
parent 6fd947fe82
commit 8a93a87db0
15 changed files with 0 additions and 111 deletions

View file

@ -4,11 +4,6 @@ import os
import sys
import re
# Library version (UNIX style major, minor, micro)
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
WAVESAUDIOBACKEND_VERSION = '0.0.1'
I18N_PACKAGE = 'wavesaudio-backend'
# Mandatory variables
@ -95,8 +90,6 @@ def build(bld):
obj.use = 'libardour libpbd'
if bld.env['build_target'] == 'mingw':
obj.uselib = ['PORTAUDIO']
if (bld.env['build_target'] != 'mingw'):
obj.vnum = WAVESAUDIOBACKEND_VERSION
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
if bld.env['build_target']== 'mingw':