Update of /cvsroot/pure-data/externals/tbext/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4760/source
Modified Files: main.cpp Log Message:
Index: main.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/tbext/source/main.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** main.cpp 28 Jan 2004 11:09:13 -0000 1.9 --- main.cpp 29 Feb 2004 13:56:32 -0000 1.10 *************** *** 1,3 **** ! /* Copyright (c) 2003 Tim Blechmann. */ /* For information on usage and redistribution, and for a DISCLAIMER OF ALL */ /* WARRANTIES, see the file, "COPYING" in this distribution. */ --- 1,3 ---- ! /* Copyright (c) 2003-2004 Tim Blechmann. */ /* For information on usage and redistribution, and for a DISCLAIMER OF ALL */ /* WARRANTIES, see the file, "COPYING" in this distribution. */ *************** *** 41,45 ****
#include <flext.h> ! #define TBEXT_VERSION "0.03"
#if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 400) --- 41,45 ----
#include <flext.h> ! #define TBEXT_VERSION "0.04"
#if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 400) *************** *** 53,57 **** post("compiled on "__DATE__); post("contains: tbroute(~), tbsig~, tbpow~, tbfft1~, tbfft2~, bufline~, fftgrrev~"); ! post(" fftgrsort~, fftgrshuf~");
FLEXT_SETUP(tbroute); --- 53,57 ---- post("compiled on "__DATE__); post("contains: tbroute(~), tbsig~, tbpow~, tbfft1~, tbfft2~, bufline~, fftgrrev~"); ! post(" fftgrsort~, fftgrshuf~, rfftw~, rifftw~");
FLEXT_SETUP(tbroute); *************** *** 67,71 **** FLEXT_DSP_SETUP(fftgrshuf); FLEXT_DSP_SETUP(fftgrrev); ! FLEXT_DSP_SETUP(spigot_tilde); }
--- 67,78 ---- FLEXT_DSP_SETUP(fftgrshuf); FLEXT_DSP_SETUP(fftgrrev); ! ! ! #if (FFTW == 1) ! FLEXT_DSP_SETUP(rfftw); ! FLEXT_DSP_SETUP(rifftw); ! #endif ! ! }