[gspell] Include config.h in all gspell/*.c files



commit 990a123ad11b63c0e6b72b56dd3c50388fba9b10
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Thu Apr 13 19:03:38 2017 +0200

    Include config.h in all gspell/*.c files
    
    This will be required for the symbol visibility handling.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=761921

 gspell/gspell-current-word-policy.c     |    1 +
 gspell/gspell-entry-buffer.c            |    1 +
 gspell/gspell-entry-utils.c             |    1 +
 gspell/gspell-entry.c                   |    1 +
 gspell/gspell-enum-types.c.template     |    1 +
 gspell/gspell-language-chooser-dialog.c |    1 +
 gspell/gspell-language-chooser.c        |    1 +
 gspell/gspell-navigator.c               |    1 +
 gspell/gspell-osx.c                     |    1 +
 gspell/gspell-text-buffer.c             |    1 +
 gspell/gspell-text-iter.c               |    1 +
 gspell/gspell-utils.c                   |    1 +
 gspell/gspellregion.c                   |    1 +
 13 files changed, 13 insertions(+), 0 deletions(-)
---
diff --git a/gspell/gspell-current-word-policy.c b/gspell/gspell-current-word-policy.c
index 3884539..6835cc5 100644
--- a/gspell/gspell-current-word-policy.c
+++ b/gspell/gspell-current-word-policy.c
@@ -17,6 +17,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-current-word-policy.h"
 
 /* An object that decides whether to check the current word. When a word is
diff --git a/gspell/gspell-entry-buffer.c b/gspell/gspell-entry-buffer.c
index 2e5683a..9070559 100644
--- a/gspell/gspell-entry-buffer.c
+++ b/gspell/gspell-entry-buffer.c
@@ -17,6 +17,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-entry-buffer.h"
 
 /**
diff --git a/gspell/gspell-entry-utils.c b/gspell/gspell-entry-utils.c
index 4d767a0..db78c2f 100644
--- a/gspell/gspell-entry-utils.c
+++ b/gspell/gspell-entry-utils.c
@@ -17,6 +17,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-entry-utils.h"
 #include <string.h>
 #include "gspell-utils.h"
diff --git a/gspell/gspell-entry.c b/gspell/gspell-entry.c
index 846e8f4..b61b1c1 100644
--- a/gspell/gspell-entry.c
+++ b/gspell/gspell-entry.c
@@ -17,6 +17,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-entry.h"
 #include "gspell-entry-private.h"
 #include "gspell-entry-buffer.h"
diff --git a/gspell/gspell-enum-types.c.template b/gspell/gspell-enum-types.c.template
index f3909db..38f0eed 100644
--- a/gspell/gspell-enum-types.c.template
+++ b/gspell/gspell-enum-types.c.template
@@ -1,4 +1,5 @@
 /*** BEGIN file-header ***/
+#include "config.h"
 #include "gspell-enum-types.h"
 
 /*** END file-header ***/
diff --git a/gspell/gspell-language-chooser-dialog.c b/gspell/gspell-language-chooser-dialog.c
index d0b228f..ff07744 100644
--- a/gspell/gspell-language-chooser-dialog.c
+++ b/gspell/gspell-language-chooser-dialog.c
@@ -18,6 +18,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-language-chooser-dialog.h"
 #include "gspell-language-chooser.h"
 
diff --git a/gspell/gspell-language-chooser.c b/gspell/gspell-language-chooser.c
index 2873ff9..f92f7c7 100644
--- a/gspell/gspell-language-chooser.c
+++ b/gspell/gspell-language-chooser.c
@@ -17,6 +17,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-language-chooser.h"
 
 /**
diff --git a/gspell/gspell-navigator.c b/gspell/gspell-navigator.c
index 3dc00b6..6951a11 100644
--- a/gspell/gspell-navigator.c
+++ b/gspell/gspell-navigator.c
@@ -17,6 +17,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-navigator.h"
 
 /**
diff --git a/gspell/gspell-osx.c b/gspell/gspell-osx.c
index ff9f0e8..87c4168 100644
--- a/gspell/gspell-osx.c
+++ b/gspell/gspell-osx.c
@@ -17,6 +17,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-osx.h"
 #include <gtkosxapplication.h>
 #import <Cocoa/Cocoa.h>
diff --git a/gspell/gspell-text-buffer.c b/gspell/gspell-text-buffer.c
index d94ae99..ded8d4e 100644
--- a/gspell/gspell-text-buffer.c
+++ b/gspell/gspell-text-buffer.c
@@ -17,6 +17,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-text-buffer.h"
 
 /**
diff --git a/gspell/gspell-text-iter.c b/gspell/gspell-text-iter.c
index 3c1ca8a..99b5a56 100644
--- a/gspell/gspell-text-iter.c
+++ b/gspell/gspell-text-iter.c
@@ -17,6 +17,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-text-iter.h"
 #include "gspell-utils.h"
 
diff --git a/gspell/gspell-utils.c b/gspell/gspell-utils.c
index 149a20f..9807331 100644
--- a/gspell/gspell-utils.c
+++ b/gspell/gspell-utils.c
@@ -18,6 +18,7 @@
  * along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "config.h"
 #include "gspell-utils.h"
 #include <string.h>
 #include "gspell-text-iter.h"
diff --git a/gspell/gspellregion.c b/gspell/gspellregion.c
index 2f98cce..0115871 100644
--- a/gspell/gspellregion.c
+++ b/gspell/gspellregion.c
@@ -22,6 +22,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#include "config.h"
 #include "gspellregion.h"
 
 /*


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]