Update of /cvsroot/pure-data/externals/grill/flext/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16839/build
Modified Files: bmake-win-bcc.inc config-lnx.def config-mac.def config-win.def gnumake-mac-gcc.inc gnumake-win-cygwin.inc gnumake-win-mingw.inc nmake-win-msvc.inc Added Files: gnumake-lnx-gcc.inc Log Message: minor updates adapted the queue stuff to work with the new set_callback functionality reconsidered flext::buffer:Update added object construction and destruction flags updated autoconf system small updates better templates, some minor changes update for linux cleanups
--- NEW FILE: gnumake-lnx-gcc.inc --- ifdef SIMD DEFS += -DFLEXT_USE_SIMD endif
ifdef SNDOBJ SRCS+=$(SRCS_SNDOBJ) HDRS+=$(HDRS_SNDOBJ) INCPATH+=-I$(SNDOBJ) LIBS+=-lsndobj endif
ifdef STK SRCS+=$(SRCS_STK) HDRS+=$(HDRS_STK) INCPATH+=-I$(STK) LIBS+=-lstk endif
Index: config-mac.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/build/config-mac.def,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** config-mac.def 7 Jan 2005 04:58:45 -0000 1.2 --- config-mac.def 8 Jan 2005 04:58:29 -0000 1.3 *************** *** 1,10 **** ! # uncomment to inhibit SIMD usage ! SIMD=1 ! ! # where is the STK installation? ! # (uncomment the line with # to disable STK support) ! #STK=/usr/local/lib/stk ! ! # where is the Sndobjs installation? ! # (uncomment the line with # to disable SNDOBJ support) ! #SNDOBJ=/usr/local/lib/sndobj --- 1,10 ---- ! # uncomment to inhibit SIMD usage ! SIMD=1 ! ! # where is the STK installation? ! # (uncomment the line with # to disable STK support) ! #STK=/usr/local/lib/stk ! ! # where is the Sndobjs installation? ! # (uncomment the line with # to disable SNDOBJ support) ! #SNDOBJ=/usr/local/lib/sndobj
Index: config-lnx.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/build/config-lnx.def,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** config-lnx.def 20 Dec 2004 05:06:16 -0000 1.1 --- config-lnx.def 8 Jan 2005 04:58:29 -0000 1.2 *************** *** 1,7 **** ! # where is the STK installation? ! # (uncomment the line with # to disable STK support) ! #STK=/usr/local/lib/stk ! ! # where is the Sndobjs installation? ! # (uncomment the line with # to disable SNDOBJ support) ! #SNDOBJ=/usr/local/lib/sndobj --- 1,10 ---- ! # use SIMD CPU instructions (Altivec, SSE)? ! SIMD=1 ! ! # where is the STK installation? ! # (uncomment the line with # to disable STK support) ! #STK=/usr/local/lib/stk ! ! # where is the Sndobjs installation? ! # (uncomment the line with # to disable SNDOBJ support) ! #SNDOBJ=/usr/local/lib/sndobj
Index: gnumake-win-cygwin.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/build/gnumake-win-cygwin.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gnumake-win-cygwin.inc 7 Jan 2005 04:58:45 -0000 1.2 --- gnumake-win-cygwin.inc 8 Jan 2005 04:58:29 -0000 1.3 *************** *** 1,17 **** ! ifdef SIMD ! DEFS += -DFLEXT_USE_SIMD ! endif ! ! ifdef SNDOBJ ! SRCS+=$(SRCS_SNDOBJ) ! HDRS+=$(HDRS_SNDOBJ) ! INCPATH+=-I$(SNDOBJ) ! LIBS+=-lsndobj ! endif ! ! ifdef STK ! SRCS+=$(SRCS_STK) ! HDRS+=$(HDRS_STK) ! INCPATH+=-I$(STK) ! LIBS+=-lstk ! endif --- 1,17 ---- ! ifdef SIMD ! DEFS += -DFLEXT_USE_SIMD ! endif ! ! ifdef SNDOBJ ! SRCS+=$(SRCS_SNDOBJ) ! HDRS+=$(HDRS_SNDOBJ) ! INCPATH+=-I$(SNDOBJ) ! LIBS+=-lsndobj ! endif ! ! ifdef STK ! SRCS+=$(SRCS_STK) ! HDRS+=$(HDRS_STK) ! INCPATH+=-I$(STK) ! LIBS+=-lstk ! endif
Index: bmake-win-bcc.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/build/bmake-win-bcc.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** bmake-win-bcc.inc 7 Jan 2005 04:58:45 -0000 1.2 --- bmake-win-bcc.inc 8 Jan 2005 04:58:29 -0000 1.3 *************** *** 1,17 **** ! !ifdef SIMD ! DEFS=$(DEFS) /DFLEXT_USE_SIMD ! !endif ! ! !ifdef SNDOBJ ! SRCS=$(SRCS) $(SRCS_SNDOBJ) ! HDRS=$(HDRS) $(HDRS_SNDOBJ) ! INCPATH=$(INCPATH) /I$(SNDOBJ)\include ! LIBS=$(LIBS) $(SNDOBJ)\lib\sndobj.lib ! !endif ! ! !ifdef STK ! SRCS=$(SRCS) $(SRCS_STK) ! HDRS=$(HDRS) $(HDRS_STK) ! INCPATH=$(INCPATH) /I$(STK)\include ! LIBS=$(LIBS) $(STK)\lib\stk.lib ! !endif --- 1,17 ---- ! !ifdef SIMD ! DEFS=$(DEFS) /DFLEXT_USE_SIMD ! !endif ! ! !ifdef SNDOBJ ! SRCS=$(SRCS) $(SRCS_SNDOBJ) ! HDRS=$(HDRS) $(HDRS_SNDOBJ) ! INCPATH=$(INCPATH) /I$(SNDOBJ)\include ! LIBS=$(LIBS) $(SNDOBJ)\lib\sndobj.lib ! !endif ! ! !ifdef STK ! SRCS=$(SRCS) $(SRCS_STK) ! HDRS=$(HDRS) $(HDRS_STK) ! INCPATH=$(INCPATH) /I$(STK)\include ! LIBS=$(LIBS) $(STK)\lib\stk.lib ! !endif
Index: config-win.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/build/config-win.def,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** config-win.def 20 Dec 2004 05:06:16 -0000 1.1 --- config-win.def 8 Jan 2005 04:58:29 -0000 1.2 *************** *** 1,7 **** ! # where is the STK installation? ! # (uncomment the line with # to disable STK support) ! #STK=c:\data\prog\audio\stk ! ! # where is the Sndobjs installation? ! # (uncomment the line with # to disable SNDOBJ support) ! #SNDOBJ=c:\data\prog\audio\sndobj --- 1,7 ---- ! # where is the STK installation? ! # (uncomment the line with # to disable STK support) ! #STK=c:\data\prog\audio\stk ! ! # where is the Sndobjs installation? ! # (uncomment the line with # to disable SNDOBJ support) ! #SNDOBJ=c:\data\prog\audio\sndobj
Index: gnumake-mac-gcc.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/build/gnumake-mac-gcc.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gnumake-mac-gcc.inc 7 Jan 2005 04:58:45 -0000 1.2 --- gnumake-mac-gcc.inc 8 Jan 2005 04:58:29 -0000 1.3 *************** *** 1,17 **** ! ifdef SIMD ! DEFS += -DFLEXT_USE_SIMD ! endif ! ! ifdef SNDOBJ ! SRCS+=$(SRCS_SNDOBJ) ! HDRS+=$(HDRS_SNDOBJ) ! INCPATH+=-I$(SNDOBJ) ! LIBS+=-lsndobj ! endif ! ! ifdef STK ! SRCS+=$(SRCS_STK) ! HDRS+=$(HDRS_STK) ! INCPATH+=-I$(STK) ! LIBS+=-lstk ! endif --- 1,17 ---- ! ifdef SIMD ! DEFS += -DFLEXT_USE_SIMD ! endif ! ! ifdef SNDOBJ ! SRCS+=$(SRCS_SNDOBJ) ! HDRS+=$(HDRS_SNDOBJ) ! INCPATH+=-I$(SNDOBJ) ! LIBS+=-lsndobj ! endif ! ! ifdef STK ! SRCS+=$(SRCS_STK) ! HDRS+=$(HDRS_STK) ! INCPATH+=-I$(STK) ! LIBS+=-lstk ! endif
Index: gnumake-win-mingw.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/build/gnumake-win-mingw.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gnumake-win-mingw.inc 7 Jan 2005 04:58:45 -0000 1.2 --- gnumake-win-mingw.inc 8 Jan 2005 04:58:29 -0000 1.3 *************** *** 1,17 **** ! ifdef SIMD ! DEFS += -DFLEXT_USE_SIMD ! endif ! ! ifdef SNDOBJ ! SRCS+=$(SRCS_SNDOBJ) ! HDRS+=$(HDRS_SNDOBJ) ! INCPATH+=-I$(SNDOBJ) ! LIBS+=-lsndobj ! endif ! ! ifdef STK ! SRCS+=$(SRCS_STK) ! HDRS+=$(HDRS_STK) ! INCPATH+=-I$(STK) ! LIBS+=-lstk ! endif --- 1,17 ---- ! ifdef SIMD ! DEFS += -DFLEXT_USE_SIMD ! endif ! ! ifdef SNDOBJ ! SRCS+=$(SRCS_SNDOBJ) ! HDRS+=$(HDRS_SNDOBJ) ! INCPATH+=-I$(SNDOBJ) ! LIBS+=-lsndobj ! endif ! ! ifdef STK ! SRCS+=$(SRCS_STK) ! HDRS+=$(HDRS_STK) ! INCPATH+=-I$(STK) ! LIBS+=-lstk ! endif
Index: nmake-win-msvc.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/build/nmake-win-msvc.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** nmake-win-msvc.inc 7 Jan 2005 04:58:45 -0000 1.2 --- nmake-win-msvc.inc 8 Jan 2005 04:58:29 -0000 1.3 *************** *** 1,17 **** ! !ifdef SIMD ! DEFS=$(DEFS) /DFLEXT_USE_SIMD ! !endif ! ! !ifdef SNDOBJ ! SRCS=$(SRCS) $(SRCS_SNDOBJ) ! HDRS=$(HDRS) $(HDRS_SNDOBJ) ! INCPATH=$(INCPATH) /I$(SNDOBJ)\include ! LIBS=$(LIBS) $(SNDOBJ)\lib\sndobj.lib ! !endif ! ! !ifdef STK ! SRCS=$(SRCS) $(SRCS_STK) ! HDRS=$(HDRS) $(HDRS_STK) ! INCPATH=$(INCPATH) /I$(STK)\include ! LIBS=$(LIBS) $(STK)\lib\stk.lib ! !endif --- 1,17 ---- ! !ifdef SIMD ! DEFS=$(DEFS) /DFLEXT_USE_SIMD ! !endif ! ! !ifdef SNDOBJ ! SRCS=$(SRCS) $(SRCS_SNDOBJ) ! HDRS=$(HDRS) $(HDRS_SNDOBJ) ! INCPATH=$(INCPATH) /I$(SNDOBJ)\include ! LIBS=$(LIBS) $(SNDOBJ)\lib\sndobj.lib ! !endif ! ! !ifdef STK ! SRCS=$(SRCS) $(SRCS_STK) ! HDRS=$(HDRS) $(HDRS_STK) ! INCPATH=$(INCPATH) /I$(STK)\include ! LIBS=$(LIBS) $(STK)\lib\stk.lib ! !endif