[docs] Update the building instructions

New configure script command line switches have been added since
the last time we updated the documentation.
This commit is contained in:
Emmanuele Bassi 2009-07-21 11:50:08 +01:00
parent 78773ab6fe
commit c87fea6cf1

View File

@ -95,12 +95,22 @@
<varlistentry> <varlistentry>
<term>--enable-debug=[no/minimum/yes]</term> <term>--enable-debug=[no/minimum/yes]</term>
<listitem> <listitem>
<para>Turns on debugging. Possible values are: yes - all <para>Controls the Clutter debugging level. Possible values
glib asserts, checks and runtime clutter verbose messages; are: yes (all GLib asserts, checks and runtime debug
minimum - just glib cast checks and runtime clutter verbose messages); minimum - just GLib cast checks and runtime
messagaes; no - no glib asserts or checks and no runtime debug messages; no (no GLib asserts or checks and no
clutter verbose messages; default=yes. runtime debug messages). The default is yes for development
</para> cycles, and minimum for stable releases. You should not use
no, unless the only performance critical paths are the
GLib type system checks.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--enable-cogl-debug=[no/minimum/yes]</term>
<listitem>
<para>Controls the COGL debugging level, similarly to
--enable-debug.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
@ -130,13 +140,59 @@
</varlistentry> </varlistentry>
<varlistentry> <varlistentry>
<term>--with-flavour=[glx/eglx/eglnative/sdl]</term> <term>--with-flavour=[glx/eglx/eglnative/sdl/win32/osx/fruity]</term>
<listitem> <listitem>
<para>Select the Clutter backend; default=glx. <para>Select the Clutter backend; default=glx.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry>
<term>--with-imagebackend=[gdk-pixbuf/quartz/internal]</term>
<listitem>
<para>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.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--with-gles=[1.1/2.0]</term>
<listitem>
<para>Select the version of GLES to support in COGL;
default is 1.1.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--with-json=[internal/check]</term>
<listitem>
<para>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.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--enable-xinput=[no/yes]</term>
<listitem>
<para>Whether to enable XInput 1 support; default is
no.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--enable-introspection=[no/auto/yes]</term>
<listitem>
<para>Whether to generate GObject Introspection data
at build time; default is auto.</para>
</listitem>
</varlistentry>
</variablelist> </variablelist>
</para> </para>