summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2009-12-21 17:25:03 -0800
committerVinson Lee <vlee@vmware.com>2009-12-21 17:25:03 -0800
commit2b7b2b90e3fb52306c10f62e2a56f5199028d862 (patch)
treead8cb019f065badfc452d56ca5945265d67595d5
parente46ad402f1fecf0fc8d2538eb5abbdde97484799 (diff)
scons: Define _USE_MATH_DEFINES on MSVC.
-rw-r--r--scons/gallium.py1
-rw-r--r--scons/generic.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/scons/gallium.py b/scons/gallium.py
index bf6172b4d7..9adba0a0a1 100644
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -263,6 +263,7 @@ def generate(env):
if msvc and env['toolchain'] != 'winddk':
cppdefines += [
'VC_EXTRALEAN',
+ '_USE_MATH_DEFINES',
'_CRT_SECURE_NO_DEPRECATE',
]
if debug:
diff --git a/scons/generic.py b/scons/generic.py
index a9c2244a74..2a085ddece 100644
--- a/scons/generic.py
+++ b/scons/generic.py
@@ -335,6 +335,7 @@ def generate(env):
if msvc:
cppdefines += [
'VC_EXTRALEAN',
+ '_USE_MATH_DEFINES',
'_CRT_SECURE_NO_DEPRECATE',
]
if debug: