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

(-)a/download.py (+6 lines)
 Lines 123-128   def get_nsc(ns3_dir): Link Here 
123
    # Get NSC
123
    # Get NSC
124
    #
124
    #
125
    """
125
    """
126
    # Skip downloading NSC on OS X due to HFS+ case insensitive issues
127
    arch = os.uname()[0]
128
    print arch
129
    if arch == 'Darwin':
130
        print "Architecture does not support NSC... skipping"
131
        return 
126
    # (peek into the ns-3 wscript and extract the required nsc version)
132
    # (peek into the ns-3 wscript and extract the required nsc version)
127
    internet_stack_wscript = open(os.path.join(ns3_dir, "src", "internet-stack", "wscript"), "rt")
133
    internet_stack_wscript = open(os.path.join(ns3_dir, "src", "internet-stack", "wscript"), "rt")
128
    required_nsc_version = None
134
    required_nsc_version = None

Return to bug 463