summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-01-07 13:41:09 -0500
committerColin Walters <walters@verbum.org>2013-01-07 13:41:09 -0500
commitfc2e46f7d3c90c117639fe86b0e42f34d97b704f (patch)
treec688c37dfe2ac82f660075fe607a530f6044302d
parentf5631640751b5a998b3616db78dd5dcd9ee62126 (diff)
downloadgobject-introspection-fc2e46f7d3c90c117639fe86b0e42f34d97b704f.tar.gz
build: Fix previous commit
-rw-r--r--configure.ac4
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 96b36751..71223e05 100644
--- a/configure.ac
+++ b/configure.ac
@@ -138,9 +138,7 @@ AC_ARG_WITH(cairo,
AS_IF([test x${with_cairo} != xno], [
PKG_CHECK_MODULES(CAIRO, [cairo cairo-gobject], have_cairo=yes, have_cairo=no)
- AS_IF([ test x$have_cairo = xyes && test x$with_cairo = xmaybe ], [
- have_cairo=no
- ], [ test x$have_cairo = xno && test x$with_cairo = xyes ], [
+ AS_IF([ test x$have_cairo = xno && test x$with_cairo = xyes ], [
AC_MSG_ERROR([cairo enabled but not found])
])
])