1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
This patch
* replaces deprecated calls,
* makes the build system respect toolchain,
* avoids underlinking.
--- klick-0.12.2.orig/SConstruct
+++ klick-0.12.2/SConstruct
@@ -11,24 +11,24 @@
ENV = os.environ,
)
-# build options
-opts = Options('scache.conf')
-opts.AddOptions(
- PathOption('PREFIX', 'install prefix', '/usr/local'),
- PathOption('DESTDIR', 'intermediate install prefix', '', PathOption.PathAccept),
- BoolOption('DEBUG', 'debug mode', False),
- BoolOption('OSC', 'OSC support', True),
- BoolOption('TERMINAL', 'terminal control support', True),
- BoolOption('RUBBERBAND', 'use Rubber Band for pitch shifting', False),
+# build variables
+vars = Variables('scache.conf')
+vars.AddVariables(
+ ('CXX', 'C++ compiler'),
+ ('CXXFLAGS', 'C++ compiler flags'),
+ ('LINKFLAGS', 'linker flags'),
+ PathVariable('PREFIX', 'install prefix', '/usr/local'),
+ PathVariable('DESTDIR', 'intermediate install prefix', '', PathVariable.PathAccept),
+ BoolVariable('DEBUG', 'debug mode', False),
+ BoolVariable('OSC', 'OSC support', True),
+ BoolVariable('TERMINAL', 'terminal control support', True),
+ BoolVariable('RUBBERBAND', 'use Rubber Band for pitch shifting', False),
)
-opts.Update(env)
-opts.Save('scache.conf', env)
-Help(opts.GenerateHelpText(env))
-
-if env['DEBUG']:
- env.Append(CCFLAGS = ['-g', '-W', '-Wall'])
-else:
- env.Append(CCFLAGS = ['-O2', '-W', '-Wall'])
+vars.Update(env)
+vars.Save('scache.conf', env)
+Help(vars.GenerateHelpText(env))
+
+if not env['DEBUG']:
env.Prepend(CPPDEFINES = 'NDEBUG')
# install paths
@@ -38,6 +38,7 @@
env.Append(CPPDEFINES = ('DATA_DIR', '\\"%s\\"' % prefix_share))
# required libraries
+env.PrependUnique(LIBS = ['stdc++', 'm'])
env.ParseConfig(
'pkg-config --cflags --libs jack samplerate sndfile'
)
|