Revision: 2049
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2049&view=rev
Author: frlan
Date: 2011-04-23 06:47:00 +0000 (Sat, 23 Apr 2011)
Log Message:
-----------
GeanyLaTeX: Backport a fix for a memory leak from plugin's trunk
Modified Paths:
--------------
trunk/geany-plugins/geanylatex/src/templates.c
Modified: trunk/geany-plugins/geanylatex/src/templates.c
===================================================================
--- trunk/geany-plugins/geanylatex/src/templates.c 2011-04-23 06:46:43 UTC (rev 2048)
+++ trunk/geany-plugins/geanylatex/src/templates.c 2011-04-23 06:47:00 UTC (rev 2049)
@@ -44,6 +44,7 @@
/* Return if its not a searched file */
if (g_str_has_suffix(file,".gtl") == FALSE)
+ g_free(template);
return;
template->filepath = g_strdup(file);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2048
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2048&view=rev
Author: frlan
Date: 2011-04-23 06:46:43 +0000 (Sat, 23 Apr 2011)
Log Message:
-----------
Enable GeanyNumbered to get build with autotools. The summary after configure seems to don't work at the moment for this plugin for unknown reasons.
Added Paths:
-----------
trunk/geany-plugins/build/geanynumberedbookmarks.m4
Added: trunk/geany-plugins/build/geanynumberedbookmarks.m4
===================================================================
--- trunk/geany-plugins/build/geanynumberedbookmarks.m4 (rev 0)
+++ trunk/geany-plugins/build/geanynumberedbookmarks.m4 2011-04-23 06:46:43 UTC (rev 2048)
@@ -0,0 +1,9 @@
+AC_DEFUN([GP_CHECK_GEANYNUMBEREDBOOKMARKS],
+[
+ GP_ARG_DISABLE([GeanyNumberedBookmarks], [yes])
+ GP_STATUS_PLUGIN_ADD([GeanyNumberedBookmarks], [$enable_geanynumberebookmarks])
+ AC_CONFIG_FILES([
+ geanynumberedbookmarks/Makefile
+ geanynumberedbookmarks/src/Makefile
+ ])
+])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2046
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2046&view=rev
Author: frlan
Date: 2011-04-23 06:46:01 +0000 (Sat, 23 Apr 2011)
Log Message:
-----------
Enable geanyPG to be build with autotools and don't break autotools build
Modified Paths:
--------------
trunk/geany-plugins/configure.ac
Modified: trunk/geany-plugins/configure.ac
===================================================================
--- trunk/geany-plugins/configure.ac 2011-04-23 06:45:44 UTC (rev 2045)
+++ trunk/geany-plugins/configure.ac 2011-04-23 06:46:01 UTC (rev 2046)
@@ -42,6 +42,7 @@
GP_CHECK_GEANYPRJ
GP_CHECK_GEANYSENDMAIL
GP_CHECK_GEANYVC
+GP_CHECK_GEANYPG
GP_CHECK_PRETTYPRINTER
GP_CHECK_SHIFTCOLUMN
GP_CHECK_SPELLCHECK
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2045
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2045&view=rev
Author: frlan
Date: 2011-04-23 06:45:44 +0000 (Sat, 23 Apr 2011)
Log Message:
-----------
Make autotools generate Makefile for GeanyCFP but disable this plugin on default for autotools build as its getting deprecated due new geanymacro and geanynumberedbookmarks
Modified Paths:
--------------
trunk/geany-plugins/build/geanycfp.m4
trunk/geany-plugins/configure.ac
Modified: trunk/geany-plugins/build/geanycfp.m4
===================================================================
--- trunk/geany-plugins/build/geanycfp.m4 2011-04-23 06:45:25 UTC (rev 2044)
+++ trunk/geany-plugins/build/geanycfp.m4 2011-04-23 06:45:44 UTC (rev 2045)
@@ -1,6 +1,6 @@
AC_DEFUN([GP_CHECK_GEANYCFP],
[
- GP_ARG_DISABLE([geanycfp], [yes])
+ GP_ARG_DISABLE([geanycfp], [no])
GP_STATUS_PLUGIN_ADD([GeanyCFP], [$enable_geanycfp])
AC_CONFIG_FILES([
geanycfp/Makefile
Modified: trunk/geany-plugins/configure.ac
===================================================================
--- trunk/geany-plugins/configure.ac 2011-04-23 06:45:25 UTC (rev 2044)
+++ trunk/geany-plugins/configure.ac 2011-04-23 06:45:44 UTC (rev 2045)
@@ -28,6 +28,7 @@
GP_CHECK_CODENAV
GP_CHECK_DEBUGGER
GP_CHECK_DEVHELP
+GP_CHECK_GEANYCFP
GP_CHECK_GEANYDOC
GP_CHECK_GEANYEXTRASEL
GP_CHECK_GEANYGDB
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.