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
This commit is contained in:
Owen W. Taylor 2009-06-24 14:10:19 -04:00
parent 072ec184d3
commit a13dec34ef

View File

@ -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)