Bugzilla – Attachment #350: proposed patch for bug #463
# Get NSC
#
"""
# Skip downloading NSC on OS X due to HFS+ case insensitive issues
arch = os.uname()[0]
print arch
if arch == 'Darwin':
print "Architecture does not support NSC... skipping"
return
# (peek into the ns-3 wscript and extract the required nsc version)
internet_stack_wscript = open(os.path.join(ns3_dir, "src", "internet-stack", "wscript"), "rt")
required_nsc_version = None