[git] GpgOL - branch, master, updated. gpgol-1.3.0-25-g719c0b9

by Andre Heinecke cvs at cvs.gnupg.org
Wed Dec 9 12:01:30 CET 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG extension for MS Outlook".

The branch, master has been updated
       via  719c0b9824ba3edfb83acfb75ed264941afd4d96 (commit)
      from  5b3b0c233666a0492ee62a8b257a6125d30211d6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 719c0b9824ba3edfb83acfb75ed264941afd4d96
Author: Andre Heinecke <aheinecke at intevation.de>
Date:   Wed Dec 9 11:59:23 2015 +0100

    Make sure config.h is included before gpg-error.h
    
    * src/application-events.cpp, src/exechelp.c, src/rfc2047parse.c:
     Include config.h first.
    
    --
    If we don't include config.h before gpg-error including it
    will lead to errors because of the GPG_ERR_SOURCE_DEFAULT
    definition in config.h

diff --git a/src/application-events.cpp b/src/application-events.cpp
index 6b1ff4f..44fe2b5 100644
--- a/src/application-events.cpp
+++ b/src/application-events.cpp
@@ -22,6 +22,10 @@
    through the eventsink macros and handle event invocations
    in their invoke methods.
 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include "eventsink.h"
 #include "ocidl.h"
 #include "common.h"
diff --git a/src/exechelp.c b/src/exechelp.c
index 5d2a5bf..dc01c0a 100644
--- a/src/exechelp.c
+++ b/src/exechelp.c
@@ -19,6 +19,10 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/src/rfc2047parse.c b/src/rfc2047parse.c
index 8ba9085..2d485a3 100644
--- a/src/rfc2047parse.c
+++ b/src/rfc2047parse.c
@@ -31,6 +31,10 @@
  *  of the License, or (at your option) any later version.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdbool.h>
 #include "common.h"
 #include "mlang-charset.h"

-----------------------------------------------------------------------

Summary of changes:
 src/application-events.cpp | 4 ++++
 src/exechelp.c             | 4 ++++
 src/rfc2047parse.c         | 4 ++++
 3 files changed, 12 insertions(+)


hooks/post-receive
-- 
GnuPG extension for MS Outlook
http://git.gnupg.org




More information about the Gnupg-commits mailing list