|
Lines 394-400
AC_ARG_WITH(accelerated_compositing,
a/configure.ac_sec1
|
| 394 |
[], [with_accelerated_compositing="no"]) |
394 |
[], [with_accelerated_compositing="no"]) |
| 395 |
AC_MSG_RESULT([$with_accelerated_compositing]) |
395 |
AC_MSG_RESULT([$with_accelerated_compositing]) |
| 396 |
|
396 |
|
| 397 |
if test "$enable_webgl" = "yes" || test "with_accelerated_compositing" = "yes"; then |
397 |
if test "$enable_webgl" = "yes" && test "$with_accelerated_compositing" = "clutter" ; then |
|
|
398 |
AC_MSG_ERROR([WebGL and Accelerated Compositing using clutter can not be enabled at the same time.]); |
| 399 |
fi |
| 400 |
|
| 401 |
if test "$enable_webgl" = "yes" || test "$with_accelerated_compositing" = "clutter" || test "$with_accelerated_compositing" = "texmap-cairo" || test "$with_accelerated_compositing" == "texmap-opengl" ; then |
| 398 |
AC_CHECK_HEADERS([GL/gl.h], [], AC_MSG_ERROR([OpenGL header not found])) |
402 |
AC_CHECK_HEADERS([GL/gl.h], [], AC_MSG_ERROR([OpenGL header not found])) |
| 399 |
AC_CHECK_HEADERS([GL/glx.h], [], AC_MSG_ERROR([GLX header not found])) |
403 |
AC_CHECK_HEADERS([GL/glx.h], [], AC_MSG_ERROR([GLX header not found])) |
| 400 |
OPENGL_LIBS="-lGL -ldl" |
404 |
OPENGL_LIBS="-lGL -ldl" |
|
Lines 1148-1154
AM_CONDITIONAL([USE_PANGO], [test "$with_font_backend" = "pango"])
a/configure.ac_sec2
|
| 1148 |
AM_CONDITIONAL([USE_GSTREAMER], [test "$have_gstreamer" = "yes"]) |
1152 |
AM_CONDITIONAL([USE_GSTREAMER], [test "$have_gstreamer" = "yes"]) |
| 1149 |
|
1153 |
|
| 1150 |
# Accelerated compositing conditional |
1154 |
# Accelerated compositing conditional |
| 1151 |
AM_CONDITIONAL([USE_ACCELERATED_COMPOSITING], [test "$with_accelerated_compositing" = "yes"]) |
1155 |
AM_CONDITIONAL([USE_ACCELERATED_COMPOSITING], [test "$with_accelerated_compositing" = "clutter"]) |
|
|
1156 |
AM_CONDITIONAL([USE_ACCELERATED_COMPOSITING], [test "$with_accelerated_compositing" = "texmap-cairo"]) |
| 1157 |
AM_CONDITIONAL([USE_ACCELERATED_COMPOSITING], [test "$with_accelerated_compositing" = "texmap-opengl"]) |
| 1158 |
AM_CONDITIONAL([USE_AC_CLUTTER], [test "$with_accelerated_compositing" = "clutter"]) |
| 1159 |
AM_CONDITIONAL([USE_AC_TEXTURE_MAPPER_OPENGL], [test "$with_accelerated_compositing" = "texmap-opengl"]) |
| 1160 |
AM_CONDITIONAL([USE_AC_TEXTURE_MAPPER_CAIRO], [test "$with_accelerated_compositing" = "texmap-cairo"]) |
| 1152 |
|
1161 |
|
| 1153 |
# WebKit feature conditionals |
1162 |
# WebKit feature conditionals |
| 1154 |
AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug_features" = "yes"]) |
1163 |
AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug_features" = "yes"]) |