[PD-cvs] externals/zexy/src pack.c, NONE, 1.1 unpack.c, NONE, 1.1 Makefile, 1.17, 1.18 matchbox.c, 1.3, 1.4 z_zexy.c, 1.13, 1.14 z_zexy.h, 1.13, 1.14

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Thu May 10 15:21:23 CEST 2007


Update of /cvsroot/pure-data/externals/zexy/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9702

Modified Files:
	Makefile matchbox.c z_zexy.c z_zexy.h 
Added Files:
	pack.c unpack.c 
Log Message:
added my own version of [pack] and [unpack] which do not have type-tagging 


Index: matchbox.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/matchbox.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** matchbox.c	14 Mar 2007 09:08:56 -0000	1.3
--- matchbox.c	10 May 2007 13:21:21 -0000	1.4
***************
*** 15,18 ****
--- 15,25 ----
   ******************************************************/
  
+ // LATER: add a creation argument to specify the initial search mode
+ 
+ // LATER: bind a "name" to the [matchbox] so several objects can share the same entries
+ // if no name is given at creation time, the entries are local only
+ 
+ // even LATER: dynamically bind to several searchlists (via "set" message)
+ 
  
  #include "zexy.h"

--- NEW FILE: unpack.c ---
(This appears to be a binary file; contents omitted.)

Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/Makefile,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** Makefile	19 Mar 2007 15:56:56 -0000	1.17
--- Makefile	10 May 2007 13:21:21 -0000	1.18
***************
*** 77,81 ****
  	-rm -f *.$(EXT) *.o 
  
! realclean: clean
  	-rm -f *~ _* config.*
  	-rm -f *.d *.d.*
--- 77,81 ----
  	-rm -f *.$(EXT) *.o 
  
! realclean: clean alias-clean
  	-rm -f *~ _* config.*
  	-rm -f *.d *.d.*
***************
*** 95,104 ****
  	./makealias.sh ../src/alias ../src ../reference
  
- 
  alias-abs:
  	./makealias.sh ../abs/alias ../abs
  
  
! install: all install-abs install-bin install-doc
  
  install-bin:
--- 95,110 ----
  	./makealias.sh ../src/alias ../src ../reference
  
  alias-abs:
  	./makealias.sh ../abs/alias ../abs
  
+ alias-clean:  alias-clean-bin alias-clean-abs
  
! alias-clean-bin:
! 	./makealias.sh -clean ../src/alias ../src ../reference
! 
! alias-clean-abs:
! 	./makealias.sh -clean ../abs/alias ../abs
! 
! install: all alias install-abs install-bin install-doc
  
  install-bin:
***************
*** 114,117 ****
--- 120,137 ----
  	-install -m 644 ../abs/*.pd $(INSTALL_BIN)
  
+ 
+ uninstall-bin:
+ 	-install -d $(INSTALL_BIN)
+ 	-install -m 644 $(LIBNAME).$(EXT) $(INSTALL_BIN)
+ 
+ uninstall-doc:
+ 	-install -d $(INSTALL_DOC)
+ 	-install -m 644 ../reference/*.pd $(INSTALL_DOC)
+ 
+ uninstall-abs:
+ 	-install -d $(INSTALL_BIN)
+ 	-install -m 644 ../abs/*.pd $(INSTALL_BIN)
+ 
+ 
  dist: all realclean
  	(cd ../..;tar czvf $(TARNAME) $(LIBNAME))

Index: z_zexy.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/z_zexy.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** z_zexy.c	7 Mar 2007 15:16:35 -0000	1.13
--- z_zexy.c	10 May 2007 13:21:21 -0000	1.14
***************
*** 52,55 ****
--- 52,56 ----
  	operating_system_setup(); /* operating_system */
  	pack_tilde_setup(); /* pack~ */
+ 	pack_setup(); /* pack */
  	packel_setup(); /* packel */
  	pdf_tilde_setup(); /* pdf~ */
***************
*** 76,79 ****
--- 77,81 ----
  	time_setup(); /* time */
  	unpack_tilde_setup(); /* unpack~ */
+ 	unpack_setup(); /* unpack */
  	urn_setup(); /* urn */
  	wrap_setup(); /* wrap */

--- NEW FILE: pack.c ---
(This appears to be a binary file; contents omitted.)

Index: z_zexy.h
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/z_zexy.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** z_zexy.h	7 Mar 2007 15:16:35 -0000	1.13
--- z_zexy.h	10 May 2007 13:21:21 -0000	1.14
***************
*** 50,53 ****
--- 50,54 ----
  void operating_system_setup(void); /* operating_system */
  void pack_tilde_setup(void); /* pack~ */
+ void pack_setup(void); /* pack */
  void packel_setup(void); /* packel */
  void pdf_tilde_setup(void); /* pdf~ */
***************
*** 74,77 ****
--- 75,79 ----
  void time_setup(void); /* time */
  void unpack_tilde_setup(void); /* unpack~ */
+ void unpack_setup(void); /* unpack */
  void urn_setup(void); /* urn */
  void wrap_setup(void); /* wrap */





More information about the Pd-cvs mailing list