2007-10-12 Tomas Frydrych <tf@o-hand.com>

* clutter/clutter-actor.c:
        * clutter/clutter-backend.c:
        * clutter/clutter-behaviour-depth.c:
        * clutter/clutter-box.c:
        * clutter/clutter-clone-texture.c:
        * clutter/clutter-container.c:
        * clutter/clutter-entry.c:
        * clutter/clutter-feature.c:
        * clutter/clutter-fixed.c:
        * clutter/clutter-group.c:
        * clutter/clutter-hbox.c:
        * clutter/clutter-label.c:
        * clutter/clutter-layout.c:
        * clutter/clutter-media.c:
        * clutter/clutter-rectangle.c:
        * clutter/clutter-score.c:
        * clutter/clutter-script.c:
        * clutter/clutter-stage.c:
        * clutter/clutter-texture.c:
        * clutter/clutter-timeline.c:
        * clutter/clutter-timeout-pool.c:
        * clutter/clutter-vbox.c:
        * clutter/cogl/gl/cogl.c:
        * clutter/cogl/gles/cogl.c:
        * clutter/eglnative/clutter-backend-egl.c:
        * clutter/eglnative/clutter-event-egl.c:
        * clutter/eglnative/clutter-stage-egl.c:
        * clutter/eglx/clutter-backend-egl.c:
        * clutter/eglx/clutter-event-egl.c:
        * clutter/eglx/clutter-stage-egl.c:
        * clutter/glx/clutter-event-glx.c:
        * clutter/json/json-array.c:
        * clutter/json/json-generator.c:
        * clutter/json/json-node.c:
        * clutter/json/json-object.c:
        * clutter/json/json-parser.c:
        * clutter/sdl/clutter-backend-sdl.c:
        * clutter/sdl/clutter-event-sdl.c:
        * clutter/sdl/clutter-stage-sdl.c:

	Fixedup config.h inclusion (must always be bracketed with #ifdef
	HAVE_CONFIG_H).
This commit is contained in:
Tomas Frydrych 2007-10-12 08:17:00 +00:00
parent 422c725a47
commit abd6832dd9
40 changed files with 1003 additions and 883 deletions

View File

@ -1,3 +1,48 @@
2007-10-12 Tomas Frydrych <tf@o-hand.com>
* clutter/clutter-actor.c:
* clutter/clutter-backend.c:
* clutter/clutter-behaviour-depth.c:
* clutter/clutter-box.c:
* clutter/clutter-clone-texture.c:
* clutter/clutter-container.c:
* clutter/clutter-entry.c:
* clutter/clutter-feature.c:
* clutter/clutter-fixed.c:
* clutter/clutter-group.c:
* clutter/clutter-hbox.c:
* clutter/clutter-label.c:
* clutter/clutter-layout.c:
* clutter/clutter-media.c:
* clutter/clutter-rectangle.c:
* clutter/clutter-score.c:
* clutter/clutter-script.c:
* clutter/clutter-stage.c:
* clutter/clutter-texture.c:
* clutter/clutter-timeline.c:
* clutter/clutter-timeout-pool.c:
* clutter/clutter-vbox.c:
* clutter/cogl/gl/cogl.c:
* clutter/cogl/gles/cogl.c:
* clutter/eglnative/clutter-backend-egl.c:
* clutter/eglnative/clutter-event-egl.c:
* clutter/eglnative/clutter-stage-egl.c:
* clutter/eglx/clutter-backend-egl.c:
* clutter/eglx/clutter-event-egl.c:
* clutter/eglx/clutter-stage-egl.c:
* clutter/glx/clutter-event-glx.c:
* clutter/json/json-array.c:
* clutter/json/json-generator.c:
* clutter/json/json-node.c:
* clutter/json/json-object.c:
* clutter/json/json-parser.c:
* clutter/sdl/clutter-backend-sdl.c:
* clutter/sdl/clutter-event-sdl.c:
* clutter/sdl/clutter-stage-sdl.c:
Fixedup config.h inclusion (must always be bracketed with #ifdef
HAVE_CONFIG_H).
2007-10-11 Tomas Frydrych <tf@o-hand.com> 2007-10-11 Tomas Frydrych <tf@o-hand.com>
* clutter/clutter-entry.c: * clutter/clutter-entry.c:

View File

@ -52,7 +52,9 @@
* </orderedlist> * </orderedlist>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-actor.h" #include "clutter-actor.h"
#include "clutter-container.h" #include "clutter-container.h"

View File

@ -37,7 +37,7 @@
* #ClutterBackend is available since Clutter 0.4 * #ClutterBackend is available since Clutter 0.4
*/ */
#ifndef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif

View File

@ -25,7 +25,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-behaviour-depth.h" #include "clutter-behaviour-depth.h"

View File

@ -1,4 +1,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "cogl.h" #include "cogl.h"

View File

@ -31,7 +31,9 @@
* #ClutterCloneTexture allows the cloning of existing #ClutterTexture based * #ClutterCloneTexture allows the cloning of existing #ClutterTexture based
* actors whilst saving underlying graphics resources. * actors whilst saving underlying graphics resources.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-clone-texture.h" #include "clutter-clone-texture.h"
#include "clutter-main.h" #include "clutter-main.h"

View File

@ -26,7 +26,9 @@
* Author: Emmanuele Bassi <ebassi@openedhand.com> * Author: Emmanuele Bassi <ebassi@openedhand.com>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include <stdarg.h> #include <stdarg.h>
#include <glib-object.h> #include <glib-object.h>

View File

@ -38,7 +38,9 @@
* #ClutterEntry is available since Clutter 0.4. * #ClutterEntry is available since Clutter 0.4.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-entry.h" #include "clutter-entry.h"

View File

@ -30,7 +30,9 @@
* Functions to query available GL features ay runtime * Functions to query available GL features ay runtime
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View File

@ -23,7 +23,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include <clutter-fixed.h> #include <clutter-fixed.h>
#include <clutter-private.h> #include <clutter-private.h>

View File

@ -37,7 +37,10 @@
* ignored. * ignored.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include <stdarg.h> #include <stdarg.h>
#include "clutter-group.h" #include "clutter-group.h"

View File

@ -1,4 +1,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-hbox.h" #include "clutter-hbox.h"

View File

@ -30,7 +30,9 @@
* #ClutterLabel is a #ClutterTexture that displays text. * #ClutterLabel is a #ClutterTexture that displays text.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-label.h" #include "clutter-label.h"
#include "clutter-layout.h" #include "clutter-layout.h"

View File

@ -28,7 +28,9 @@
* Author: Emmanuele Bassi <ebassi@openedhand.com> * Author: Emmanuele Bassi <ebassi@openedhand.com>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-layout.h" #include "clutter-layout.h"
#include "clutter-main.h" #include "clutter-main.h"

View File

@ -30,7 +30,9 @@
* #ClutterMedia is an interface for controlling playback of media data. * #ClutterMedia is an interface for controlling playback of media data.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-media.h" #include "clutter-media.h"
#include "clutter-main.h" #include "clutter-main.h"

View File

@ -29,7 +29,9 @@
* *
* #ClutterRectangle is an Actor which draws simple filled rectangles. * #ClutterRectangle is an Actor which draws simple filled rectangles.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-rectangle.h" #include "clutter-rectangle.h"
#include "clutter-main.h" #include "clutter-main.h"

View File

@ -50,7 +50,7 @@
* #ClutterScore is a base class for sequencing multiple timelines in order. * #ClutterScore is a base class for sequencing multiple timelines in order.
*/ */
#ifndef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif

View File

@ -110,7 +110,9 @@
* #ClutterScript is available since Clutter 0.6 * #ClutterScript is available since Clutter 0.6
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View File

@ -31,7 +31,9 @@
* and manipulated. * and manipulated.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-backend.h" #include "clutter-backend.h"
#include "clutter-stage.h" #include "clutter-stage.h"

View File

@ -41,7 +41,9 @@
* memory. * memory.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-texture.h" #include "clutter-texture.h"
#include "clutter-main.h" #include "clutter-main.h"

View File

@ -39,7 +39,7 @@
* your application. * your application.
*/ */
#ifndef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif

View File

@ -30,7 +30,9 @@
* Based on similar code by Tristan van Berkom * Based on similar code by Tristan van Berkom
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-debug.h" #include "clutter-debug.h"
#include "clutter-timeout-pool.h" #include "clutter-timeout-pool.h"

View File

@ -1,4 +1,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-vbox.h" #include "clutter-vbox.h"

View File

@ -23,7 +23,10 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "cogl.h" #include "cogl.h"
#include <GL/gl.h> #include <GL/gl.h>

View File

@ -23,7 +23,10 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "cogl.h" #include "cogl.h"
#include <GLES/gl.h> #include <GLES/gl.h>

View File

@ -1,4 +1,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-backend-egl.h" #include "clutter-backend-egl.h"
#include "clutter-stage-egl.h" #include "clutter-stage-egl.h"

View File

@ -19,7 +19,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-stage-egl.h" #include "clutter-stage-egl.h"
#include "clutter-backend-egl.h" #include "clutter-backend-egl.h"

View File

@ -1,4 +1,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-stage-egl.h" #include "clutter-stage-egl.h"
#include "clutter-egl.h" #include "clutter-egl.h"

View File

@ -1,4 +1,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-backend-egl.h" #include "clutter-backend-egl.h"
#include "clutter-stage-egl.h" #include "clutter-stage-egl.h"

View File

@ -19,7 +19,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-stage-egl.h" #include "clutter-stage-egl.h"
#include "clutter-backend-egl.h" #include "clutter-backend-egl.h"

View File

@ -1,4 +1,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-stage-egl.h" #include "clutter-stage-egl.h"
#include "clutter-eglx.h" #include "clutter-eglx.h"

View File

@ -19,7 +19,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-stage-glx.h" #include "clutter-stage-glx.h"
#include "clutter-backend-glx.h" #include "clutter-backend-glx.h"

View File

@ -17,7 +17,9 @@
* Emmanuele Bassi <ebassi@openedhand.com> * Emmanuele Bassi <ebassi@openedhand.com>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "json-types.h" #include "json-types.h"

View File

@ -25,7 +25,9 @@
* put it into a buffer or a file. * put it into a buffer or a file.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View File

@ -17,7 +17,9 @@
* Emmanuele Bassi <ebassi@openedhand.com> * Emmanuele Bassi <ebassi@openedhand.com>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include <glib.h> #include <glib.h>

View File

@ -17,7 +17,9 @@
* Emmanuele Bassi <ebassi@openedhand.com> * Emmanuele Bassi <ebassi@openedhand.com>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include <glib.h> #include <glib.h>

View File

@ -25,7 +25,9 @@
* inside a file or inside a static buffer. * inside a file or inside a static buffer.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include <string.h> #include <string.h>

View File

@ -1,4 +1,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-backend-sdl.h" #include "clutter-backend-sdl.h"
#include "clutter-stage-sdl.h" #include "clutter-stage-sdl.h"

View File

@ -19,7 +19,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-stage-sdl.h" #include "clutter-stage-sdl.h"
#include "clutter-backend-sdl.h" #include "clutter-backend-sdl.h"

View File

@ -1,4 +1,6 @@
#ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif
#include "clutter-stage-sdl.h" #include "clutter-stage-sdl.h"
#include "clutter-sdl.h" #include "clutter-sdl.h"