SF.net SVN: geany-plugins:[2137] trunk/geany-plugins

frlan at users.sourceforge.net frlan at xxxxx
Sat Aug 13 22:15:21 UTC 2011


Revision: 2137
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2137&view=rev
Author:   frlan
Date:     2011-08-13 22:15:21 +0000 (Sat, 13 Aug 2011)

Log Message:
-----------
Fix build of updatechecker and tableconvert due to not properly included config.h

Modified Paths:
--------------
    trunk/geany-plugins/tableconvert/src/tableconvert.c
    trunk/geany-plugins/updatechecker/src/updatechecker.c

Modified: trunk/geany-plugins/tableconvert/src/tableconvert.c
===================================================================
--- trunk/geany-plugins/tableconvert/src/tableconvert.c	2011-08-13 22:10:30 UTC (rev 2136)
+++ trunk/geany-plugins/tableconvert/src/tableconvert.c	2011-08-13 22:15:21 UTC (rev 2137)
@@ -18,6 +18,11 @@
  *	  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+	#include "config.h" /* for the gettext domain */
+#endif
+
+
 #include "geanyplugin.h"
 
 GeanyPlugin     *geany_plugin;

Modified: trunk/geany-plugins/updatechecker/src/updatechecker.c
===================================================================
--- trunk/geany-plugins/updatechecker/src/updatechecker.c	2011-08-13 22:10:30 UTC (rev 2136)
+++ trunk/geany-plugins/updatechecker/src/updatechecker.c	2011-08-13 22:15:21 UTC (rev 2137)
@@ -24,6 +24,11 @@
 #include "libsoup/soup.h"
 #include "stdlib.h"
 
+#ifdef HAVE_CONFIG_H
+	#include "config.h" /* for the gettext domain */
+#endif
+
+
 GeanyPlugin     *geany_plugin;
 GeanyData       *geany_data;
 GeanyFunctions  *geany_functions;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list