Update of /cvsroot/pure-data/pd/extra/pureunity In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1526
Modified Files: Tag: desiredata Makefile pureunity.c Log Message: changing aliases for the new pureunity (like inlet.f instead of f.inlet)
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/pd/extra/pureunity/Attic/Makefile,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** Makefile 5 Jan 2007 00:18:27 -0000 1.1.2.1 --- Makefile 5 Jan 2007 07:08:57 -0000 1.1.2.2 *************** *** 1,6 **** # if you don't want the standard pd, set the PD-variable before doing "make" # e.g. "PD=/home/matju/pd_devel_0_39_und/bin/pd make" ! PD ?= pd ! PDFLAGS = -lib pureunity -noaudio -path generics -path specifics PDFLAGS += -lib gridflow CFLAGS = -Wall --- 1,7 ---- # if you don't want the standard pd, set the PD-variable before doing "make" # e.g. "PD=/home/matju/pd_devel_0_39_und/bin/pd make" ! PD ?= pd ! #PD ?= desire ! PDFLAGS = -lib pureunity -noaudio PDFLAGS += -lib gridflow CFLAGS = -Wall
Index: pureunity.c =================================================================== RCS file: /cvsroot/pure-data/pd/extra/pureunity/Attic/pureunity.c,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** pureunity.c 5 Jan 2007 02:21:13 -0000 1.1.2.1 --- pureunity.c 5 Jan 2007 07:08:57 -0000 1.1.2.2 *************** *** 22,27 ****
#include <sys/time.h> ! /*#include <m_pd.h>*/ ! #include "../../pd/src/m_pd.h" #define ALIAS(y,x) class_addcreator((t_newmethod)getfn(m,gensym(x)),gensym(y),A_GIMME,0);
--- 22,26 ----
#include <sys/time.h> ! #include "../../src/m_pd.h" #define ALIAS(y,x) class_addcreator((t_newmethod)getfn(m,gensym(x)),gensym(y),A_GIMME,0);
*************** *** 51,60 **** void pureunity_setup() { t_pd *m = &pd_objectmaker; ! ALIAS( "f.inlet","inlet" ); ! ALIAS( "#.inlet","inlet" ); ! ALIAS( "~.inlet","inlet~" ); ! ALIAS("f.outlet","outlet" ); ! ALIAS("#.outlet","outlet" ); ! ALIAS("~.outlet","outlet~"); ALIAS( "f.swap","swap" ); rtimer_class = class_new(gensym("rtimer"),(t_newmethod)rtimer_new,0,sizeof(t_rtimer),0,0); --- 50,59 ---- void pureunity_setup() { t_pd *m = &pd_objectmaker; ! ALIAS( "inlet.f","inlet" ); ! ALIAS( "inlet.#","inlet" ); ! ALIAS( "inlet.~","inlet~" ); ! ALIAS("outlet.f","outlet" ); ! ALIAS("outlet.#","outlet" ); ! ALIAS("outlet.~","outlet~"); ALIAS( "f.swap","swap" ); rtimer_class = class_new(gensym("rtimer"),(t_newmethod)rtimer_new,0,sizeof(t_rtimer),0,0);