changeset 8723:0899370cce9f

Include FTGLTextureFont.h when FTGL_UPPER_CASE is not defined.
author Ben Abbott <bpabbott@mac.com>
date Wed, 11 Feb 2009 19:14:42 -0500
parents 3cedb606145d
children a50228129dba
files ChangeLog configure.in
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Feb 11 10:14:58 2009 -0500
+++ b/ChangeLog	Wed Feb 11 19:14:42 2009 -0500
@@ -1,3 +1,8 @@
+2009-02-11 Ben Abbott <bpabbott@mac.com>
+
+	* configure.in: Include FTGLTextureFont.h when FTGL_UPPER_CASE is
+	not defined.
+
 2009-02-11  John W. Eaton  <jwe@octave.org>
 
 	* configure.in (octetcdir): New default value.
--- a/configure.in	Wed Feb 11 10:14:58 2009 -0500
+++ b/configure.in	Wed Feb 11 19:14:42 2009 -0500
@@ -708,17 +708,17 @@
 #ifdef HAVE_FTGL_FTGL_H
 #ifdef HAVE_FTGL_UPPERCASE
 #include <FTGL/FTGL.h>
-#include <FTGL/FTGLTextureFont.h>
 #else
 #include <FTGL/ftgl.h>
 #endif
+#include <FTGL/FTGLTextureFont.h>
 #elif HAVE_FTGL_H
 #ifdef HAVE_FTGL_UPPERCASE
 #include <FTGL.h>
-#include <FTGLTextureFont.h>
 #else
 #include <ftgl.h>
 #endif
+#include <FTGLTextureFont.h>
 #endif], [
 FTGLTextureFont font("");], [
           OPENGL_LIBS="$OPENGL_LIBS $FT2_LIBS -lftgl"