From a13dec34ef0f6b70fda83038f1b263d0e2cb2222 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Wed, 24 Jun 2009 14:10:19 -0400 Subject: [PATCH] Fix accidental rename of --with-clutter/--with-introspection options Since --with-clutter and --with-introspection refer to use of external libraries, they should in fact be --with and not --enable. Fix accidental change that got committed as part of the big metacity => mutter change. http://bugzilla.gnome.org/show_bug.cgi?id=586821 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 215a3808b..a3d318fa9 100644 --- a/configure.in +++ b/configure.in @@ -158,12 +158,12 @@ AC_ARG_ENABLE(compositor, [disable mutter's compositing manager]),, enable_compositor=auto) -AC_ARG_ENABLE(clutter, +AC_ARG_WITH(clutter, AC_HELP_STRING([--without-clutter], [disable the use of clutter for compositing]),, with_clutter=auto) -AC_ARG_ENABLE(introspection, +AC_ARG_WITH(introspection, AC_HELP_STRING([--without-introspection], [disable the use of GObject introspection]),, with_introspection=auto)