aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-04-22 04:21:59 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-04-22 04:21:59 +0000
commitcdf7b753ad65d18286ecd05f282c6e871eb10f5b (patch)
tree0b6a537264ecd2b2e08438a133ec3c0135afba00
parentf141eeb7b94171ddf608f642e10e5ab4407265d0 (diff)
turned off debugging messages and added setup version post
svn path=/trunk/externals/hcs/; revision=11091
-rw-r--r--helppath.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/helppath.c b/helppath.c
index acf8756..1fb05c2 100644
--- a/helppath.c
+++ b/helppath.c
@@ -38,8 +38,8 @@
static char *version = "$Revision: 1.1 $";
-//#define DEBUG(x)
-#define DEBUG(x) x
+#define DEBUG(x)
+//#define DEBUG(x) x
/*------------------------------------------------------------------------------
* CLASS DEF
@@ -127,5 +127,10 @@ void helppath_setup(void)
gensym("reset"), 0);
class_addmethod(helppath_class,(t_method) helppath_add,gensym("add"),
A_DEFSYMBOL, 0);
+
+ post("[helppath] %s", version);
+ post("\tcompiled on "__DATE__" at "__TIME__ " ");
+ post("\tcompiled against Pd version %d.%d.%d", PD_MAJOR_VERSION,
+ PD_MINOR_VERSION, PD_BUGFIX_VERSION);
}