Revision: 2173
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2173&view=rev
Author: frlan
Date: 2011-08-27 17:27:07 +0000 (Sat, 27 Aug 2011)
Log Message:
-----------
Remove geanyembrace from repo as its not maintained anymore and most of its functions are available through other plugins
Removed Paths:
-------------
trunk/geanyembrace/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2171
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2171&view=rev
Author: yurand
Date: 2011-08-25 19:34:37 +0000 (Thu, 25 Aug 2011)
Log Message:
-----------
Deleting externdbg plugin (no longer build)
Removed Paths:
-------------
trunk/externdbg/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2169
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2169&view=rev
Author: codebrainz
Date: 2011-08-24 08:14:32 +0000 (Wed, 24 Aug 2011)
Log Message:
-----------
Fix case of Autotools building Devhelp plugin auto (oops).
Used the code copied from common.m4 directly with wrong substituions.
Now uses hardcoded 'enable_devhelp'.
Modified Paths:
--------------
trunk/geany-plugins/build/devhelp.m4
Modified: trunk/geany-plugins/build/devhelp.m4
===================================================================
--- trunk/geany-plugins/build/devhelp.m4 2011-08-24 07:58:32 UTC (rev 2168)
+++ trunk/geany-plugins/build/devhelp.m4 2011-08-24 08:14:32 UTC (rev 2169)
@@ -34,14 +34,14 @@
[PKG_CHECK_MODULES(
[DEVHELP],
[libdevhelp-1.0 >= ${DEVHELP1_VERSION}],
- [m4_tolower(AS_TR_SH(enable_$1))=yes],
- [m4_tolower(AS_TR_SH(enable_$1))=no])
+ [m4_tolower(AS_TR_SH(enable_devhelp))=yes],
+ [m4_tolower(AS_TR_SH(enable_devhelp))=no])
]
)
fi
- AM_CONDITIONAL(m4_toupper(AS_TR_SH(ENABLE_$1)),
- test "$m4_tolower(AS_TR_SH(enable_$1))" = yes)
+ AM_CONDITIONAL(m4_toupper(AS_TR_SH(ENABLE_devhelp)),
+ test "$m4_tolower(AS_TR_SH(enable_devhelp))" = yes)
GP_STATUS_PLUGIN_ADD([DevHelp], [$enable_devhelp])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2168
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2168&view=rev
Author: codebrainz
Date: 2011-08-24 07:58:32 +0000 (Wed, 24 Aug 2011)
Log Message:
-----------
Adjust Waf build system to require newer Devhelp library.
Building with Waf now requires 'libdevhelp-2.0' (>=2.32.0) since I
don't know how to make Waf use older or new library.
Modified Paths:
--------------
trunk/geany-plugins/devhelp/wscript_configure
Modified: trunk/geany-plugins/devhelp/wscript_configure
===================================================================
--- trunk/geany-plugins/devhelp/wscript_configure 2011-08-24 07:50:51 UTC (rev 2167)
+++ trunk/geany-plugins/devhelp/wscript_configure 2011-08-24 07:58:32 UTC (rev 2168)
@@ -27,7 +27,7 @@
('gtk+-2.0', '2.16', 'GTK'),
('glib-2.0', '2.16', 'GLIB'),
('gthread-2.0','','GTHREAD'),
- ('libdevhelp-1.0', '2.30.1', 'LIBDEVHELP'),
+ ('libdevhelp-2.0', '2.32.0', 'LIBDEVHELP'),
('webkit-1.0', '1.1.18', 'WEBKIT')
]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.