Revision: 1324 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1324&view=re... Author: colombanw Date: 2010-05-01 17:47:09 +0000 (Sat, 01 May 2010)
Log Message: ----------- GeanyGenDoc: Decrease Geany dependency
Decrease plugin API dependency to 171, which should be the actual version we need and should make the plugin work with Geany 0.18.1.
Modified Paths: -------------- trunk/geanygendoc/configure.ac trunk/geanygendoc/src/ggd-plugin.c
Modified: trunk/geanygendoc/configure.ac =================================================================== --- trunk/geanygendoc/configure.ac 2010-05-01 17:46:41 UTC (rev 1323) +++ trunk/geanygendoc/configure.ac 2010-05-01 17:47:09 UTC (rev 1324) @@ -19,7 +19,7 @@ AC_PROG_INSTALL
# checking for Geany -PKG_CHECK_MODULES(GEANY, [geany >= 0.19]) +PKG_CHECK_MODULES(GEANY, [geany >= 0.18.1]) PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.12]) PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.14]) # need GIO >= 2.18 for g_memory_output_stream_get_data_size()
Modified: trunk/geanygendoc/src/ggd-plugin.c =================================================================== --- trunk/geanygendoc/src/ggd-plugin.c 2010-05-01 17:46:41 UTC (rev 1323) +++ trunk/geanygendoc/src/ggd-plugin.c 2010-05-01 17:47:09 UTC (rev 1324) @@ -46,7 +46,7 @@ GeanyFunctions *geany_functions;
/* TODO check minimum requierment */ -PLUGIN_VERSION_CHECK (172) +PLUGIN_VERSION_CHECK (171)
PLUGIN_SET_INFO (GGD_PLUGIN_NAME, _("Generates documentation comments basis from source code"),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.