Revision: 1919
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1919&view=rev
Author: hyperair
Date: 2011-02-10 22:10:41 +0000 (Thu, 10 Feb 2011)
Log Message:
-----------
Set plugin = debugger in debugger's Makefile.am
It was left out earlier, causing the aux files to be dumped in
${docdir}/geany-plugins instead of ${docdir}/geany-plugins/debugger/
Modified Paths:
--------------
trunk/geany-plugins/debugger/Makefile.am
Modified: trunk/geany-plugins/debugger/Makefile.am
===================================================================
--- trunk/geany-plugins/debugger/Makefile.am 2011-02-10 06:41:31 UTC (rev 1918)
+++ trunk/geany-plugins/debugger/Makefile.am 2011-02-10 22:10:41 UTC (rev 1919)
@@ -6,6 +6,7 @@
endif
SUBDIRS = src
+plugin = debugger
EXTRA_DIST += \
indent-all.sh
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1917
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1917&view=rev
Author: hyperair
Date: 2011-02-09 23:39:19 +0000 (Wed, 09 Feb 2011)
Log Message:
-----------
Add debugger to list of plugins in root Makefile.am
Modified Paths:
--------------
trunk/geany-plugins/Makefile.am
Modified: trunk/geany-plugins/Makefile.am
===================================================================
--- trunk/geany-plugins/Makefile.am 2011-02-09 16:43:49 UTC (rev 1916)
+++ trunk/geany-plugins/Makefile.am 2011-02-09 23:39:19 UTC (rev 1917)
@@ -1,6 +1,7 @@
plugins = \
addons \
codenav \
+ debugger \
geanycfp \
geanydoc \
geanyextrasel \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1916
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1916&view=rev
Author: hyperair
Date: 2011-02-09 16:43:49 +0000 (Wed, 09 Feb 2011)
Log Message:
-----------
Add VTE_CFLAGS to cflags for debugger
Modified Paths:
--------------
trunk/geany-plugins/debugger/src/Makefile.am
Modified: trunk/geany-plugins/debugger/src/Makefile.am
===================================================================
--- trunk/geany-plugins/debugger/src/Makefile.am 2011-02-09 16:43:19 UTC (rev 1915)
+++ trunk/geany-plugins/debugger/src/Makefile.am 2011-02-09 16:43:49 UTC (rev 1916)
@@ -41,3 +41,4 @@
wtree.h
debugger_la_LIBADD = $(COMMONLIBS) -lutil
+debugger_la_CFLAGS = $(AM_CFLAGS) $(VTE_CFLAGS)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1915
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1915&view=rev
Author: hyperair
Date: 2011-02-09 16:43:19 +0000 (Wed, 09 Feb 2011)
Log Message:
-----------
Amend documentation for GP_ARG_DISABLE
Accept auto as a default value as well, to be used with
GP_CHECK_PLUGIN_DEPS
Modified Paths:
--------------
trunk/geany-plugins/build/common.m4
Modified: trunk/geany-plugins/build/common.m4
===================================================================
--- trunk/geany-plugins/build/common.m4 2011-02-09 16:42:51 UTC (rev 1914)
+++ trunk/geany-plugins/build/common.m4 2011-02-09 16:43:19 UTC (rev 1915)
@@ -1,5 +1,7 @@
+
dnl GP_ARG_DISABLE(PluginName, default)
-dnl - default can either be yes(enabled) or no(disabled)
+dnl - default can either be yes(enabled) or no(disabled), or auto(to be used
+dnl with GP_CHECK_PLUGIN_DEPS)
dnl Generates --enable/disable options with help strings
AC_DEFUN([GP_ARG_DISABLE],
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.