summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2005-08-23 15:16:37 +0000
committerOwen Taylor <otaylor@redhat.com>2005-08-23 15:16:37 +0000
commitf5c16c2e4815306308de5c884d11ff9888229986 (patch)
tree4c37ecce7ed64d55fac3553f11743e6a956870d8
parentb8d610c56e77afe6e27514d8a1ce76bd9aaf8274 (diff)
Reverse the help text for --enable-xcb,
--enable-quartz.
-rw-r--r--ChangeLog5
-rw-r--r--configure.in6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 8d17db51..f5f8529f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2005-08-23 Owen Taylor <otaylor@redhat.com>
+ * configure.in: Reverse the help text for --enable-xcb,
+ --enable-quartz.
+
+2005-08-23 Owen Taylor <otaylor@redhat.com>
+
* configure.in: Disable XCB and Quartz backends unless
explicitely enabled. Add a big warning message if they
are enabled about bugs and API instability.
diff --git a/configure.in b/configure.in
index abe0d745..8f18f989 100644
--- a/configure.in
+++ b/configure.in
@@ -114,7 +114,7 @@ CAIRO_CFLAGS="$CAIRO_CFLAGS $XRENDER_CFLAGS"
CAIRO_LIBS="$CAIRO_LIBS $XRENDER_LIBS"
AC_ARG_ENABLE(quartz,
- [ --disable-quartz Disable cairo's quartz backend],
+ [ --enable-quartz Enable cairo's Quartz backend],
[use_quartz=$enableval], [use_quartz=no])
if test "x$use_quartz" = "xyes"; then
@@ -133,7 +133,7 @@ CAIRO_LIBS="$CAIRO_LIBS $QUARTZ_LIBS"
dnl ===========================================================================
AC_ARG_ENABLE(xcb,
- [ --disable-xcb Disable cairo's XCB backend],
+ [ --enable-xcb Enable cairo's XCB backend],
[use_xcb=$enableval], [use_xcb=no])
if test "x$use_xcb" = "xyes"; then
@@ -165,7 +165,7 @@ esac
AC_MSG_RESULT([$cairo_platform_win32])
AC_ARG_ENABLE(win32,
- [ --disable-win32 Disable cairo's Microsoft Windows backend],
+ [ --disable-win32 Disable cairo's Microsoft Windows backend],
[use_win32=$enableval], [use_win32="yes"])
if test "x$cairo_platform_win32" != "xyes" ; then