Update of /cvsroot/pure-data/externals/grill/flext/buildsys/mac/max In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24244/buildsys/mac/max
Modified Files: config-gcc.def Log Message: fix build system for STK and SndObj support (currently unix only) fixed SndObjs include files changed eol-style no stripping of local symbols small changes to flext build system update docs
Index: config-gcc.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/mac/max/config-gcc.def,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** config-gcc.def 20 Jan 2007 14:26:02 -0000 1.9 --- config-gcc.def 13 Mar 2007 23:41:23 -0000 1.10 *************** *** 1,5 **** # where are the Max/MSP SDK header files? # you should have the latest version! ! MAXSDKPATH=/Applications/MaxMSP\ 4.5/MaxMSP-SDK/c74support
############################################################### --- 1,5 ---- # where are the Max/MSP SDK header files? # you should have the latest version! ! MAXSDKPATH=/Applications/MaxMSP\ 4.6/MaxMSP-SDK/c74support
############################################################### *************** *** 24,28 ****
# where should the help files be installed? ! HELPPATH=/Applications/MaxMSP\ 4.5/max-help/flext
############################################################### --- 24,52 ----
# where should the help files be installed? ! HELPPATH=/Applications/MaxMSP\ 4.6/max-help/flext ! ! ############################################################### ! ! # STK (synthesis tool kit) support ! # http://ccrma.stanford.edu/software/stk ! ! # where to find the STK header files (e.g. stk.h) ! STK_INC=/usr/local/include/stk ! ! # where to find the STK library (normally libstk.a) ! # (comment out STK_LIB if you don't use STK) ! #STK_LIB=/usr/local/lib/libstk.a ! ! ############################################################### ! ! # SndObj support ! # http://music.nuim.ie//musictec/SndObj ! ! # where to find the SndObj header files (e.g. sndobj.h) ! SNDOBJ_INC=/usr/local/include/sndobj ! ! # where to find the SndObj library (normally libsndobj.a) ! # (comment out STK_LIB if you don't use SndObj) ! #SNDOBJ_LIB=/usr/local/lib/libsndobj.a
###############################################################