summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-03-08 16:41:45 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2013-03-08 16:41:45 +0000
commitba73a77c6358ffc418dc726c0977239decf401b6 (patch)
tree7addb44826d0686dd358840c9c0fcfcd322da27c /wscript
parent3eef81daa23ebf8dffe65f02799c8383385e1128 (diff)
switch to Lucida Sans Typewriter as OS X monospace font; new pingback code to get announcements from ardour.org (can be disabled on the command line with -a)
git-svn-id: svn://localhost/ardour2/branches/3.0@14189 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'wscript')
-rw-r--r--wscript12
1 files changed, 8 insertions, 4 deletions
diff --git a/wscript b/wscript
index 432f344e3f..426dc1d47a 100644
--- a/wscript
+++ b/wscript
@@ -444,7 +444,10 @@ def options(opt):
opt.add_option('--nls', action='store_true', default=True, dest='nls',
help='Enable i18n (native language support) (default)')
opt.add_option('--no-nls', action='store_false', dest='nls')
- opt.add_option('--phone-home', action='store_false', default=False, dest='phone_home')
+ opt.add_option('--phone-home', action='store_true', default=True, dest='phone_home',
+ help='Contact ardour.org at startup for new announcements')
+ opt.add_option('--no-phone-home', action='store_false', dest='phone_home',
+ help='Do not contact ardour.org at startup for new announcements')
opt.add_option('--stl-debug', action='store_true', default=False, dest='stl_debug',
help='Build with debugging for the STL')
opt.add_option('--rt-alloc-debug', action='store_true', default=False, dest='rt_alloc_debug',
@@ -633,10 +636,11 @@ def configure(conf):
# Set up waf environment and C defines
opts = Options.options
- if opts.debug:
- opts.phone_home = False; # debug builds should not call home
+ print "PH = "
+ print opts.phone_home
if opts.phone_home:
- conf.env['PHONE_HOME'] = opts.phone_home
+ conf.define('PHONE_HOME', 1)
+ conf.env['PHONE_HOME'] = True
if opts.fpu_optimization:
conf.env['FPU_OPTIMIZATION'] = True
if opts.freesound: