summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-01-14 07:00:13 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-01-14 07:00:13 +0000
commit9510da42b83abfcc1c80fe7905c66b931a889d4c (patch)
tree72dd7126a3760bfabe4241dce6ba5214d5c61494 /modules
parentd412258b4ca1ccaeecd211768974be6029a6f481 (diff)
downloadpango-9510da42b83abfcc1c80fe7905c66b931a889d4c.tar.gz
Make sure #include <config.h> is the first include in the file. (bug
2006-01-14 Behdad Esfahbod <behdad@gnome.org> * */*.c, */*/*.c: Make sure #include <config.h> is the first include in the file. (bug #158870, based on patch by Luis Menina)
Diffstat (limited to 'modules')
-rw-r--r--modules/arabic/arabic-fc.c1
-rw-r--r--modules/arabic/arabic-ot.c2
-rw-r--r--modules/basic/basic-atsui.c1
-rw-r--r--modules/basic/basic-fc.c1
-rw-r--r--modules/basic/basic-win32.c2
-rw-r--r--modules/basic/basic-x.c1
-rw-r--r--modules/hangul/hangul-fc.c1
-rw-r--r--modules/hebrew/hebrew-fc.c1
-rw-r--r--modules/hebrew/hebrew-shaper.c1
-rw-r--r--modules/indic/indic-fc.c2
-rw-r--r--modules/indic/indic-ot-class-tables.c2
-rw-r--r--modules/indic/indic-ot.c2
-rw-r--r--modules/indic/mprefixups.c1
-rw-r--r--modules/khmer/khmer-fc.c3
-rw-r--r--modules/syriac/syriac-fc.c2
-rw-r--r--modules/syriac/syriac-ot.c2
-rw-r--r--modules/thai/thai-charprop.c2
-rw-r--r--modules/thai/thai-fc.c1
-rw-r--r--modules/thai/thai-ot.c1
-rw-r--r--modules/thai/thai-shaper.c3
-rw-r--r--modules/tibetan/tibetan-fc.c3
21 files changed, 25 insertions, 10 deletions
diff --git a/modules/arabic/arabic-fc.c b/modules/arabic/arabic-fc.c
index 7c2866a4..e03e9ba6 100644
--- a/modules/arabic/arabic-fc.c
+++ b/modules/arabic/arabic-fc.c
@@ -20,6 +20,7 @@
* Boston, MA 02111-1307, USA.
*/
+#include <config.h>
#include <string.h>
#include "arabic-ot.h"
diff --git a/modules/arabic/arabic-ot.c b/modules/arabic/arabic-ot.c
index 681fefed..d23d6486 100644
--- a/modules/arabic/arabic-ot.c
+++ b/modules/arabic/arabic-ot.c
@@ -25,6 +25,8 @@
/* pango/opentype/FT-license.txt */
/****************************************************************************/
+#include <config.h>
+
#include "arabic-ot.h"
diff --git a/modules/basic/basic-atsui.c b/modules/basic/basic-atsui.c
index f1054e7f..08391d6a 100644
--- a/modules/basic/basic-atsui.c
+++ b/modules/basic/basic-atsui.c
@@ -19,6 +19,7 @@
* Boston, MA 02111-1307, USA.
*/
+#include <config.h>
#include <glib.h>
#include <string.h>
#include <Carbon/Carbon.h>
diff --git a/modules/basic/basic-fc.c b/modules/basic/basic-fc.c
index 7daf2a93..d72d7b72 100644
--- a/modules/basic/basic-fc.c
+++ b/modules/basic/basic-fc.c
@@ -20,6 +20,7 @@
* Boston, MA 02111-1307, USA.
*/
+#include <config.h>
#include <string.h>
#include <glib/gprintf.h>
diff --git a/modules/basic/basic-win32.c b/modules/basic/basic-win32.c
index 726b3e3f..58624293 100644
--- a/modules/basic/basic-win32.c
+++ b/modules/basic/basic-win32.c
@@ -20,7 +20,7 @@
* Boston, MA 02111-1307, USA.
*/
-#include "config.h"
+#include <config.h>
#define BASIC_WIN32_DEBUGGING
diff --git a/modules/basic/basic-x.c b/modules/basic/basic-x.c
index 3b440db4..0ff0f863 100644
--- a/modules/basic/basic-x.c
+++ b/modules/basic/basic-x.c
@@ -19,6 +19,7 @@
* Boston, MA 02111-1307, USA.
*/
+#include <config.h>
#include <glib.h>
#include <string.h>
#include "pango-engine.h"
diff --git a/modules/hangul/hangul-fc.c b/modules/hangul/hangul-fc.c
index 9ab0fbc3..991b305f 100644
--- a/modules/hangul/hangul-fc.c
+++ b/modules/hangul/hangul-fc.c
@@ -20,6 +20,7 @@
* Boston, MA 02111-1307, USA.
*/
+#include <config.h>
#include <string.h>
#include "pango-engine.h"
diff --git a/modules/hebrew/hebrew-fc.c b/modules/hebrew/hebrew-fc.c
index b2080db6..c22f118f 100644
--- a/modules/hebrew/hebrew-fc.c
+++ b/modules/hebrew/hebrew-fc.c
@@ -21,6 +21,7 @@
* Boston, MA 02111-1307, USA.
*/
+#include <config.h>
#include <string.h>
#include <pango/pango-ot.h>
diff --git a/modules/hebrew/hebrew-shaper.c b/modules/hebrew/hebrew-shaper.c
index 3e3a2183..5fe000c8 100644
--- a/modules/hebrew/hebrew-shaper.c
+++ b/modules/hebrew/hebrew-shaper.c
@@ -29,6 +29,7 @@
* bad though, and should be fixed, once I have more time.
*/
+#include <config.h>
#include <glib.h>
#include "pango-engine.h"
#include "hebrew-shaper.h"
diff --git a/modules/indic/indic-fc.c b/modules/indic/indic-fc.c
index 49bbd0d9..8487a3cd 100644
--- a/modules/indic/indic-fc.c
+++ b/modules/indic/indic-fc.c
@@ -21,6 +21,8 @@
* Boston, MA 02111-1307, USA.
*/
+#include <config.h>
+
#include <string.h>
#include "indic-ot.h"
diff --git a/modules/indic/indic-ot-class-tables.c b/modules/indic/indic-ot-class-tables.c
index 5c122f8e..4b95cc21 100644
--- a/modules/indic/indic-ot-class-tables.c
+++ b/modules/indic/indic-ot-class-tables.c
@@ -32,6 +32,8 @@
* authorization of the copyright holder.
*/
+#include <config.h>
+
#include "indic-ot.h"
enum
diff --git a/modules/indic/indic-ot.c b/modules/indic/indic-ot.c
index a687ad35..188e5fc5 100644
--- a/modules/indic/indic-ot.c
+++ b/modules/indic/indic-ot.c
@@ -32,6 +32,8 @@
* authorization of the copyright holder.
*/
+#include <config.h>
+
#include "indic-ot.h"
#include "mprefixups.h"
/*
diff --git a/modules/indic/mprefixups.c b/modules/indic/mprefixups.c
index c9dba6c3..3fd4003b 100644
--- a/modules/indic/mprefixups.c
+++ b/modules/indic/mprefixups.c
@@ -21,6 +21,7 @@
* Boston, MA 02111-1307, USA.
*/
+#include <config.h>
#include <pango/pango-types.h>
#include "mprefixups.h"
#include <stdio.h>
diff --git a/modules/khmer/khmer-fc.c b/modules/khmer/khmer-fc.c
index 38a01cd8..7d768c5e 100644
--- a/modules/khmer/khmer-fc.c
+++ b/modules/khmer/khmer-fc.c
@@ -56,10 +56,9 @@
* use or other dealings in this Software without prior written
* authorization of the copyright holder.
*/
-
+#include <config.h>
#include <string.h>
-
#include "pango-engine.h"
#include "pango-ot.h"
#include "pango-utils.h"
diff --git a/modules/syriac/syriac-fc.c b/modules/syriac/syriac-fc.c
index c22ac453..ed689d59 100644
--- a/modules/syriac/syriac-fc.c
+++ b/modules/syriac/syriac-fc.c
@@ -22,7 +22,7 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
-
+#include <config.h>
#include <string.h>
#include "syriac-ot.h"
diff --git a/modules/syriac/syriac-ot.c b/modules/syriac/syriac-ot.c
index 6011932f..b5bb48a9 100644
--- a/modules/syriac/syriac-ot.c
+++ b/modules/syriac/syriac-ot.c
@@ -18,7 +18,7 @@
* pango/opentype/FT-license.txt for full details of the FreeType
* license.
*/
-
+#include <config.h>
#include "syriac-ot.h"
/* Here a table of the joining classes for characters in the range
diff --git a/modules/thai/thai-charprop.c b/modules/thai/thai-charprop.c
index b657f1eb..a05592b5 100644
--- a/modules/thai/thai-charprop.c
+++ b/modules/thai/thai-charprop.c
@@ -23,7 +23,7 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
-
+#include <config.h>
#include "thai-charprop.h"
const gshort thai_char_type[256] = {
diff --git a/modules/thai/thai-fc.c b/modules/thai/thai-fc.c
index a5676ff6..9a038e8b 100644
--- a/modules/thai/thai-fc.c
+++ b/modules/thai/thai-fc.c
@@ -27,6 +27,7 @@
*/
+#include <config.h>
#include <string.h>
#include <glib.h>
diff --git a/modules/thai/thai-ot.c b/modules/thai/thai-ot.c
index 7ece31e0..b82033bb 100644
--- a/modules/thai/thai-ot.c
+++ b/modules/thai/thai-ot.c
@@ -20,6 +20,7 @@
* Boston, MA 02111-1307, USA.
*/
+#include <config.h>
#include <string.h>
#include "thai-ot.h"
diff --git a/modules/thai/thai-shaper.c b/modules/thai/thai-shaper.c
index a4c21bfb..a2a5bf37 100644
--- a/modules/thai/thai-shaper.c
+++ b/modules/thai/thai-shaper.c
@@ -26,8 +26,7 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
-#include "config.h"
-
+#include <config.h>
#include <string.h>
#include <glib.h>
diff --git a/modules/tibetan/tibetan-fc.c b/modules/tibetan/tibetan-fc.c
index 525736e8..5df9906e 100644
--- a/modules/tibetan/tibetan-fc.c
+++ b/modules/tibetan/tibetan-fc.c
@@ -64,10 +64,9 @@
* use or other dealings in this Software without prior written
* authorization of the copyright holder.
*/
-
+#include <config.h>
#include <string.h>
-
#include "pango-engine.h"
#include "pango-ot.h"
#include "pango-utils.h"