summaryrefslogtreecommitdiff
path: root/libs/ardour/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-09-07 11:13:07 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-09-07 11:13:07 -0400
commitf96652e12ab4cde2c84d2ac6566b0b8f76c63d34 (patch)
tree59e7c72dac249d8cb2502f753c865e04f660359b /libs/ardour/wscript
parentf4cf283f2683f7883f799a8ef6cd58084e610bb7 (diff)
other changes for separated jack backend
Diffstat (limited to 'libs/ardour/wscript')
-rw-r--r--libs/ardour/wscript35
1 files changed, 0 insertions, 35 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index 57b68a0fde..c86b510e83 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -442,41 +442,6 @@ def build(bld):
elif bld.env['build_target'] == 'x86_64':
obj.source += [ 'sse_functions_xmm.cc', 'sse_functions_64bit.s' ]
- # the JACK audio backend
-
- obj = bld.shlib (features = 'c cxx cshlib cxxshlib',
- source = [
- 'jack_api.cc',
- 'jack_connection.cc',
- 'jack_audiobackend.cc',
- 'jack_portengine.cc',
- 'jack_utils.cc'
- ])
- obj.cxxflags = [ '-fPIC' ]
- obj.name = 'jack_audiobackend'
- obj.target = 'jack_audiobackend'
- obj.uselib = [ 'JACK' ]
-
- #
- # device discovery code in the jack backend needs ALSA
- # on Linux.
- #
-
- if re.search ("linux", sys.platform) != None:
- obj.uselib += [ 'ALSA' ]
-
- obj.use = [ 'ardour' ]
- obj.vnum = '1.0.0'
- obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
- obj.includes = [ '.' ]
- obj.defines = [
- 'PACKAGE="' + I18N_PACKAGE + '"',
- 'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
- 'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
- 'PROGRAM_NAME="' + bld.env['PROGRAM_NAME'] + '"',
- ]
-
-
# i18n
if bld.is_defined('ENABLE_NLS'):
mo_files = bld.path.ant_glob('po/*.mo')