]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
Consistently include <config.h> in all C source files and never in header files.
authorMarcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Fri, 19 Mar 2010 11:36:49 +0000 (12:36 +0100)
committerRalf Habacker <ralf.habacker@freenet.de>
Fri, 19 Mar 2010 19:11:48 +0000 (20:11 +0100)
119 files changed:
bus/activation.c
bus/bus.c
bus/bus.h
bus/config-loader-expat.c
bus/config-loader-libxml.c
bus/config-parser-common.c
bus/config-parser-common.h
bus/config-parser-trivial.c
bus/config-parser-trivial.h
bus/config-parser.c
bus/config-parser.h
bus/connection.c
bus/desktop-file.c
bus/dispatch.c
bus/driver.c
bus/expirelist.c
bus/main.c
bus/policy.c
bus/selinux.c
bus/services.c
bus/signals.c
bus/test-launch-helper.c
bus/test-main.c
bus/test-system.c
bus/test.h
dbus/dbus-auth-script.h
dbus/dbus-auth-util.c
dbus/dbus-auth.c
dbus/dbus-credentials-util.c
dbus/dbus-dataslot.c
dbus/dbus-errors.c
dbus/dbus-file-win.c
dbus/dbus-hash.c
dbus/dbus-internals.c
dbus/dbus-internals.h
dbus/dbus-keyring.c
dbus/dbus-list.c
dbus/dbus-mainloop.c
dbus/dbus-marshal-basic.c
dbus/dbus-marshal-basic.h
dbus/dbus-marshal-byteswap.c
dbus/dbus-marshal-byteswap.h
dbus/dbus-marshal-header.c
dbus/dbus-marshal-header.h
dbus/dbus-marshal-recursive.c
dbus/dbus-marshal-recursive.h
dbus/dbus-marshal-validate.c
dbus/dbus-marshal-validate.h
dbus/dbus-md5.c
dbus/dbus-memory.c
dbus/dbus-mempool.c
dbus/dbus-message-private.h
dbus/dbus-message-util.c
dbus/dbus-message.c
dbus/dbus-nonce.c
dbus/dbus-object-tree.c
dbus/dbus-pending-call.c
dbus/dbus-pipe-unix.c
dbus/dbus-pipe-win.c
dbus/dbus-pipe.c
dbus/dbus-pipe.h
dbus/dbus-resources.c
dbus/dbus-server-debug-pipe.c
dbus/dbus-server-protected.h
dbus/dbus-server-socket.c
dbus/dbus-server-unix.c
dbus/dbus-server-win.c
dbus/dbus-server.c
dbus/dbus-sha.c
dbus/dbus-shell.c
dbus/dbus-signature.c
dbus/dbus-spawn-win.c
dbus/dbus-string-private.h
dbus/dbus-string-util.c
dbus/dbus-string.c
dbus/dbus-string.h
dbus/dbus-sysdeps-pthread.c
dbus/dbus-sysdeps-thread-win.c
dbus/dbus-sysdeps-unix.h
dbus/dbus-sysdeps-util-unix.c
dbus/dbus-sysdeps-util-win.c
dbus/dbus-sysdeps-util.c
dbus/dbus-sysdeps-win.c
dbus/dbus-sysdeps.c
dbus/dbus-sysdeps.h
dbus/dbus-test-main.c
dbus/dbus-threads.c
dbus/dbus-timeout.c
dbus/dbus-transport-protected.h
dbus/dbus-transport-socket.c
dbus/dbus-transport-unix.c
dbus/dbus-transport-win.c
dbus/dbus-transport.c
dbus/dbus-userdb-util.c
dbus/dbus-userdb.c
dbus/dbus-uuidgen.c
dbus/dbus-watch.c
test/break-loader.c
test/decode-gcov.c
test/name-test/test-ids.c
test/name-test/test-names.c
test/name-test/test-pending-call-dispatch.c
test/name-test/test-pending-call-timeout.c
test/name-test/test-privserver-client.c
test/name-test/test-privserver.c
test/name-test/test-shutdown.c
test/name-test/test-threads-init.c
test/shell-test.c
test/spawn-test.c
test/test-exit.c
test/test-names.c
test/test-service.c
test/test-shell-service.c
test/test-utils.c
test/test-utils.h
tools/dbus-launch-x11.c
tools/dbus-launch.c
tools/dbus-launch.h
tools/dbus-print-message.c

index 2fcd85d2aea0ba8a6b407a567fd18c988171a1c5..54296c1dcd9287e1a149792cef7a389ba2523bf5 100644 (file)
@@ -22,6 +22,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "activation.h"
 #include "activation-exit-codes.h"
 #include "desktop-file.h"
index 37777965b32e16c63c37deb69a58e96f3a67ecde..81d69b569721b583e71e49f761989ae4ebc3e7a5 100644 (file)
--- a/bus/bus.c
+++ b/bus/bus.c
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "bus.h"
 #include "activation.h"
 #include "connection.h"
index 14a809b17f1d24ac7abdf8005c46f0a162266830..7eb5fd8b2a96eba2f211f3cdf38f2cbcab61ce1d 100644 (file)
--- a/bus/bus.h
+++ b/bus/bus.h
@@ -24,8 +24,6 @@
 #ifndef BUS_BUS_H
 #define BUS_BUS_H
 
-#include <config.h>
-
 #include <dbus/dbus.h>
 #include <dbus/dbus-string.h>
 #include <dbus/dbus-mainloop.h>
index c0620aed508ed40267d0398fa1fae9fb8558f57a..51bbb51bd0b3e902d128898047f8c5b2c03f5bb5 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "config-parser.h"
 #include <dbus/dbus-internals.h>
 #include <expat.h>
index 3d82a6336e02be2c99fd3f80e993f212a534cb73..c73a18156b75c261b511aec539b3f0f93071274b 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "config-parser.h"
 #include <dbus/dbus-internals.h>
 #include <libxml/xmlreader.h>
index ebcb7177a47ad9f772df52d0674cb2760517cccd..f8d75be79c4d9185ee24187bdd5b278960ec7810 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
  
+#include <config.h>
 #include <dbus/dbus-internals.h>
 #include <string.h>
 
index dc0e0eda42e1b5880ec31d658b483cf40437672c..da745606eeeedf091f0dc9c6ad4f60abd26304fb 100644 (file)
@@ -24,8 +24,6 @@
 #ifndef BUS_CONFIG_PARSER_COMMON_H
 #define BUS_CONFIG_PARSER_COMMON_H
 
-#include <config.h>
-
 typedef enum
 {
   ELEMENT_NONE,
index fd016a8493bb8863786e275bf7f0fd09ac1f79c8..a35226a6fa2644395d67559ab253cced49a31f31 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
  
+#include <config.h>
 #include "config-parser-common.h"
 #include "config-parser-trivial.h"
 #include "utils.h"
index ce542bfb66e7cd6af91bed47a92a18e238ff7116..70e5d5bda3aedb73394c279aec57335950a8c564 100644 (file)
@@ -24,8 +24,6 @@
 #ifndef BUS_CONFIG_PARSER_TRIVIAL_H
 #define BUS_CONFIG_PARSER_TRIVIAL_H
 
-#include <config.h>
-
 #include <dbus/dbus.h>
 #include <dbus/dbus-string.h>
 #include <dbus/dbus-list.h>
index d8ae4590bbf955c6aab6676264ec910779789450..2d19f2b987f94d1efcd6709dcb6cf8d80bff92d3 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "config-parser-common.h"
 #include "config-parser.h"
 #include "test.h"
index 3aac1ed30c7a5a33dde8666409c70c12db138c74..ba5bf74906f26c74ac152722966363328ee05c16 100644 (file)
@@ -24,8 +24,6 @@
 #ifndef BUS_CONFIG_PARSER_H
 #define BUS_CONFIG_PARSER_H
 
-#include <config.h>
-
 #include <dbus/dbus.h>
 #include <dbus/dbus-string.h>
 #include <dbus/dbus-list.h>
index 50807f1a98407d8ed4f5b0f2f5f8ab04b1d2c803..b2d6aa57b925aa76e4c83060818577efb39fa008 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "connection.h"
 #include "dispatch.h"
 #include "policy.h"
index 9f88d6e73bbb241bbc00baa4085431d81094861b..ae441c5e4431ba3bc2608277f44a2f66b561797f 100644 (file)
@@ -21,6 +21,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include <dbus/dbus-sysdeps.h>
 #include <dbus/dbus-internals.h>
 #include "desktop-file.h"
index 2fc043073c3930601669d2a9e1398a52a0bb4b49..afb85a7397c22c9aae3f9dc885981c77127f4f14 100644 (file)
@@ -23,6 +23,7 @@
  *
  */
 
+#include <config.h>
 #include "dispatch.h"
 #include "connection.h"
 #include "driver.h"
index 5e8a7a266b08b7aeff8430020ace0c6d23773c1d..0dcfdaa49c0ae508c252a1286cf85eb703312266 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "activation.h"
 #include "connection.h"
 #include "driver.h"
index 58e1f6d1c75e9ccfcc638b8551a95d61480e53ea..d957536d4f75f9456e1d6198175bcc321fe856c7 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "expirelist.h"
 #include "test.h"
 #include <dbus/dbus-internals.h>
index 4f18d9aa758faf81328338f01fa5aeaac90d2eb2..7150ce140bfbef610f5c7ed095e1e1c637c531a6 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "bus.h"
 #include "driver.h"
 #include <dbus/dbus-internals.h>
index bc1d2d9dbebf2de09ea2d7a295c03f10ad9103a5..27c89ac2f5525824f928ca1184a2e9c4134dd767 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "policy.h"
 #include "services.h"
 #include "test.h"
index c4b33d6d46e754e575a82fe6ecd3df68d56bc05c..fe04063a6fad2cec57362ae534bd22598d0a5656 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include <dbus/dbus-internals.h>
 #include <dbus/dbus-string.h>
 #ifndef DBUS_WIN
index b260c6334f26f6db1177edab7d9f970c33a1779e..0a049257118f7c24ce3af0797515a7bdc934e08f 100644 (file)
@@ -21,6 +21,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include <dbus/dbus-hash.h>
 #include <dbus/dbus-list.h>
 #include <dbus/dbus-mempool.h>
index dbfbb5c2239407e29d2e5385d1d11504f5d4343e..6f97b2b32d42796fb9316c1880c4109637d2df81 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "signals.h"
 #include "services.h"
 #include "utils.h"
index d78ca51956c52a4d779417d781208199c1b3f432..ab36b6ec4b79a7faf494b81998331d766424eb78 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "test.h"
 #include "activation-helper.h"
 
index 000bdd5a0fe225ee923b499075c8242bc78dbccb..cb0ed008aad5f11b4a880fed0f8f0af14ac1e551 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "test.h"
 #include <stdio.h>
 #include <stdlib.h>
index 6224ab5ee17cd3edbc546a2412c7eff253a01709..56a7d4ea2d17b41020c650e733805ee8547ba380 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "test.h"
 #include <stdio.h>
 #include <stdlib.h>
index 090768cab115f35f087b325e157e91287c66f89e..45024e65f378207f73bc21eae30d4f2898fca10e 100644 (file)
@@ -24,8 +24,6 @@
 #ifndef BUS_TEST_H
 #define BUS_TEST_H
 
-#include <config.h>
-
 #ifdef DBUS_BUILD_TESTS
 
 #include <dbus/dbus.h>
index 30cd5642b85bead4dafaadcd08b17a8a07130ba5..39e6c7c48e21888d3bf44b063901919a591e7e7a 100644 (file)
@@ -24,8 +24,6 @@
 #ifndef DBUS_AUTH_SCRIPT_H
 #define DBUS_AUTH_SCRIPT_H
 
-#include <config.h>
-
 #include <dbus/dbus-memory.h>
 #include <dbus/dbus-types.h>
 #include <dbus/dbus-string.h>
index 09ecdd476d6a8b3581f11e4202e45507d8a84253..776e8e2798dcb245a429ba0b088b532602463157 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-test.h"
 #include "dbus-auth.h"
index 0c1248307c3b2a8491c6758927e5bff5d2f7a3d6..3173f34f94484346c56828fc0afd76f51d7004d4 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-auth.h"
 #include "dbus-string.h"
 #include "dbus-list.h"
index dae6080d6b39b2c6e38c9cec5928b70b72a0b4c5..02771966c1fafe77a8002c6c963d6a23dbe43600 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-test.h"
 #include "dbus-credentials.h"
index 8fab7bbceb48e0d4cece81e18c2c30d9684dd174..fd25c4161160fd1774105b6dba35ae0f9ddb9730 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-dataslot.h"
 #include "dbus-threads-internal.h"
 
index e8154ccc5f1f64572c5017f69e7f7f61b14e0562..5f27501cbc29d5d0ff2449f6470852b57fae36d4 100644 (file)
@@ -21,6 +21,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-errors.h"
 #include "dbus-internals.h"
 #include "dbus-string.h"
index 499237eace9423e753c1a5181d40a029b2a4b7b7..2dfba00f0708ba6b6e9f8df63fb42ce132dc20da 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-protocol.h"
 #include "dbus-string.h"
 #include "dbus-internals.h"
index e9eba6e56d63e5de76a4cde60dd854d08ab973e7..80a494a5374f23cfeea7431cc515dfd96c3b0409 100644 (file)
@@ -74,6 +74,7 @@
  * accordance with the terms specified in this license.
  */
 
+#include <config.h>
 #include "dbus-hash.h"
 #include "dbus-internals.h"
 #include "dbus-mempool.h"
index a33d069a832f4d62033a80633013a4aefbc3cdf5..1ab6731a7b2da8040d5628667bacb1ac008141f3 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-protocol.h"
 #include "dbus-marshal-basic.h"
index 01f6247107219b7217efb25967fc1e850dec83d8..2b9b562cac479879d1880fac3f90a0dae6aa82c8 100644 (file)
@@ -27,8 +27,6 @@
 #ifndef DBUS_INTERNALS_H
 #define DBUS_INTERNALS_H
 
-#include <config.h>
-
 #include <dbus/dbus-memory.h>
 #include <dbus/dbus-types.h>
 #include <dbus/dbus-errors.h>
index 6dc1e129f41f1d81af23e64f544f576b18518917..031521c2170c39370fdaaf4b414baf74a6644b29 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-keyring.h"
 #include "dbus-protocol.h"
 #include <dbus/dbus-string.h>
index e075ffe1d89e814fc62a81f58719dedcf743b942..6a16ed6036ce2ac771dc254b0fe4a853a9eda1fa 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-list.h"
 #include "dbus-mempool.h"
index a3833588210b5b069e5b19fa9a0bcbedfc1eefa8..96ba599b0f07f863909f42485200c7a9f2a7dd69 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-mainloop.h"
 
 #ifndef DOXYGEN_SHOULD_SKIP_THIS
index 005513547908b90f9dbb6d21316acb4f65ad2173..1be5c7d073eb6b5971a2b982eb510f6b092b5ec9 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-marshal-basic.h"
 #include "dbus-signature.h"
index fd87a80fc09a6207acb866df30e178e428585022..0c27fc9e0b05382654b98d658a62b03c8809f764 100644 (file)
@@ -25,8 +25,6 @@
 #ifndef DBUS_MARSHAL_BASIC_H
 #define DBUS_MARSHAL_BASIC_H
 
-#include <config.h>
-
 #ifdef HAVE_BYTESWAP_H
 #include <byteswap.h>
 #endif
index c5e92b3248e5cd3826cf398b28b56d33dad0c141..22d7e22bf44fbbb9c1eff9deee0201a9ccfc45c1 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-marshal-byteswap.h"
 #include "dbus-marshal-basic.h"
 #include "dbus-signature.h"
index 7c8ea7b6447d3ff3a3936c3328ed19f779f4edfa..be2dd7583fdeb93e2d69c21e2d6eaba0cecec3ea 100644 (file)
@@ -24,7 +24,6 @@
 #ifndef DBUS_MARSHAL_BYTESWAP_H
 #define DBUS_MARSHAL_BYTESWAP_H
 
-#include <config.h>
 #include <dbus/dbus-protocol.h>
 #include <dbus/dbus-marshal-recursive.h>
 
index d9e9bb51f2c4f03f4496793ad7a80a2a51947fe8..3f31d7a0b321dceea009b4537e89ca75b811fad7 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus/dbus-shared.h"
 #include "dbus-marshal-header.h"
 #include "dbus-marshal-recursive.h"
index 0f36efac4822cbc50e4e7bae40415d29b1dc2816..fd16c5f0c8ba0547d41d89de72794a6699758b58 100644 (file)
@@ -24,7 +24,6 @@
 #ifndef DBUS_MARSHAL_HEADER_H
 #define DBUS_MARSHAL_HEADER_H
 
-#include <config.h>
 #include <dbus/dbus-marshal-basic.h>
 #include <dbus/dbus-marshal-validate.h>
 
index ccf0d22bba845123be81323ff61b9f1e0af8d035..cb10854b0f9d17b79dd1215bfe5a92e7f74021b5 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-marshal-recursive.h"
 #include "dbus-marshal-basic.h"
 #include "dbus-signature.h"
index a743668d2cff7c54b66c6287c13dcf5b649f6d03..97e5466b55ea9d9109142afb54962033c7944028 100644 (file)
@@ -24,7 +24,6 @@
 #ifndef DBUS_MARSHAL_RECURSIVE_H
 #define DBUS_MARSHAL_RECURSIVE_H
 
-#include <config.h>
 #include <dbus/dbus-protocol.h>
 #include <dbus/dbus-list.h>
 
index bbaa9bdfeae829c151c6b98f9a53bfdab9657ab7..aa470fc899cbf813ac0698ddcd67c227d749e60e 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-marshal-validate.h"
 #include "dbus-marshal-recursive.h"
index 7a623d9ecaae7fb431db17f6e6c6c37734792294..5817de32334169f6501e5a52de040dd99c80203b 100644 (file)
@@ -24,8 +24,6 @@
 #ifndef DBUS_MARSHAL_VALIDATE_H
 #define DBUS_MARSHAL_VALIDATE_H
 
-#include <config.h>
-
 /**
  * @addtogroup DBusMarshal
  *
index 8405f36039bf265f77b0bcf447bde411c4422ca5..af71d5c52e22c154e62463c31338a4541afbabf5 100644 (file)
@@ -34,6 +34,7 @@
  * <ghost@aladdin.com>.
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-md5.h"
 #include <string.h>
index 0ceac666b0a142d3bf665f4e8cd53b85d8d24b0f..b3ba067bd5249d15437c29bcd9d4e421fcd820be 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-memory.h"
 #include "dbus-internals.h"
 #include "dbus-sysdeps.h"
index 2a41cb16ba2ac2312733e3249af4dbd3faddf9ec..680586b761a0b9dc02b6fdc612e9a1b3c2b5186d 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-mempool.h"
 #include "dbus-internals.h"
 
index 366c53aae2c8f9afb3382d7be4a85d9bc2b80f98..57888fa5c48256c69f4dfcdc781f78705575ef1e 100644 (file)
@@ -23,8 +23,6 @@
 #ifndef DBUS_MESSAGE_PRIVATE_H
 #define DBUS_MESSAGE_PRIVATE_H
 
-#include <config.h>
-
 #include <dbus/dbus-message.h>
 #include <dbus/dbus-message-internal.h>
 #include <dbus/dbus-string.h>
index a56fcc49402ac0f01563308764cdc30304808e04..94219f61ee8a1cbe50bbb9d4dc99fbdf248a4db5 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-test.h"
 #include "dbus-message-private.h"
index 11a2eb136e87fdadeddfedbd186189d875c48138..3b5941b535d709f89bafc1b66b92e5597ae3603a 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-marshal-recursive.h"
 #include "dbus-marshal-validate.h"
index cf1424c33fdeccae933eff163973c6efd9a0483f..3e5070f570a571021f75a99383dcbab6a110446e 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 // major sections of this file are modified code from libassuan, (C) FSF
 #include "dbus-nonce.h"
 #include "dbus-internals.h"
index 4309d154ac5c97596fd16837b54e2a37925a7767..2f8dcbaa187a6591ef1e3c5ca4320d214c06585f 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-object-tree.h"
 #include "dbus-connection-internal.h"
 #include "dbus-internals.h"
index 43fad052596ce7fdc449917be93a15b4964069a1..e1de656a69d983f4a8e80345f6c4a65b7af58b89 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-connection-internal.h"
 #include "dbus-pending-call-internal.h"
index 79a826f554ae715660ca5271ebb6235c56aecafe..f35024b59e895889584359c4090bbb4d76a4a20b 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-protocol.h"
 #include "dbus-string.h"
 #include "dbus-internals.h"
index 798657352ea760b277ef07a50d81e30654827290..a07e572e9e9265867cafccc6125713a16b1e7953 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-protocol.h"
 #include "dbus-string.h"
 #include "dbus-internals.h"
index 59cf9346a21ae097456d27674004e3442780ddc9..60a58b54d53cc1d9ba9d609c5b56702a637cf4c3 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-pipe.h"
 
 /*
index 75b7d2fe5533e3f9f330ed9e89dfac4a456b73d1..cd57533289120926151c7f901560e51031f29671 100644 (file)
@@ -25,8 +25,6 @@
 #ifndef DBUS_PIPE_H
 #define DBUS_PIPE_H
 
-#include <config.h>
-
 #include <dbus/dbus-types.h>
 #include <dbus/dbus-errors.h>
 #include <dbus/dbus-string.h>
index 7c7aabd0c68d4edbde01f7b4e9b35426b7a95b67..5f7001cc5c8b04a68331eee2f664b3e99d8e76e4 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include <dbus/dbus-resources.h>
 #include <dbus/dbus-internals.h>
 
index 8ba6fb6b5b0a81201bdc3696127a57d6f471cd66..e18cad71052318200ae39b52a8981ee904de93f9 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-server-debug-pipe.h"
 #include "dbus-transport-socket.h"
index c05d27799afd0eba0fd3fda03e386c4639772836..20836b53eef914a98621dd08e2298e5f05a4c60b 100644 (file)
@@ -23,7 +23,6 @@
 #ifndef DBUS_SERVER_PROTECTED_H
 #define DBUS_SERVER_PROTECTED_H
 
-#include <config.h>
 #include <dbus/dbus-internals.h>
 #include <dbus/dbus-threads-internal.h>
 #include <dbus/dbus-server.h>
index 6a8717af511c0dd5649447f437dd7732a32c7788..dbd721388c6ea85fbcc934b5d21589001802521b 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-server-socket.h"
 #include "dbus-transport-socket.h"
index 597d0f8ef65a4401328c6fb836d228a18b24710a..65c9668ba4281441546ea6d239a01cc384d6071c 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-server-unix.h"
 #include "dbus-server-socket.h"
index ca3766922801190cfc4f855067c47dda505a8537..5cfb73e7a48e8c1e3dbd1a2b8b7a5e50005db78e 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-server-win.h"
 #include "dbus-server-socket.h"
index 974503bbb2d0b821ac3f0f20034beafbf6d1c190..18fa8c4a88d99acaff12a39fd44021717908c77f 100644 (file)
@@ -21,6 +21,7 @@
  *
  */ 
 
+#include <config.h>
 #include "dbus-server.h"
 #include "dbus-server-unix.h"
 #include "dbus-server-socket.h"
index 04e353a06d1aa6827c5e160bf043702625710dee..d18275229455cc396e86cf4e0980e33a2934278e 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-sha.h"
 #include "dbus-marshal-basic.h" /* for byteswap routines */
index 57900d88fdb03cb2b6d93a2094ed51de3e310c8d..111d39dfed1ce02ccf9ab0dc205e4e8ed985c3a5 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include <string.h>
 #include "dbus-internals.h"
 #include "dbus-list.h"
index b2d0a6270f36bae774e21be258184becfdaeae97..ddc0bcc382c359421485e894a75d927d65fe25ca 100644 (file)
@@ -21,6 +21,8 @@
  *
  */
 
+#include <config.h>
+
 #include "dbus-signature.h"
 #include "dbus-marshal-recursive.h"
 #include "dbus-marshal-basic.h"
index de077892cc575d478b820514b691a163f6e4012d..6b9fdf5792b0ad9386f6b3def14c7b01340912e9 100644 (file)
@@ -1,4 +1,4 @@
-#include "config.h"
+#include <config.h>
 
 //#define SPAWN_DEBUG
 
index 6687a76ffe75a8d5e1860b8820c622b4b625a96b..365d89a3fc6ab267310e55433a742514f966fce9 100644 (file)
@@ -24,8 +24,6 @@
 #ifndef DBUS_STRING_PRIVATE_H
 #define DBUS_STRING_PRIVATE_H
 
-#include <config.h>
-
 #include <dbus/dbus-memory.h>
 #include <dbus/dbus-types.h>
 
index 666ffbd468bedd26d9130baf5fcfe64112a2825a..4d42bb0b573ce8923443aba043f70af1fdbaa65f 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-string.h"
 #define DBUS_CAN_USE_DBUS_STRING_PRIVATE 1
index 4d799f995c72aec37aa9c76afe037dce44802326..e2eb93b9008db249340e56743bd169b3011b4355 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-string.h"
 /* we allow a system header here, for speed/convenience */
index cfb6f16302492d447f5977cd84b3f7b400609068..2f1ed31c292d2beec2109429935c0a148f8729b9 100644 (file)
@@ -25,8 +25,6 @@
 #ifndef DBUS_STRING_H
 #define DBUS_STRING_H
 
-#include <config.h>
-
 #include <dbus/dbus-macros.h>
 #include <dbus/dbus-types.h>
 #include <dbus/dbus-memory.h>
index 46e4204dc701c956436dc1d59c9c4c5cad16ec4e..70737512e8f8364aad36a955fb1f9f1126b9c3c6 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-sysdeps.h"
 #include "dbus-threads.h"
index 4c4d22f34ac4815370259c55221cd10cbcbb7810..55c0bf7b2c76c9e2d9955bfe62d0df500b24cfad 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-sysdeps.h"
 #include "dbus-sysdeps-win.h"
index 96b44e294f80894440f7b52cf97b665c26462790..81758e0f90d2619a7f08a551904e8ffa28c4024a 100644 (file)
@@ -25,7 +25,6 @@
 #ifndef DBUS_SYSDEPS_UNIX_H
 #define DBUS_SYSDEPS_UNIX_H
 
-#include <config.h>
 #include <dbus/dbus-sysdeps.h>
 
 #ifdef DBUS_WIN
index eaf3270312a49a7a1dc0f828ef64ec912b96af92..94f580b18d9b0da7ff4f254bbd4db12e9c182bdf 100644 (file)
@@ -21,6 +21,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-sysdeps.h"
 #include "dbus-sysdeps-unix.h"
 #include "dbus-internals.h"
index 2722b01e35c05cb6fd23d9582d5f8618fc71cb42..7b2472f45986721ea1cb660f9015dd62e2eabe4b 100644 (file)
@@ -22,6 +22,8 @@
  *
  */
 
+#include <config.h>
+
 #define STRSAFE_NO_DEPRECATE
 
 #include "dbus-sysdeps.h"
index 67e19f7b7f1ca3af9472fd791c7fb87ebce7712e..68669cf0843ffdbc28c7c639132f875a6b4f889a 100644 (file)
@@ -21,6 +21,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-sysdeps.h"
 #include "dbus-internals.h"
 #include "dbus-string.h"
index db149b8602fc3f755b34b8ec331897e27d782f60..bba8915f192ade2099257cb9ad80a834afd5facf 100644 (file)
@@ -26,6 +26,8 @@
  *
  */
 
+#include <config.h>
+
 #define STRSAFE_NO_DEPRECATE
 
 #ifndef DBUS_WINCE
index c27f999e6c59ab4d422157b44b24d0046901eb4f..f9c6fc55f6c15061790d70d9b65809c7e08ca57e 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-sysdeps.h"
 #include "dbus-threads.h"
index a656469a10efb91bdef832b1a7f9b7c57df32ae9..bfcd0b8754015376388914229df0a1c197f7f129 100644 (file)
@@ -25,8 +25,6 @@
 #ifndef DBUS_SYSDEPS_H
 #define DBUS_SYSDEPS_H
 
-#include <config.h>
-
 #include <dbus/dbus-errors.h>
 #include <dbus/dbus-file.h>
 #include <dbus/dbus-string.h>
index 1bb7c90452c8d55814e0b76af7d4f2dd87503e42..a8a30f31f7de6ce5ae9579a3f73b5d2b2dbc0c9f 100644 (file)
@@ -22,6 +22,7 @@
  */
 
 
+#include <config.h>
 #include "dbus-types.h"
 #include "dbus-test.h"
 #include <stdio.h>
index b425ae7b5b5200c2958376de278bda5145976ca3..37b68ba29ae2a3c365bd19cc7088edbc9c0cf653 100644 (file)
@@ -20,6 +20,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+#include <config.h>
 #include "dbus-threads.h"
 #include "dbus-internals.h"
 #include "dbus-threads-internal.h"
index 0d92ca11214e7a9c31d40c42e93b7d5de349d7f8..a1d6ce597107905f40d5dcadc82a85c1feab3523 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-timeout.h"
 #include "dbus-list.h"
index a3c8f3e4872c84b3f7e3d8d84db9baaa805cd627..44b9d7857b0d55cea64ca8d32da5bf6a107832a2 100644 (file)
@@ -23,8 +23,6 @@
 #ifndef DBUS_TRANSPORT_PROTECTED_H
 #define DBUS_TRANSPORT_PROTECTED_H
 
-#include <config.h>
-
 #include <dbus/dbus-internals.h>
 #include <dbus/dbus-errors.h>
 #include <dbus/dbus-transport.h>
index 4f8c6cfcf958b287f4f002af0024057bfafcd630..849a1077c2900b296c9d96c9274e21d493214cf9 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-connection-internal.h"
 #include "dbus-nonce.h"
index 2f2a3da50c4a4dfd59ac2529117a8a3fb7097811..6a713d10c97de67f717ae60275e014cb797bf137 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-connection-internal.h"
 #include "dbus-transport-unix.h"
index 1545c717d093abaf1d217707b6f343e868bad63a..faaf1bd2aba99c863336c2f4dc9e117670530a6d 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-connection-internal.h"
 #include "dbus-transport-socket.h"
index d8f34eefab46dc9428c1c4c8c5721cfee6b7b439..bec4a5acf84dbcdc73f47a9e2026e56c8166080f 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-transport-protected.h"
 #include "dbus-transport-unix.h"
 #include "dbus-transport-socket.h"
index f75d1bc078fc0d453d30c06815c194d6c248fafb..8679f74032da25f9f7a2e3312299bac8b49df9cf 100644 (file)
@@ -20,6 +20,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+#include <config.h>
 #define DBUS_USERDB_INCLUDES_PRIVATE 1
 #include "dbus-userdb.h"
 #include "dbus-test.h"
index bfa4c4355a47c1e311fbeb916c784bad8d2ca45f..4a317babf120559a4a243ba87c88a750a7b060e0 100644 (file)
@@ -20,6 +20,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+#include <config.h>
 #define DBUS_USERDB_INCLUDES_PRIVATE 1
 #include "dbus-userdb.h"
 #include "dbus-hash.h"
index 5c571e885f3c94f67768148d1da9b5d0d405f443..6d7c0aecc73c9862c8c96fefa4c3247d90a36d1f 100644 (file)
@@ -20,6 +20,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+#include <config.h>
 #include "dbus-uuidgen.h"
 #include "dbus-internals.h"
 #include "dbus-string.h"
index 484dbbe65380a81995279b402b3c7c0a18b45ef2..bd5ca8fff06d9ef0078c0e84bdb2499903cfce7e 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include "dbus-internals.h"
 #include "dbus-watch.h"
 #include "dbus-list.h"
index 8ed443209c1a152c740efcb771d895d2d7f8b2de..f85bd2075fa2c53aaee04f71b22216f86bce2d8c 100644 (file)
@@ -21,6 +21,7 @@
  *
  */
 
+#include <config.h>
 #include <dbus/dbus.h>
 #include <sys/stat.h>
 #include <sys/types.h>
index f26afd3e87cb259710667e8785b705e6fbf48804..3b2a15229e177674e9b5c069bf46a4cdf24b0895 100644 (file)
@@ -27,6 +27,7 @@
  *
  */
 
+#include <config.h>
 #define DBUS_COMPILATION /* cheat */
 #include <dbus/dbus-list.h>
 #include <dbus/dbus-string.h>
index f08d4ac9081defaf064b480ea030df2aa2797796..8f63d0442076ac4ad534853dc1db664cccdd7073 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index b09f36388b7abfb15c184ec49cfd96aa361c3f6f..daf453600344ddd2515a0381b84b97538667f3cc 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 54726498f8f91f8576146adac3b1a06614fd5714..57582d4905c847e49e2d4df70a45aef2baa4f4d9 100644 (file)
@@ -7,6 +7,7 @@
 * and blocking.
 **/
 
+#include <config.h>
 #include <dbus/dbus.h>
 #include <dbus/dbus-sysdeps.h>
 #include <stdio.h>
index 53a0c3a7bd333a04c1040358468f295388a200bb..381113bd23bb182fd944c059e917f5e1ac67206a 100644 (file)
@@ -3,6 +3,7 @@
 * specific and infinite timeout.
 **/
 
+#include <config.h>
 #include <dbus/dbus.h>
 #include <dbus/dbus-sysdeps.h>
 #include <stdio.h>
index 5af470aeeaf62d7fec5078c94e2b7209607bbd63..d02eea893eb323ac350d1056f2f9c5d849091753 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include "../test-utils.h"
 
 static void
index c814001c147e83df8f5d61a49d0a371e2bba3156..100e0cf273a297f090f5e4c0cbb845ce6ae17a20 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include "../test-utils.h"
 
 static void
index e76c1ea2417434ba589931c7c5cf9c13d3f735d7..526c1cbc52c049c454d479a8869077cb786649c6 100644 (file)
@@ -1,4 +1,5 @@
 
+#include <config.h>
 #include "../test-utils.h"
 
 static DBusLoop *loop;
index 8cda413c4e892969ff4e2f2e1490b35293f8ea96..5e22852acbd2e8e0589772064cdc8273c2f288d6 100644 (file)
@@ -2,6 +2,7 @@
  * Test to make sure late thread initialization works
  */
 
+#include <config.h>
 #include <dbus/dbus.h>
 #include <dbus/dbus-sysdeps.h>
 #include <stdio.h>
index c01346774166dd07ae38650e9f69dba75964243e..b479a9c6bf38b9a572e316be88b7370f970df845 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include <stdio.h>
 #include <stdlib.h>
 #define DBUS_COMPILATION
index 68bd333147488ad7446363ba6bf849c5261a7b22..f1a550510547600aa09c4385fc2893213aba378c 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include <dbus/dbus.h>
 
 #define DBUS_COMPILATION /* cheat and use dbus-sysdeps */
index abb95865111414a0c1f5eaa183ab0c47a97884e7..f3358185c5303254e4dce72cdc06a38a64e61f5d 100644 (file)
@@ -1,5 +1,4 @@
 /* This is a process that just exits with a failure code */
-
 int
 main (int argc, char **argv)
 {
index e618e99b540f03e811e3da744cc725356a4014c6..273663508533816efd99f8d4e653b64efa2b3458 100644 (file)
@@ -1,4 +1,4 @@
-
+#include <config.h>
 #include "test-utils.h"
 
 static DBusLoop *loop;
index 93f59f1efd9535cdbc01c95247de41bd124ff54f..6627ea75c022100bbd437c7fc24319e4dc84087f 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 
 #include "test-utils.h"
 #ifdef HAVE_UNISTD_H
index 21801c7b3124b116544d53f49ae4e4d3cf8733a9..57c161235acfa1f7ab0b22c547788e231ac2c769 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 
 #include "test-utils.h"
 
index d875cc95639a858643f1ee7737c2509b1246d255..eda20cd54071a86e27384ce9ff2bdceeb470b5db 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 #include "test-utils.h"
 
 typedef struct
index 90d87767a2e38076688675d4ce2136d6e4892641..3e1e55e6616d1acdba7cd104198a078ce010640e 100644 (file)
@@ -1,6 +1,5 @@
 #ifndef TEST_UTILS_H
 #define TEST_UTILS_H
-#include <config.h>
 #ifndef DBUS_COMPILATION
 #define DBUS_COMPILATION /* Cheat and use private stuff */
 #endif
index 43de6d752cd32feb5117717ede98ba0d873b05ff..fe492227e126bd2ac5d93ad924e82e434b4a3b64 100644 (file)
@@ -20,6 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-launch.h"
 
 #ifdef DBUS_BUILD_X11
index d3553e8192a41c3e124bdb1b333d716f86939f32..ec4c9a5ac171b1c17c6b99a2e40f5944d7123701 100644 (file)
@@ -21,6 +21,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-launch.h"
 #include <stdlib.h>
 #include <ctype.h>
index d0d0617d406c08c9738b0c9994fdd3dbf15435f2..8220bb8e82c840881a2aa077367756ee48b117a4 100644 (file)
@@ -24,7 +24,6 @@
 #ifndef DBUS_LAUNCH_H
 #define DBUS_LAUNCH_H
 
-#include <config.h>
 #include <sys/types.h>
 
 #ifndef TRUE
index 8a8e351dc2e56f106ee3a0fff8941eb781383e78..b7c3f0986d6307a5c3eb604e969da26993ee2c0b 100644 (file)
@@ -19,6 +19,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  *
  */
+
+#include <config.h>
 #include "dbus-print-message.h"
 
 #include <stdlib.h>