Include config.h For All the C Source Files
authorChun-wei Fan <fanchunwei@src.gnome.org>
Fri, 11 Apr 2014 12:03:08 +0000 (20:03 +0800)
committerChun-wei Fan <fanchunwei@src.gnome.org>
Fri, 25 Apr 2014 00:27:25 +0000 (08:27 +0800)
Make sure that config.h is included first in all the C-sources in atk/ so
that the build-time definitions of _ATK_EXTERN can be used during the
build of the ATK library.

https://bugzilla.gnome.org/show_bug.cgi?id=728031

28 files changed:
atk/atkaction.c
atk/atkcomponent.c
atk/atkdocument.c
atk/atkeditabletext.c
atk/atkgobjectaccessible.c
atk/atkhyperlinkimpl.c
atk/atkhypertext.c
atk/atkimage.c
atk/atkmisc.c
atk/atknoopobject.c
atk/atknoopobjectfactory.c
atk/atkobjectfactory.c
atk/atkplug.c
atk/atkrange.c
atk/atkregistry.c
atk/atkrelation.c
atk/atkrelationset.c
atk/atkselection.c
atk/atksocket.c
atk/atkstate.c
atk/atkstateset.c
atk/atkstreamablecontent.c
atk/atktable.c
atk/atktablecell.c
atk/atktext.c
atk/atkutil.c
atk/atkversion.c
atk/atkwindow.c

index 089a2fd..50f21a2 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkaction.h"
 
 /**
index 2e5a19d..561c22b 100755 (executable)
@@ -17,6 +17,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
 
 #include "atkcomponent.h"
 
index b0a8c8f..81bad4d 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkdocument.h"
 
 /**
index 1ff6ed8..d44f8bf 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkeditabletext.h"
 
 /**
index 4f3a07c..83cb45e 100644 (file)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include <atk/atkgobjectaccessible.h>
 #include <atk/atkregistry.h>
 #include <atk/atkutil.h>
index bdfe6c1..7021bcf 100644 (file)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include <string.h>
 #include "atkhyperlinkimpl.h"
 
index 10448e2..984899a 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkhypertext.h"
 
 /**
index 00a1819..9dfcfef 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkimage.h"
 
 /**
index b6aaeea..cd59a07 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkmisc.h"
 
 /**
index 5af3ae3..41b6551 100644 (file)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atk.h"
 #include "atknoopobject.h"
 
index 2b0a90a..501476b 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkobject.h"
 #include "atknoopobject.h"
 #include "atknoopobjectfactory.h"
index 0741714..298f3c2 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkobjectfactory.h"
 #include "atknoopobjectfactory.h"
 
index 21ce461..4b26b47 100644 (file)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atk.h"
 #include "atkplug.h"
 
index db48c14..bb69ca5 100644 (file)
@@ -19,6 +19,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkvalue.h"
 
 /**
index 5641073..364d8ba 100644 (file)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkregistry.h"
 #include "atknoopobjectfactory.h"
 
index 835d30c..6dcb1c4 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include <string.h>
 #include <glib-object.h>
 #include "atk.h"
index 835ded5..95d50e6 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include <glib-object.h>
 
 #include "atk.h"
index c324a4a..f086c28 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkselection.h"
 
 /**
index fd2e6aa..a012f18 100644 (file)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atk.h"
 #include "atksocket.h"
 
index 581b641..2334fe8 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atk.h"
 
 #include <string.h>
index 1497bed..3dc8d5e 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include <glib-object.h>
 
 #include "atkobject.h"
index 4e8399a..92643d3 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkstreamablecontent.h"
 
 /**
index b5ab7e3..d28591d 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atktable.h"
 #include "atkmarshal.h"
 
index 7a07c7b..9b1c349 100644 (file)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atktablecell.h"
 
 
index cdbc1ed..590d2fc 100755 (executable)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atk.h"
 #include "atkmarshal.h"
 
index f19e334..e9726e7 100755 (executable)
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkutil.h"
 #include "atkmarshal.c"
-#include "config.h"
 
 /**
  * SECTION:atkutil
index a54aef9..eae1460 100644 (file)
@@ -20,6 +20,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atk.h"
 
 /**
index 6b36c3d..8e7ad8a 100644 (file)
@@ -17,6 +17,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
+#include "config.h"
+
 #include "atkwindow.h"
 #include "atkmarshal.h"