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:
authorChris Want <cwant@ualberta.ca>2003-06-29 21:21:38 +0400
committerChris Want <cwant@ualberta.ca>2003-06-29 21:21:38 +0400
commit67e9d009365b6f56f9744dacac040bb2f1465c91 (patch)
tree1d1296e97c0fc77c6bb88dc1695361c109aac970 /source/blender/src/Makefile
parent3284916aeb459fb0d9484ef2d5be26e82825a19a (diff)
Moved the OPENGL_HEADERS to the end of the include paths
-- so that render.h from another package (such as the Xrender extension on irix) doesn't conflict with the blender one.
Diffstat (limited to 'source/blender/src/Makefile')
-rw-r--r--source/blender/src/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/src/Makefile b/source/blender/src/Makefile
index f9f308f2758..35c29a8571e 100644
--- a/source/blender/src/Makefile
+++ b/source/blender/src/Makefile
@@ -56,7 +56,6 @@ endif
# PreProcessor stuff ------------------------------------------
-CPPFLAGS += -I$(OPENGL_HEADERS)
CPPFLAGS += -I$(NAN_PYTHON)/include/python$(NAN_PYTHON_VERSION)
CPPFLAGS += -I$(NAN_GHOST)/include
CPPFLAGS += -I$(NAN_BMFONT)/include
@@ -112,3 +111,5 @@ endif
ifeq ($(INTERNATIONAL), true)
CPPFLAGS += -DINTERNATIONAL
endif
+
+CPPFLAGS += -I$(OPENGL_HEADERS)