[evolution-data-server] Correct config.h inclusion in some recent Camel source files



commit fca9af0665f29be77697015dbca9d95fd10028aa
Author: Milan Crha <mcrha redhat com>
Date:   Mon Jan 23 12:52:19 2017 +0100

    Correct config.h inclusion in some recent Camel source files
    
    It's not config.h, but evolution-data-server-config.h, and it's not
    conditional. It was supposed to be fixed when merging the new files,
    but I missed it.

 src/camel/camel-message-info-base.c                |    4 +---
 src/camel/camel-message-info.c                     |    4 +---
 src/camel/camel-name-value-array.c                 |    4 +---
 src/camel/camel-named-flags.c                      |    4 +---
 src/camel/camel-utils.c                            |    4 +---
 src/camel/camel-vee-message-info.c                 |    4 +---
 .../providers/imapx/camel-imapx-message-info.c     |    4 +---
 .../providers/local/camel-maildir-message-info.c   |    4 +---
 .../providers/local/camel-mbox-message-info.c      |    4 +---
 9 files changed, 9 insertions(+), 27 deletions(-)
---
diff --git a/src/camel/camel-message-info-base.c b/src/camel/camel-message-info-base.c
index 71b1b70..dae6d7b 100644
--- a/src/camel/camel-message-info-base.c
+++ b/src/camel/camel-message-info-base.c
@@ -15,9 +15,7 @@
  * along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+#include "evolution-data-server-config.h"
 
 #include <stdio.h>
 
diff --git a/src/camel/camel-message-info.c b/src/camel/camel-message-info.c
index 6873cd2..58c419d 100644
--- a/src/camel/camel-message-info.c
+++ b/src/camel/camel-message-info.c
@@ -15,9 +15,7 @@
  * along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+#include "evolution-data-server-config.h"
 
 #include <stdio.h>
 #include <string.h>
diff --git a/src/camel/camel-name-value-array.c b/src/camel/camel-name-value-array.c
index b25f593..86a7fed 100644
--- a/src/camel/camel-name-value-array.c
+++ b/src/camel/camel-name-value-array.c
@@ -15,9 +15,7 @@
  * along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+#include "evolution-data-server-config.h"
 
 #include <stdio.h>
 #include <string.h>
diff --git a/src/camel/camel-named-flags.c b/src/camel/camel-named-flags.c
index d920f04..a046744 100644
--- a/src/camel/camel-named-flags.c
+++ b/src/camel/camel-named-flags.c
@@ -15,9 +15,7 @@
  * along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+#include "evolution-data-server-config.h"
 
 #include <stdio.h>
 #include <string.h>
diff --git a/src/camel/camel-utils.c b/src/camel/camel-utils.c
index b38b9a9..aac2291 100644
--- a/src/camel/camel-utils.c
+++ b/src/camel/camel-utils.c
@@ -15,9 +15,7 @@
  * along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+#include "evolution-data-server-config.h"
 
 #include <stdio.h>
 #include <string.h>
diff --git a/src/camel/camel-vee-message-info.c b/src/camel/camel-vee-message-info.c
index ed3a55d..4ec2aea 100644
--- a/src/camel/camel-vee-message-info.c
+++ b/src/camel/camel-vee-message-info.c
@@ -15,9 +15,7 @@
  * along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+#include "evolution-data-server-config.h"
 
 #include <stdio.h>
 
diff --git a/src/camel/providers/imapx/camel-imapx-message-info.c 
b/src/camel/providers/imapx/camel-imapx-message-info.c
index ef0572e..4de7965 100644
--- a/src/camel/providers/imapx/camel-imapx-message-info.c
+++ b/src/camel/providers/imapx/camel-imapx-message-info.c
@@ -15,9 +15,7 @@
  * along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+#include "evolution-data-server-config.h"
 
 #include <stdio.h>
 
diff --git a/src/camel/providers/local/camel-maildir-message-info.c 
b/src/camel/providers/local/camel-maildir-message-info.c
index 7d85cc9..69bfc3a 100644
--- a/src/camel/providers/local/camel-maildir-message-info.c
+++ b/src/camel/providers/local/camel-maildir-message-info.c
@@ -15,9 +15,7 @@
  * along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+#include "evolution-data-server-config.h"
 
 #include <stdio.h>
 
diff --git a/src/camel/providers/local/camel-mbox-message-info.c 
b/src/camel/providers/local/camel-mbox-message-info.c
index 9a278e4..b9e25a4 100644
--- a/src/camel/providers/local/camel-mbox-message-info.c
+++ b/src/camel/providers/local/camel-mbox-message-info.c
@@ -15,9 +15,7 @@
  * along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+#include "evolution-data-server-config.h"
 
 #include <stdio.h>
 


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