aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlecoanet2004-10-18 09:39:05 +0000
committerlecoanet2004-10-18 09:39:05 +0000
commite8a9906d05de8faa64e422f0f72751063ac5a198 (patch)
tree9f448ebd8e39721cffa9932fe44ee20a86571e53
parentcd745d57b801bfe86c9804e47ddbe28e83f77024 (diff)
downloadtkzinc-e8a9906d05de8faa64e422f0f72751063ac5a198.zip
tkzinc-e8a9906d05de8faa64e422f0f72751063ac5a198.tar.gz
tkzinc-e8a9906d05de8faa64e422f0f72751063ac5a198.tar.bz2
tkzinc-e8a9906d05de8faa64e422f0f72751063ac5a198.tar.xz
Changed the include paths order to let the compiler
pick the standard GL includes before the local ones. This matters for the tesselator code.
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index b1d0a9c..dab7ce2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -172,8 +172,8 @@ SHARED_BUILD = @SHARED_BUILD@
# The local includes must come first, because the TK_XINCLUDES can be
# just a comment
-INCLUDES = -I$(tess_dir) -I$(srcdir)/generic \
- @TCL_INCLUDES@ @TK_INCLUDES@ @TK_XINCLUDES@ @GL_INCLUDES@
+INCLUDES = -I$(srcdir)/generic \
+ @TCL_INCLUDES@ @TK_INCLUDES@ @TK_XINCLUDES@ @GL_INCLUDES@ -I$(tess_dir)
EXTRA_CFLAGS = $(MEM_DEBUG_FLAGS) @EXTRA_CFLAGS@