[PD-cvs] externals/grill/flext/build config-lnx.def, 1.3, 1.4 config-mac.def, 1.4, 1.5 config-win.def, 1.4, 1.5 gnumake-lnx-gcc.inc, 1.2, 1.3 gnumake-lnx-icc.inc, 1.1, 1.2 gnumake-mac-gcc.inc, 1.3, 1.4

Thomas Grill xovo at users.sourceforge.net
Wed Mar 14 00:41:24 CET 2007


Update of /cvsroot/pure-data/externals/grill/flext/build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24244/build

Modified Files:
	config-lnx.def config-mac.def config-win.def 
	gnumake-lnx-gcc.inc gnumake-lnx-icc.inc gnumake-mac-gcc.inc 
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: gnumake-lnx-gcc.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/build/gnumake-lnx-gcc.inc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** gnumake-lnx-gcc.inc	13 Jan 2005 04:59:07 -0000	1.2
--- gnumake-lnx-gcc.inc	13 Mar 2007 23:41:22 -0000	1.3
***************
*** 3,17 ****
  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
--- 3,13 ----
  endif
  
! ifdef SNDOBJ_LIB
  SRCS+=$(SRCS_SNDOBJ)
  HDRS+=$(HDRS_SNDOBJ)
  endif
  
! ifdef STK_LIB
  SRCS+=$(SRCS_STK)
  HDRS+=$(HDRS_STK)
  endif

Index: config-mac.def
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/build/config-mac.def,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** config-mac.def	3 Nov 2005 20:29:28 -0000	1.4
--- config-mac.def	13 Mar 2007 23:41:22 -0000	1.5
***************
*** 1,11 ****
! # 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)
- # please be sure to delete an eventual m_pd.h file from the SNDOBJ include folder!!
- #SNDOBJ=/usr/local/lib/sndobj
--- 1,2 ----
! # comment out to inhibit SIMD (Altivec/SSE) usage
  SIMD=1

Index: gnumake-lnx-icc.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/build/gnumake-lnx-icc.inc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** gnumake-lnx-icc.inc	13 Jan 2005 04:59:07 -0000	1.1
--- gnumake-lnx-icc.inc	13 Mar 2007 23:41:22 -0000	1.2
***************
*** 3,17 ****
  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
--- 3,13 ----
  endif
  
! ifdef SNDOBJ_LIB
  SRCS+=$(SRCS_SNDOBJ)
  HDRS+=$(HDRS_SNDOBJ)
  endif
  
! ifdef STK_LIB
  SRCS+=$(SRCS_STK)
  HDRS+=$(HDRS_STK)
  endif

Index: config-lnx.def
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/build/config-lnx.def,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** config-lnx.def	3 Nov 2005 20:29:28 -0000	1.3
--- config-lnx.def	13 Mar 2007 23:41:22 -0000	1.4
***************
*** 1,11 ****
! # 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)
- # please be sure to delete an eventual m_pd.h file from the SNDOBJ include folder!!
- #SNDOBJ=/usr/local/lib/sndobj
--- 1,2 ----
! # comment out to inhibit SIMD (Altivec/SSE) usage
  SIMD=1

Index: config-win.def
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/build/config-win.def,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** config-win.def	20 Sep 2006 14:24:10 -0000	1.4
--- config-win.def	13 Mar 2007 23:41:22 -0000	1.5
***************
*** 1,2 ****
! # use SIMD instructions (Intel SSE)?
  SIMD=1
--- 1,2 ----
! # comment out to inhibit SIMD (Altivec/SSE) usage
  SIMD=1

Index: gnumake-mac-gcc.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/build/gnumake-mac-gcc.inc,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** gnumake-mac-gcc.inc	8 Jan 2005 04:58:29 -0000	1.3
--- gnumake-mac-gcc.inc	13 Mar 2007 23:41:22 -0000	1.4
***************
*** 3,17 ****
  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
--- 3,13 ----
  endif
  
! ifdef SNDOBJ_LIB
  SRCS+=$(SRCS_SNDOBJ)
  HDRS+=$(HDRS_SNDOBJ)
  endif
  
! ifdef STK_LIB
  SRCS+=$(SRCS_STK)
  HDRS+=$(HDRS_STK)
  endif





More information about the Pd-cvs mailing list