diff --git a/doc/reference/clutter/building-clutter.xml b/doc/reference/clutter/building-clutter.xml
index 21c3fc964..33ef04d10 100644
--- a/doc/reference/clutter/building-clutter.xml
+++ b/doc/reference/clutter/building-clutter.xml
@@ -95,12 +95,22 @@
--enable-debug=[no/minimum/yes]
- Turns on debugging. Possible values are: yes - all
- glib asserts, checks and runtime clutter verbose messages;
- minimum - just glib cast checks and runtime clutter verbose
- messagaes; no - no glib asserts or checks and no runtime
- clutter verbose messages; default=yes.
-
+ Controls the Clutter debugging level. Possible values
+ are: yes (all GLib asserts, checks and runtime debug
+ messages); minimum - just GLib cast checks and runtime
+ debug messages; no (no GLib asserts or checks and no
+ runtime debug messages). The default is yes for development
+ cycles, and minimum for stable releases. You should not use
+ no, unless the only performance critical paths are the
+ GLib type system checks.
+
+
+
+
+ --enable-cogl-debug=[no/minimum/yes]
+
+ Controls the COGL debugging level, similarly to
+ --enable-debug.
@@ -130,13 +140,59 @@
- --with-flavour=[glx/eglx/eglnative/sdl]
+ --with-flavour=[glx/eglx/eglnative/sdl/win32/osx/fruity]
Select the Clutter backend; default=glx.
+
+ --with-imagebackend=[gdk-pixbuf/quartz/internal]
+
+ Select the image loading backend; default is
+ set to gdk-pixbuf on Linux and Windows, and to quartz
+ on OS X. The internal image loading backend should only
+ be used when porting to a new platform or for testing
+ purposes, and its stability or functionality are not
+ guaranteed.
+
+
+
+
+ --with-gles=[1.1/2.0]
+
+ Select the version of GLES to support in COGL;
+ default is 1.1.
+
+
+
+
+ --with-json=[internal/check]
+
+ Select whether to use the internal copy of
+ JSON-GLib to parse the ClutterScript UI definition
+ files, or to check for the system installed library;
+ default is internal.
+
+
+
+
+ --enable-xinput=[no/yes]
+
+ Whether to enable XInput 1 support; default is
+ no.
+
+
+
+
+ --enable-introspection=[no/auto/yes]
+
+ Whether to generate GObject Introspection data
+ at build time; default is auto.
+
+
+