Revision: 2139 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2139&view=re... Author: eht16 Date: 2011-08-14 10:19:27 +0000 (Sun, 14 Aug 2011)
Log Message: ----------- Properly include config.h as needed (after the implicit has been correctly removed from Geany's core)
Modified Paths: -------------- trunk/geany-plugins/debugger/src/plugin.c trunk/geany-plugins/geanyextrasel/src/extrasel.c trunk/geany-plugins/geanygdb/src/gdb-io-stack.c trunk/geany-plugins/geanygdb/src/gdb-ui-main.c trunk/geany-plugins/geanygdb/src/geanygdb.c trunk/geany-plugins/geanyinsertnum/src/insertnum.c trunk/geany-plugins/geanylua/geanylua.c trunk/geany-plugins/geanylua/glspi.h trunk/geany-plugins/geanyprj/src/geanyprj.c trunk/geany-plugins/gproject/src/gproject-main.c trunk/geany-plugins/pretty-printer/src/PrettyPrinter.h trunk/geany-plugins/shiftcolumn/src/shiftcolumn.c trunk/geany-plugins/spellcheck/src/scplugin.c trunk/geany-plugins/treebrowser/src/treebrowser.c trunk/geany-plugins/xmlsnippets/src/plugin.c
Modified: trunk/geany-plugins/debugger/src/plugin.c =================================================================== --- trunk/geany-plugins/debugger/src/plugin.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/debugger/src/plugin.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -23,6 +23,10 @@ * geany debugger plugin */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include "geanyplugin.h" #include "breakpoint.h" #include "breakpoints.h"
Modified: trunk/geany-plugins/geanyextrasel/src/extrasel.c =================================================================== --- trunk/geany-plugins/geanyextrasel/src/extrasel.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/geanyextrasel/src/extrasel.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -17,6 +17,10 @@ * along with this program. If not, see http://www.gnu.org/licenses/. */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <gdk/gdkkeysyms.h>
#include "geanyplugin.h"
Modified: trunk/geany-plugins/geanygdb/src/gdb-io-stack.c =================================================================== --- trunk/geany-plugins/geanygdb/src/gdb-io-stack.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/geanygdb/src/gdb-io-stack.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -17,6 +17,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <string.h> #include <glib.h>
Modified: trunk/geany-plugins/geanygdb/src/gdb-ui-main.c =================================================================== --- trunk/geany-plugins/geanygdb/src/gdb-ui-main.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/geanygdb/src/gdb-ui-main.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -18,6 +18,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdlib.h> #include <unistd.h> #include <string.h>
Modified: trunk/geany-plugins/geanygdb/src/geanygdb.c =================================================================== --- trunk/geany-plugins/geanygdb/src/geanygdb.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/geanygdb/src/geanygdb.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -20,6 +20,10 @@ */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <glib/gstdio.h>
#include "geanyplugin.h"
Modified: trunk/geany-plugins/geanyinsertnum/src/insertnum.c =================================================================== --- trunk/geany-plugins/geanyinsertnum/src/insertnum.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/geanyinsertnum/src/insertnum.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -17,6 +17,10 @@ * along with this program. If not, see http://www.gnu.org/licenses/. */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <ctype.h> #include <limits.h> #include <stdlib.h>
Modified: trunk/geany-plugins/geanylua/geanylua.c =================================================================== --- trunk/geany-plugins/geanylua/geanylua.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/geanylua/geanylua.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -30,7 +30,11 @@ */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif
+ #include "geany.h" #include "plugindata.h" #include "keybindings.h"
Modified: trunk/geany-plugins/geanylua/glspi.h =================================================================== --- trunk/geany-plugins/geanylua/glspi.h 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/geanylua/glspi.h 2011-08-14 10:19:27 UTC (rev 2139) @@ -6,6 +6,10 @@ */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <lua.h> #include <lualib.h> #include <lauxlib.h>
Modified: trunk/geany-plugins/geanyprj/src/geanyprj.c =================================================================== --- trunk/geany-plugins/geanyprj/src/geanyprj.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/geanyprj/src/geanyprj.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -20,6 +20,10 @@ * along with this program. If not, see http://www.gnu.org/licenses/. */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <sys/time.h> #include <string.h>
Modified: trunk/geany-plugins/gproject/src/gproject-main.c =================================================================== --- trunk/geany-plugins/gproject/src/gproject-main.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/gproject/src/gproject-main.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -16,6 +16,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <sys/time.h> #include <string.h>
Modified: trunk/geany-plugins/pretty-printer/src/PrettyPrinter.h =================================================================== --- trunk/geany-plugins/pretty-printer/src/PrettyPrinter.h 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/pretty-printer/src/PrettyPrinter.h 2011-08-14 10:19:27 UTC (rev 2139) @@ -21,6 +21,10 @@
//========================================== INCLUDES ==========================================================
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> #include <string.h>
Modified: trunk/geany-plugins/shiftcolumn/src/shiftcolumn.c =================================================================== --- trunk/geany-plugins/shiftcolumn/src/shiftcolumn.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/shiftcolumn/src/shiftcolumn.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -19,6 +19,10 @@ */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include "geany.h" #include "support.h"
Modified: trunk/geany-plugins/spellcheck/src/scplugin.c =================================================================== --- trunk/geany-plugins/spellcheck/src/scplugin.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/spellcheck/src/scplugin.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -23,6 +23,10 @@ */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include "geanyplugin.h"
Modified: trunk/geany-plugins/treebrowser/src/treebrowser.c =================================================================== --- trunk/geany-plugins/treebrowser/src/treebrowser.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/treebrowser/src/treebrowser.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -4,6 +4,10 @@ * Copyright 2010 Adrian Dimitrov dimitrov.adrian@gmail.com */
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <sys/types.h> #include <sys/stat.h> #include <string.h>
Modified: trunk/geany-plugins/xmlsnippets/src/plugin.c =================================================================== --- trunk/geany-plugins/xmlsnippets/src/plugin.c 2011-08-14 10:03:52 UTC (rev 2138) +++ trunk/geany-plugins/xmlsnippets/src/plugin.c 2011-08-14 10:19:27 UTC (rev 2139) @@ -21,6 +21,10 @@
#ifndef TEST
+#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include "plugin.h" #include "xmlsnippets.h" #include <SciLexer.h>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.