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
path: root/config
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2008-11-12 10:48:53 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-11-12 10:48:53 +0300
commit999f312d6250ce3fd76dd59465be4fc25d0a612f (patch)
tree1b17abe35c440972d07302a06977514215acfc9b /config
parentb8fb31e236bcbc281b060887fefb7af39f143b37 (diff)
Change the LCG_DIR usage to BF_name_LIBPATH where possible. FFMPEG can't be done like that yet, needs some extra thought to handle differences between vc and mingw setup
Diffstat (limited to 'config')
-rw-r--r--config/win32-mingw-config.py2
-rw-r--r--config/win32-vc-config.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/config/win32-mingw-config.py b/config/win32-mingw-config.py
index 15bfce80f89..712ec90189a 100644
--- a/config/win32-mingw-config.py
+++ b/config/win32-mingw-config.py
@@ -64,6 +64,8 @@ BF_PNG_LIBPATH = '${BF_PNG}/lib'
BF_TIFF = LIBDIR + '/tiff'
BF_TIFF_INC = '${BF_TIFF}/include'
+BF_TIFF_LIB = 'libtiff'
+BF_TIFF_LIBPATH = '${BF_TIFF}/lib'
WITH_BF_ZLIB = True
BF_ZLIB = LIBDIR + '/zlib'
diff --git a/config/win32-vc-config.py b/config/win32-vc-config.py
index 9a41f7ee557..fe51abe0a89 100644
--- a/config/win32-vc-config.py
+++ b/config/win32-vc-config.py
@@ -77,6 +77,8 @@ BF_PNG_LIBPATH = '${BF_PNG}/lib'
BF_TIFF = LIBDIR + '/tiff'
BF_TIFF_INC = '${BF_TIFF}/include'
+BF_TIFF_LIB = 'libtiff'
+BF_TIFF_LIBPATH = '${BF_TIFF}/lib'
WITH_BF_ZLIB = True
BF_ZLIB = LIBDIR + '/zlib'