fixup for compiling w/o GL

SVN revision: 11407
This commit is contained in:
atmosphere 2004-08-28 02:06:57 +00:00 committed by atmosphere
parent a27188129c
commit 4938c64dc4
1 changed files with 2 additions and 0 deletions

View File

@ -25,8 +25,10 @@ app_start(int argc, const char **argv)
ee = ecore_evas_fb_new(NULL, 0, 240, 320);
else if ((argc > 1) && (!strcmp(argv[1], "-x")))
ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, 240, 320);
#if HAVE_ECORE_EVAS_GL
else if ((argc > 1) && (!strcmp(argv[1], "-gl")))
ee = ecore_evas_gl_x11_new(NULL, 0, 0, 0, 240, 320);
#endif
else if ((argc > 1) && (!strcmp(argv[1], "-h")))
{
printf("%s -x Test ecore_evas in X (default)\n"