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/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-02-02 06:23:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-02-02 06:23:36 +0300
commit655ca9d9ae2766ed171639566a86e152a38be946 (patch)
treefec3b0ec63c2465ee1ba11ca2ffcb952839bd2f0 /source
parentd09fe9d228ff82e61d8da50f1b18c790dcef6862 (diff)
makefile was not adding openexr, so py api never enabled setting openexr image type when using make.
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/api2_2x/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Makefile b/source/blender/python/api2_2x/Makefile
index 4ea06a324f5..492fa52588f 100644
--- a/source/blender/python/api2_2x/Makefile
+++ b/source/blender/python/api2_2x/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile 11904 2007-08-31 16:16:33Z sirdude $
+# $Id$
#
# ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
#
@@ -44,6 +44,10 @@ ifeq ($(WITH_FFMPEG), true)
CPPFLAGS += -DWITH_FFMPEG
endif
+ifeq ($(WITH_OPENEXR),true)
+ CPPFLAGS += -DWITH_OPENEXR
+endif
+
CPPFLAGS += -I$(OPENGL_HEADERS)
CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include
CPPFLAGS += -I../../makesdna
@@ -57,6 +61,7 @@ CPPFLAGS += -I$(NAN_BMFONT)/include
CPPFLAGS += -I../../imbuf
CPPFLAGS += -I$(NAN_PYTHON)/include/python$(NAN_PYTHON_VERSION)
+$(warning do we have EXR???????????????????? $(WITH_OPENEXR))
# We'll just add a little duct tape to fix things here ...
.PHONY: clean
clean::