~ubuntu-branches/ubuntu/vivid/juju-mongodb/vivid-proposed

« back to all changes in this revision

Viewing changes to SConscript.buildinfo

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-01-07 14:48:30 UTC
  • Revision ID: package-import@ubuntu.com-20140107144830-lf56ymgnxftryn78
Tags: 2.4.8-0ubuntu4
* Disable javascript scripting support:
  - d/rules: Pass --disable-scripting, drop config options for v8 and sm,
    only run C++ based tests during smoke testing.
  - d/p/0001-Add-option-to-disable-javascript.patch: Cherry picked changes 
    from Michael Hudson to add support for disabling javascript support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
import buildscripts.utils
10
10
 
11
 
Import('env windows usev8 usesm')
 
11
Import('env windows usev8')
12
12
 
13
13
def getSysInfo():
14
14
    if windows:
41
41
 
42
42
    if usev8:
43
43
        js_engine = "V8"
44
 
    elif usesm:
45
 
        js_engine = "SpiderMonkey"
46
44
    else:
47
45
        js_engine = "Unknown"
48
46