Update of /cvsroot/pure-data/externals/ext13
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15948
Modified Files:
catch13~.c receive13~.c send13~.c sfwrite13~.c streamin13~.c
streamout13~.c throw13~.c
Log Message:
some changes to make all ext13 objects work in libdir format
Index: receive13~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/ext13/receive13~.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** receive13~.c 2 Dec 2005 03:16:55 -0000 1.3
--- receive13~.c 12 Jan 2007 23:44:36 -0000 1.4
***************
*** 120,122 ****
--- 120,126 ----
}
+ void receive13_tilde_setup()
+ {
+ sigreceive13_setup();
+ }
Index: catch13~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/ext13/catch13~.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** catch13~.c 3 Sep 2004 07:56:06 -0000 1.2
--- catch13~.c 12 Jan 2007 23:44:36 -0000 1.3
***************
*** 86,88 ****
--- 86,93 ----
}
+ void catch13_tilde_setup()
+ {
+ sigcatch13_setup();
+ }
+
Index: send13~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/ext13/send13~.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** send13~.c 2 Dec 2005 03:16:55 -0000 1.3
--- send13~.c 12 Jan 2007 23:44:36 -0000 1.4
***************
*** 75,76 ****
--- 75,80 ----
}
+ void send13_tilde_setup()
+ {
+ sigsend13_setup();
+ }
Index: throw13~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/ext13/throw13~.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** throw13~.c 12 Aug 2004 17:12:23 -0000 1.2
--- throw13~.c 12 Jan 2007 23:44:36 -0000 1.3
***************
*** 91,93 ****
--- 91,97 ----
}
+ void throw13_tilde_setup()
+ {
+ sigthrow13_setup();
+ }
Index: streamout13~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/ext13/streamout13~.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** streamout13~.c 24 Sep 2006 22:58:10 -0000 1.8
--- streamout13~.c 12 Jan 2007 23:44:36 -0000 1.9
***************
*** 390,391 ****
--- 390,396 ----
}
+
+ void streamout13_tilde_setup()
+ {
+ streamout13_setup();
+ }
Index: streamin13~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/ext13/streamin13~.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** streamin13~.c 24 Sep 2006 22:58:10 -0000 1.8
--- streamin13~.c 12 Jan 2007 23:44:36 -0000 1.9
***************
*** 310,311 ****
--- 310,316 ----
class_addmethod(streamin13_class, (t_method)streamin13_port,gensym("port"),A_DEFFLOAT,0);
}
+
+ void streamin13_tilde_setup()
+ {
+ streamin13_setup();
+ }
Index: sfwrite13~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/ext13/sfwrite13~.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** sfwrite13~.c 24 Sep 2006 22:58:10 -0000 1.6
--- sfwrite13~.c 12 Jan 2007 23:44:36 -0000 1.7
***************
*** 299,303 ****
}
!
--- 299,306 ----
}
! void sfwrite13_tilde_setup()
! {
! void sfwrite13_setup();
! }