Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir     : e17/libs/evas


Modified Files:
        README.in configure.in 


Log Message:


check for glue! :)

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/evas/README.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- README.in   13 May 2005 04:20:46 -0000      1.3
+++ README.in   25 Aug 2005 04:37:24 -0000      1.4
@@ -61,10 +61,6 @@
   you need at least 1 image loader if you want to load images.
   gcc 3.0.x on solaris screws up the jpeg code so erroring out doesn't work.
     use gcc 3.2 on solaris.
-  freetype 2.1.2 is BAD. RedHat 8.0 uses this as do some debain distributions.
-    either downgrade to 2.1.1. freetype 2.1.3 is ALSO BAD, as is 2.0.9. It has
-    glyph metric rendering bugs and glyph geomery query bugs. do not use it.
-    try using 2.0.3. It is known to be stable and work perfectly with Evas.
 
 --------------------------------------------------------------------------
 notes on features:
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/evas/configure.in,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -3 -r1.111 -r1.112
--- configure.in        31 Jul 2005 07:30:06 -0000      1.111
+++ configure.in        25 Aug 2005 04:37:24 -0000      1.112
@@ -427,23 +427,32 @@
 if test "x$have_evas_gl_x11" = "xyes"; then
   AC_CHECK_HEADER(GL/gl.h,
     [
-      AC_CHECK_HEADER(X11/X.h,
+      AC_CHECK_HEADER(GL/glu.h,
         [
-          AM_CONDITIONAL(BUILD_ENGINE_GL_X11, true)
-         AC_DEFINE(BUILD_ENGINE_GL_X11, 1, [OpenGL X11 Rendering Backend])
-         AM_CONDITIONAL(BUILD_ENGINE_GL_COMMON, true)
-         AC_DEFINE(BUILD_ENGINE_GL_COMMON, 1, [Generic OpenGL Rendering 
Support])
-         x_dir=${x_dir:-/usr/X11R6};
-         x_cflags=${x_cflags:--I$x_dir/include}
-         x_libs="${x_libs:--L$x_dir/lib -lX11 -lXext}"
-         gl_cflags="-I/usr/include"
-         gl_libs="-lGL -lGLU -lpthread"
-         gl_dir=""
-         ENGINE_GL_X11_PRG="evas_gl_x11_test"
+          AC_CHECK_HEADER(X11/X.h,
+            [
+              AM_CONDITIONAL(BUILD_ENGINE_GL_X11, true)
+             AC_DEFINE(BUILD_ENGINE_GL_X11, 1, [OpenGL X11 Rendering Backend])
+             AM_CONDITIONAL(BUILD_ENGINE_GL_COMMON, true)
+             AC_DEFINE(BUILD_ENGINE_GL_COMMON, 1, [Generic OpenGL Rendering 
Support])
+             x_dir=${x_dir:-/usr/X11R6};
+             x_cflags=${x_cflags:--I$x_dir/include}
+             x_libs="${x_libs:--L$x_dir/lib -lX11 -lXext}"
+             gl_cflags="-I/usr/include"
+             gl_libs="-lGL -lGLU -lpthread"
+             gl_dir=""
+             ENGINE_GL_X11_PRG="evas_gl_x11_test"
+            ], [
+              AM_CONDITIONAL(BUILD_ENGINE_GL_X11, false)
+              AM_CONDITIONAL(BUILD_ENGINE_GL_COMMON, false)
+              AC_MSG_RESULT(disabling GL X11 engine)
+              have_evas_gl_x11="no"
+            ]
         ], [
           AM_CONDITIONAL(BUILD_ENGINE_GL_X11, false)
           AM_CONDITIONAL(BUILD_ENGINE_GL_COMMON, false)
           AC_MSG_RESULT(disabling GL X11 engine)
+          have_evas_gl_x11="no"
         ]
       )
     ], [
@@ -456,6 +465,7 @@
 else
   AM_CONDITIONAL(BUILD_ENGINE_GL_X11, false)
   AM_CONDITIONAL(BUILD_ENGINE_GL_COMMON, false)
+  have_evas_gl_x11="no"
 fi
 
 




-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to