Skip to content

Commit

Permalink
Merge pull request #20 from akoeplinger/fix-dependency-check
Browse files Browse the repository at this point in the history
Check that Cairo is installed in configure.ac again
  • Loading branch information
Alex Rønne Petersen committed Jun 11, 2014
2 parents f4dcf7d + 5e66cbd commit a29435a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions configure.ac
Expand Up @@ -22,6 +22,9 @@ PKG_CHECK_MODULES(BASE_DEPENDENCIES, glib-2.0 >= $GLIB_REQUIRED_VERSION)
GDIPLUS_LIBS="`pkg-config --libs glib-2.0 `"
GDIPLUS_CFLAGS="`pkg-config --cflags glib-2.0 `"

CAIRO_REQUIRED_VERSION="1.6.4"
PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_REQUIRED_VERSION)

# Optional use (experimental and unsupported) of Pango's text rendering on top of Cairo
AC_ARG_WITH(pango, [ --with-pango],[text_v=pango],[text_v=cairo])

Expand Down

0 comments on commit a29435a

Please sign in to comment.