search for: cairo_requir

Displaying 2 results from an estimated 2 matches for "cairo_requir".

Did you mean: cairo_requires
2007 Mar 20
3
configure.ac
configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) New commits: diff-tree 3101705919f2a1272a8222ac0cce54f24b34193f (from b5d3509c3db17551aa138c21ee9c133d9d4b183e) Author: Benjamin Otte <otte@gnome.org> Date: Tue Mar 20 19:56:49 2007 +0100 Output some info on what packages might be missing diff --git a/configure.ac b/configure.ac index d4a48c1..e640a78 100644
2007 Mar 29
0
Branch 'as' - 9 commits - configure.ac doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_stack.c
...index 65be1fc..5309072 100644 --- a/configure.ac +++ b/configure.ac @@ -154,11 +154,12 @@ if test "$HAVE_LIBOIL" = "no"; then AC_MSG_ERROR([cannot find liboil-0.3, which is required for build]) fi -PKG_CHECK_MODULES(CAIRO, cairo >= 1.2.0, HAVE_CAIRO=yes, HAVE_CAIRO=no) +CAIRO_REQUIRES=1.2 +PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_REQUIRES, HAVE_CAIRO=yes, HAVE_CAIRO=no) AC_SUBST(CAIRO_LIBS) AC_SUBST(CAIRO_CFLAGS) if test "$HAVE_CAIRO" = "no"; then - AC_MSG_ERROR([cannot find cairo, which is required for build]) + AC_MSG_ERROR([cannot find cairo >...