diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2009-08-03 17:37:58 +0100 |
---|---|---|
committer | Damien Lespiau <damien.lespiau@intel.com> | 2009-08-06 14:03:50 +0100 |
commit | 34ec5b80d45fd8573639b040595eb02220f0fdce (patch) | |
tree | f202fe0d3818302e234d21f1a55b3a2f4366d070 /doc | |
parent | 8005bf0bdef75dfbc68f61ac76375b937bb3b18e (diff) | |
download | clutter-gst-34ec5b80d45fd8573639b040595eb02220f0fdce.tar.gz |
[debug] Add a debugging insfrastructure.
Steal the GTK+/Clutter way of doing debug categories and messages.
The CLUTTER_GST_DEBUG environment variable can contain a comma separated
list of categories. Debugging messages with then be printed if the
library has been compiled with this feature enabled.
Note that this feature is always built-in by default, --disable-debug
will disable it tough.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/reference/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/reference/Makefile.am b/doc/reference/Makefile.am index 9f5af31..6b22a5e 100644 --- a/doc/reference/Makefile.am +++ b/doc/reference/Makefile.am @@ -1,4 +1,5 @@ ## Process this file with automake to produce Makefile.in +NULL = # # We require automake 1.6 at least. AUTOMAKE_OPTIONS = 1.6 @@ -47,7 +48,11 @@ CFILE_GLOB=$(top_srcdir)/clutter-gst/*.c # Header files to ignore when scanning. # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h -IGNORE_HFILES=clutter-gst.h clutter-gst-shaders.h +IGNORE_HFILES= \ + clutter-gst.h \ + clutter-gst-shaders.h \ + clutter-gst-debug.h \ + $(NULL) # Images to copy into HTML directory. # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png |