search for: have_cairo

Displaying 6 results from an estimated 6 matches for "have_cairo".

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 05
0
11 commits - configure.ac libswfdec/swfdec_js_movie.c libswfdec/swfdec_root_movie.c libswfdec/swfdec_root_movie.h libswfdec/swfdec_script.c libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_swf_decoder.c
...git a/configure.ac b/configure.ac index 2c45bf2..7f41b65 100644 --- a/configure.ac +++ b/configure.ac @@ -128,7 +128,7 @@ 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 >= 0.4.0, HAVE_CAIRO=yes, HAVE_CAIRO=no) +PKG_CHECK_MODULES(CAIRO, cairo >= 1.2.0, HAVE_CAIRO=yes, HAVE_CAIRO=no) AC_SUBST(CAIRO_LIBS) AC_SUBST(CAIRO_CFLAGS) if test "$HAVE_CAIRO" = "no"; then diff-tree bc1fe2987c20d2425c0e7997270dea35aa168c92 (from 260cdc86a897a8f76a923c6deef48c1f28dc475b) Au...
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
...t a/configure.ac b/configure.ac 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...
2007 Mar 19
0
2 commits - configure.ac
...<otte@gnome.org> Date: Mon Mar 19 09:13:52 2007 +0100 allow --disable-ffmpeg and --disable-mad configure options (#10333, Mikel Olasagasti) diff --git a/configure.ac b/configure.ac index 7f41b65..6ea8b8d 100644 --- a/configure.ac +++ b/configure.ac @@ -135,10 +135,22 @@ if test "$HAVE_CAIRO" = "no"; then AC_MSG_ERROR([cannot find cairo, which is required for build]) fi -AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no") -AC_SUBST(MAD_LIBS) -if test "x$HAVE_MAD" = xyes; then - AC_DEFINE(HAV...
2018 Feb 17
0
[ANNOUNCE] libdrm 2.4.90
...nfigure: remove unused HAVE_TEGRA define meson,configure: remove unused HAVE_FREEDRENO define meson,configure: remove unused HAVE_ETNAVIV define meson,configure: always define HAVE_{INTEL,VMWGFX,NOUVEAU,EXYNOS,VC4,RADEON} always define HAVE_FREEDRENO_KGSL always define HAVE_CAIRO always define HAVE_VALGRIND meson: sort HAVE_* defines xf86atomic: fix -Wundef warning meson: cleanup whitespace meson,configure: add warning when using undefined preprocessor tokens xf86drmHash: remove always-false #if guards configure: always define HAVE_...
2007 Apr 17
0
8 commits - configure.ac doc/Makefile.am libswfdec/jpeg libswfdec/swfdec_debug.h libswfdec/swfdec_image.c
..._SUBST(LIBOIL_LIBS) AC_SUBST(LIBOIL_CFLAGS) if test "$HAVE_LIBOIL" = "no"; then - AC_MSG_ERROR([cannot find liboil-0.3, which is required for build]) + AC_MSG_ERROR([liboil-0.3 >= $LIBOIL_VER is required to build swfdec]) fi -PKG_CHECK_MODULES(CAIRO, cairo >= 1.2.0, HAVE_CAIRO=yes, HAVE_CAIRO=no) +CAIRO_VER=1.2.0 +PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_VER, 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_ERR...