diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2008-09-11 00:49:17 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2008-09-11 00:49:17 -0400 |
commit | f9a332c8fda32136a99299ac73a1737028fa8795 (patch) | |
tree | 247af4d48c1193e916e76e6d47246e4ed1d3a53b /configure.ac | |
parent | 391bef58fcb301014adc8b06db7265c5c9b3bee3 (diff) |
[configure.ac] Fix pixman requires
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 67e2a98f..93fb7e10 100644 --- a/configure.ac +++ b/configure.ac @@ -415,9 +415,9 @@ CAIRO_ENABLE(test_surfaces, test surfaces, no) dnl =========================================================================== CAIRO_ENABLE_SURFACE_BACKEND(image, image, always, [ - pixman_REQUIRES="pixman-1 >= 0.11.2" - PKG_CHECK_MODULES(pixman, $pixman_REQUIRES, , [AC_MSG_RESULT(no) - use_image="no (requires $pixman_REQUIRES http://cairographics.org/releases/)"]) + image_REQUIRES="pixman-1 >= 0.11.2" + PKG_CHECK_MODULES(pixman, $image_REQUIRES, , [AC_MSG_RESULT(no) + use_image="no (requires $image_REQUIRES http://cairographics.org/releases/)"]) ]) dnl =========================================================================== |