diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2009-02-12 22:14:51 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2009-02-12 22:14:51 +0000 |
commit | fa91a07f8f6ced306f2a42ccfd4c30d478ee11a6 (patch) | |
tree | ea0c0b490b1912c838c01abb54ae20f618ca21eb /src/bytes2any.c | |
parent | 4be9db3a7bee4bb8c254ae26253a7ed70390589b (diff) |
+ pdstring: added abstractions any2string.pd, string2any.pd for single-object-external builds
+ locale: added uselocale.pd (not installed by default)
svn path=/trunk/externals/moocow/pdstring/; revision=10762
Diffstat (limited to 'src/bytes2any.c')
-rw-r--r-- | src/bytes2any.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/bytes2any.c b/src/bytes2any.c index a7dc5b2..2d7ccb4 100644 --- a/src/bytes2any.c +++ b/src/bytes2any.c @@ -210,7 +210,9 @@ void bytes2any_setup_guts(void) 0); //-- alias +#ifndef PDSTRING_OBJECT_EXTERNALS class_addcreator((t_newmethod)bytes2any_new, gensym("string2any"), A_GIMME, 0); +#endif //-- methods class_addanything(bytes2any_class, (t_method)bytes2any_anything); @@ -231,6 +233,11 @@ void bytes2any_setup(void) bytes2any_setup_guts(); } +#if 0 +/*-- + this (with symlink install) causes pd-extended 0.41.4 20090209 to puke. + bug report by hcs, Thu, 12 Feb 2009 +*/ /*-------------------------------------------------------------------- * setup (string2any alias) */ @@ -239,3 +246,4 @@ void string2any_setup(void) { post("string2any_setup(): Prefer [bytes2any] over [string2any]."); bytes2any_setup(); } +#endif |