Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-09-06 03:46:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-06 03:46:08 +0400
commitbf5a6531a61638b74b9e80e055e00c2b97483fdf (patch)
tree157b7c11f74e52d6a3fea841d1e6cde82703b48d /source/blender/makesrna/intern/SConscript
parent0991bed4139e4a77ba81514ad1dfb6a852a41fa5 (diff)
replace define '#if FFTW3==1' --> '#ifdef WITH_FFTW3'
Diffstat (limited to 'source/blender/makesrna/intern/SConscript')
-rw-r--r--source/blender/makesrna/intern/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/SConscript b/source/blender/makesrna/intern/SConscript
index 24c892b96c4..5c2580e4b90 100644
--- a/source/blender/makesrna/intern/SConscript
+++ b/source/blender/makesrna/intern/SConscript
@@ -71,7 +71,7 @@ if env['WITH_BF_GAMEENGINE']:
defs.append('WITH_GAMEENGINE')
if env['WITH_BF_FFTW3']:
- defs.append('FFTW3=1')
+ defs.append('WITH_FFTW3')
if env['WITH_BF_SDL']:
defs.append('WITH_SDL')