Update of /cvsroot/pure-data/externals/zexy/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23998/src
Modified Files: z_zexy.c z_zexy.h zexy.h zexyconf.h Added Files: matchbox.c Log Message: added [matchbox] an object to search a list (with pattern matching) in a "box" of lists
Index: z_zexy.h =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/z_zexy.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** z_zexy.h 20 Jun 2006 18:07:24 -0000 1.12 --- z_zexy.h 7 Mar 2007 15:16:35 -0000 1.13 *************** *** 38,41 **** --- 38,42 ---- void lpt_setup(void); /* lpt */ void makesymbol_setup(void); /* makesymbol */ + void matchbox_setup(void); /* matchbox */ void mavg_setup(void); /* mavg */ void minmax_setup(void); /* minmax */
Index: z_zexy.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/z_zexy.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** z_zexy.c 20 Jun 2006 18:07:24 -0000 1.12 --- z_zexy.c 7 Mar 2007 15:16:35 -0000 1.13 *************** *** 40,43 **** --- 40,44 ---- lpt_setup(); /* lpt */ makesymbol_setup(); /* makesymbol */ + matchbox_setup(); /* matchbox */ mavg_setup(); /* mavg */ minmax_setup(); /* minmax */
Index: zexyconf.h =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/zexyconf.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** zexyconf.h 18 Oct 2006 08:29:53 -0000 1.4 --- zexyconf.h 7 Mar 2007 15:16:35 -0000 1.5 *************** *** 1,20 **** ! /* this is a zexyconf.h for windows ! * on unix-derivatives (linux, os-X,...) this file should be overwritten by configure ! * via the template zexyconf.h.in ! * ! * if you cannot use configure to re-generate this file, make sure all the defines ! * are set correctly ! */ !
/* Define if you have the <regex.h> header file. */ ! /* #undef HAVE_REGEX_H */
/* Define if you have the <alloca.h> header file. */ ! /* #undef HAVE_ALLOCA_H */
/* define if you want parallelport-support (direct access to the port address) */ ! /* most likely, you do not want to do this on apple hardware */ ! /* #define Z_WANT_LPT 1 */
/* define if you have the <linux/ppdev.h> header file. --- 1,14 ---- ! /* zexyconf.h. Generated from zexyconf.h.in by configure. */ ! #ifndef _ZEXYCONF_H_ ! #define _ZEXYCONF_H_
/* Define if you have the <regex.h> header file. */ ! #define HAVE_REGEX_H 1
/* Define if you have the <alloca.h> header file. */ ! #define HAVE_ALLOCA_H 1
/* define if you want parallelport-support (direct access to the port address) */ ! #define Z_WANT_LPT 1
/* define if you have the <linux/ppdev.h> header file. *************** *** 22,26 **** * you need Z_WANT_LPT for this to have an effect ! */ ! /* #undef HAVE_LINUX_PPDEV_H */
--- 16,21 ---- * you need Z_WANT_LPT for this to have an effect ! */ ! #define HAVE_LINUX_PPDEV_H 1
+ #endif /* _ZEXYCONF_H_ */
Index: zexy.h =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/zexy.h,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** zexy.h 7 Mar 2007 11:28:33 -0000 1.23 --- zexy.h 7 Mar 2007 15:16:35 -0000 1.24 *************** *** 61,65 **** #include <math.h>
! #define VERSION "2.1.1"
/* these pragmas are only used for MSVC, not MinGW or Cygwin */ --- 61,65 ---- #include <math.h>
! #define VERSION "2.2.0"
/* these pragmas are only used for MSVC, not MinGW or Cygwin */
--- NEW FILE: matchbox.c --- (This appears to be a binary file; contents omitted.)