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/creator
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/creator')
-rw-r--r--source/creator/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/creator/Makefile b/source/creator/Makefile
index 147f68151f3..c50f720acb5 100644
--- a/source/creator/Makefile
+++ b/source/creator/Makefile
@@ -44,7 +44,6 @@ endif
CFLAGS += $(LEVEL_1_C_WARNINGS)
-CPPFLAGS += -I$(OPENGL_HEADERS)
CPPFLAGS += -I../blender/render/extern/include
CPPFLAGS += -I../blender/radiosity/extern/include
# two needed for the kernel
@@ -63,3 +62,5 @@ CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include
ifeq ($(WITH_QUICKTIME), true)
CPPFLAGS += -I$(NAN_QUICKTIME)/include -DWITH_QUICKTIME
endif
+
+CPPFLAGS += -I$(OPENGL_HEADERS)