View | Details | Raw Unified | Return to bug 1253
Collapse All | Expand All

(-)a/bindings/python/wscript (-1 / +5 lines)
 Lines 73-79    Link Here 
73
        conf.report_optional_feature("python", "Python Bindings", False,
73
        conf.report_optional_feature("python", "Python Bindings", False,
74
                                     "disabled by user request")
74
                                     "disabled by user request")
75
        return
75
        return
76
76
    # Disable python in x86-64 static builds until bug 1253 fixed
77
    if conf.env['CXX_NAME'] in ['gcc', 'icc'] and os.uname()[4] == 'x86_64' and sys.platform != 'darwin':
78
        conf.report_optional_feature("python", "Python Bindings", False,
79
                                     "incompatible with x86_64 static build")
80
        return
77
    enabled_modules = list(conf.env['NS3_ENABLED_MODULES'])
81
    enabled_modules = list(conf.env['NS3_ENABLED_MODULES'])
78
    enabled_modules.sort()
82
    enabled_modules.sort()
79
    available_modules = list(conf.env['NS3_MODULES'])
83
    available_modules = list(conf.env['NS3_MODULES'])

Return to bug 1253