Revision: 2136
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2136&view=rev
Author: frlan
Date: 2011-08-13 22:10:30 +0000 (Sat, 13 Aug 2011)
Log Message:
-----------
Fix build of geanysendmail plugin due to not properly included config.h
Modified Paths:
--------------
trunk/geany-plugins/geanysendmail/src/geanysendmail.c
Modified: trunk/geany-plugins/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geany-plugins/geanysendmail/src/geanysendmail.c 2011-08-13 22:10:02 UTC (rev 2135)
+++ trunk/geany-plugins/geanysendmail/src/geanysendmail.c 2011-08-13 22:10:30 UTC (rev 2136)
@@ -26,6 +26,9 @@
#include "geanyplugin.h"
#include "icon.h"
+#ifdef HAVE_CONFIG_H
+ #include "config.h" /* for the gettext domain */
+#endif
#ifdef HAVE_LOCALE_H
# include <locale.h>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2135
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2135&view=rev
Author: frlan
Date: 2011-08-13 22:10:02 +0000 (Sat, 13 Aug 2011)
Log Message:
-----------
Fix build of geanylipsum plugin due to not properly included config.h
Modified Paths:
--------------
trunk/geany-plugins/geanylipsum/src/geanylipsum.c
Modified: trunk/geany-plugins/geanylipsum/src/geanylipsum.c
===================================================================
--- trunk/geany-plugins/geanylipsum/src/geanylipsum.c 2011-08-13 22:09:39 UTC (rev 2134)
+++ trunk/geany-plugins/geanylipsum/src/geanylipsum.c 2011-08-13 22:10:02 UTC (rev 2135)
@@ -20,6 +20,10 @@
#include "geanyplugin.h"
+#ifdef HAVE_CONFIG_H
+ #include "config.h" /* for the gettext domain */
+#endif
+
#include <string.h>
#ifdef HAVE_LOCALE_H
# include <locale.h>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2134
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2134&view=rev
Author: frlan
Date: 2011-08-13 22:09:39 +0000 (Sat, 13 Aug 2011)
Log Message:
-----------
GeanyLaTeX: Fix build of plugin due to not properly included config.h
Modified Paths:
--------------
trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geanylatex/src/geanylatex.c 2011-08-13 22:09:16 UTC (rev 2133)
+++ trunk/geanylatex/src/geanylatex.c 2011-08-13 22:09:39 UTC (rev 2134)
@@ -25,6 +25,11 @@
/* LaTeX plugin */
/* This plugin improves the work with LaTeX and Geany.*/
+
+#ifdef HAVE_CONFIG_H
+ #include "config.h" /* for the gettext domain */
+#endif
+
#include "geanylatex.h"
#include "ctype.h"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2133
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2133&view=rev
Author: frlan
Date: 2011-08-13 22:09:16 +0000 (Sat, 13 Aug 2011)
Log Message:
-----------
GeanyLaTeX: Fix build of plugin due to not properly included config.h
Modified Paths:
--------------
trunk/geany-plugins/geanylatex/src/geanylatex.c
Modified: trunk/geany-plugins/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geany-plugins/geanylatex/src/geanylatex.c 2011-08-13 21:43:28 UTC (rev 2132)
+++ trunk/geany-plugins/geanylatex/src/geanylatex.c 2011-08-13 22:09:16 UTC (rev 2133)
@@ -25,6 +25,11 @@
/* LaTeX plugin */
/* This plugin improves the work with LaTeX and Geany.*/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h" /* for the gettext domain */
+#endif
+
#include "geanylatex.h"
#include "ctype.h"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2130
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2130&view=rev
Author: frlan
Date: 2011-08-13 17:58:52 +0000 (Sat, 13 Aug 2011)
Log Message:
-----------
Fix build of addons plugin due to not properly included config.h
Modified Paths:
--------------
trunk/geany-plugins/addons/src/addons.c
Modified: trunk/geany-plugins/addons/src/addons.c
===================================================================
--- trunk/geany-plugins/addons/src/addons.c 2011-08-13 15:05:45 UTC (rev 2129)
+++ trunk/geany-plugins/addons/src/addons.c 2011-08-13 17:58:52 UTC (rev 2130)
@@ -34,6 +34,9 @@
#include "ao_tasks.h"
#include "ao_xmltagging.h"
+#ifdef HAVE_CONFIG_H
+# include "config.h" /* for the gettext domain */
+#endif
GeanyPlugin *geany_plugin;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.