From ff1fe535ca2dcb796b95c93dd896b85d6b521854 Mon Sep 17 00:00:00 2001 From: Bryan Jurish Date: Sat, 17 Jan 2009 12:54:30 +0000 Subject: + changed default output of [any2string] to (unsigned char) - fixes sourceforge bug #2501709, reported by Roman Haefeli svn path=/trunk/externals/moocow/pdstring/; revision=10562 --- src/pdstring.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/pdstring.c') diff --git a/src/pdstring.c b/src/pdstring.c index cf0bd6e..afc2f2e 100644 --- a/src/pdstring.c +++ b/src/pdstring.c @@ -4,7 +4,7 @@ * Author: Bryan Jurish * Description: pd string conversions : library * - * Copyright (c) 2004-2008 Bryan Jurish. + * Copyright (c) 2004-2009 Bryan Jurish. * * For information on usage and redistribution, and for a DISCLAIMER OF ALL * WARRANTIES, see the file "COPYING", in this distribution. @@ -38,7 +38,6 @@ /*===================================================================== * Constants *=====================================================================*/ -static char *pdstring_version = "\npdstring version " PACKAGE_VERSION " by Bryan Jurish"; /*===================================================================== * Structures and Types: pdstring [dummy] @@ -78,7 +77,9 @@ static void *pdstring_new(void) */ static void pdstring_help(t_pdstring *x) { - post(pdstring_version); + post(""); + post("pdstring: byte-string externals version " PACKAGE_VERSION " by Bryan Jurish"); + post("pdstring: compiled by " PDSTRING_USER " on " PDSTRING_DATE); } /*===================================================================== @@ -86,7 +87,7 @@ static void pdstring_help(t_pdstring *x) *=====================================================================*/ void pdstring_setup(void) { - post(pdstring_version); + pdstring_help(NULL); #ifndef PDSTRING_OBJECT_EXTERNALS any2string_setup_guts(); -- cgit v1.2.1