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:
authorNathan Letwory <nathan@letworyinteractive.com>2006-02-05 20:50:19 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-02-05 20:50:19 +0300
commit896b6288ca969f2277618e56a681ca638b7a5b67 (patch)
treefa0aa349d4b8ca39770bbfbc9868fe348724b020 /tools/Blender.py
parent9b36ffca12dfbca619ea61a012b9a6de19275a5f (diff)
==SCons==
* remove useless BF_TIFF* options. Upon closer inspection of code, only path to headers is needed
Diffstat (limited to 'tools/Blender.py')
-rw-r--r--tools/Blender.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index b698dcc19a4..4a631f84798 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -115,8 +115,6 @@ def setup_staticlibs(lenv):
]
libincs += Split(lenv['BF_OPENEXR_LIBPATH'])
- if lenv['WITH_BF_TIFF']:
- libincs += lenv['BF_TIFF_LIBPATH'],
if lenv['WITH_BF_INTERNATIONAL']:
libincs += Split(lenv['BF_GETTEXT_LIBPATH'])
libincs += Split(lenv['BF_FREETYPE_LIBPATH'])
@@ -139,8 +137,6 @@ def setup_syslibs(lenv):
syslibs += Split(lenv['BF_OPENAL_LIB'])
if lenv['OURPLATFORM']=='win32vc':
syslibs += Split(lenv['BF_ICONV_LIB'])
- if lenv['WITH_BF_TIFF']:
- syslibs += Split(lenv['BF_TIFF_LIB'])
if lenv['WITH_BF_OPENEXR']:
syslibs += Split(lenv['BF_OPENEXR_LIB'])
syslibs += Split(lenv['BF_SDL_LIB'])