Enlightenment CVS committal Author : ningerso Project : e17 Module : libs/ewl
Dir : e17/libs/ewl Modified Files: configure.in Log Message: Abstracted canvas output size setup to the engines. Changed some fb engine copy and paste errors. Add initial evas buffer engine. =================================================================== RCS file: /cvs/e/e17/libs/ewl/configure.in,v retrieving revision 1.79 retrieving revision 1.80 diff -u -3 -r1.79 -r1.80 --- configure.in 29 Sep 2006 20:32:23 -0000 1.79 +++ configure.in 30 Sep 2006 20:53:30 -0000 1.80 @@ -186,6 +186,22 @@ fi fi +AC_ARG_ENABLE(buffer, + [AC_HELP_STRING([--enable-buffer],[enable opengl X11 support])], + [enable_buffer=$enableval], [enable_buffer="auto"]) +if test "x$enable_buffer" != "xno" ; then + have_buffer=no + AC_CHECK_HEADERS(Evas_Engine_Buffer.h, + [have_buffer=yes], + [], [#include <Evas.h>]) + if test "x$have_buffer" = "xyes" ; then + AC_DEFINE(ENABLE_EWL_BUFFER, 1, [Enable Buffer]) + elif test "x$enable_buffer" = "xyes" ; then + AC_MSG_ERROR(buffer requested but no evas support found) + fi +fi +AM_CONDITIONAL(EWL_ENABLE_EVAS_BUFFER, test "x$have_buffer" = xyes) + AC_PATH_GENERIC(edje, 0.5.0, [ ], [ @@ -259,6 +275,7 @@ src/engines/evas_xrender_x11/Makefile src/engines/evas_gl_x11/Makefile src/engines/evas_fb/Makefile +src/engines/evas_buffer/Makefile data/Makefile data/images/Makefile data/themes/Makefile ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs