diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-04-22 04:21:59 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-04-22 04:21:59 +0000 |
commit | cdf7b753ad65d18286ecd05f282c6e871eb10f5b (patch) | |
tree | 0b6a537264ecd2b2e08438a133ec3c0135afba00 | |
parent | f141eeb7b94171ddf608f642e10e5ab4407265d0 (diff) |
turned off debugging messages and added setup version post
svn path=/trunk/externals/hcs/; revision=11091
-rw-r--r-- | helppath.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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); } |