diff options
author | Milan Crha <mcrha@redhat.com> | 2011-05-27 21:23:07 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-05-27 21:23:07 +0800 |
commit | 756c8abcb840b8da588031f4a0d7e1fc979fab70 (patch) | |
tree | 919583d7fafd616a7f3645476ad8d91872048c54 /plugins/google-account-setup | |
parent | 1993a293b1704a09d501c92b938608b115676c0c (diff) | |
download | gsoc2013-evolution-756c8abcb840b8da588031f4a0d7e1fc979fab70.tar.gz gsoc2013-evolution-756c8abcb840b8da588031f4a0d7e1fc979fab70.tar.zst gsoc2013-evolution-756c8abcb840b8da588031f4a0d7e1fc979fab70.zip |
Bug #646109 - Fix use of include <config.h> to make sure translations work
Diffstat (limited to 'plugins/google-account-setup')
-rw-r--r-- | plugins/google-account-setup/google-contacts-source.c | 3 | ||||
-rw-r--r-- | plugins/google-account-setup/google-source.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/plugins/google-account-setup/google-contacts-source.c b/plugins/google-account-setup/google-contacts-source.c index 46f0d4362c..ee6154e5f9 100644 --- a/plugins/google-account-setup/google-contacts-source.c +++ b/plugins/google-account-setup/google-contacts-source.c @@ -18,7 +18,10 @@ * */ +#ifdef HAVE_CONFIG_H #include <config.h> +#endif + #include <string.h> #include <glib/gi18n-lib.h> diff --git a/plugins/google-account-setup/google-source.c b/plugins/google-account-setup/google-source.c index 335aece2e5..f0290246a9 100644 --- a/plugins/google-account-setup/google-source.c +++ b/plugins/google-account-setup/google-source.c @@ -23,7 +23,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include <config.h> #endif #include <string.h> |